projects
/
portage.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8603b29
)
Remove obsolete comment about non-blocking from
author
Zac Medico
<zmedico@gentoo.org>
Tue, 21 Sep 2010 02:07:22 +0000
(19:07 -0700)
committer
Zac 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
patch
|
blob
|
history
diff --git
a/pym/_emerge/EbuildIpcDaemon.py
b/pym/_emerge/EbuildIpcDaemon.py
index 73a088c5e775000b007b207f1a6f80f198a9d8a4..adca1b61e6375564712bf536116ba19a37bb32bb 100644
(file)
--- 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()