Remove obsolete comment about non-blocking from
authorZac Medico <zmedico@gentoo.org>
Tue, 21 Sep 2010 02:07:22 +0000 (19:07 -0700)
committerZac Medico <zmedico@gentoo.org>
Tue, 21 Sep 2010 02:07:22 +0000 (19:07 -0700)
EbuildIpcDaemon._send_reply() since ebuild-ipc now uses blocking IO.

pym/_emerge/EbuildIpcDaemon.py

index 73a088c5e775000b007b207f1a6f80f198a9d8a4..adca1b61e6375564712bf536116ba19a37bb32bb 100644 (file)
@@ -68,9 +68,5 @@ class EbuildIpcDaemon(FifoIpcDaemon):
                # File streams are in unbuffered mode since we do atomic
                # read and write of whole pickles.
                output_file = open(self.output_fifo, 'wb', 0)
-
-               # Write the whole pickle in a single atomic write() call,
-               # since the reader is in non-blocking mode and we want
-               # it to get the whole pickle at once.
                output_file.write(pickle.dumps(reply))
                output_file.close()