From: Zac Medico Date: Tue, 21 Sep 2010 02:07:22 +0000 (-0700) Subject: Remove obsolete comment about non-blocking from X-Git-Tag: v2.2_rc86~12 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=33f4119d027691349166b0e4c9441a62be941909;p=portage.git Remove obsolete comment about non-blocking from EbuildIpcDaemon._send_reply() since ebuild-ipc now uses blocking IO. --- diff --git a/pym/_emerge/EbuildIpcDaemon.py b/pym/_emerge/EbuildIpcDaemon.py index 73a088c5e..adca1b61e 100644 --- a/pym/_emerge/EbuildIpcDaemon.py +++ b/pym/_emerge/EbuildIpcDaemon.py @@ -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()