[Zodb-checkins] CVS: StandaloneZODB/ZEO/tests - forker.py:1.5.2.5

Jeremy Hylton jeremy@zope.com
Mon, 22 Oct 2001 19:44:58 -0400


Update of /cvs-repository/StandaloneZODB/ZEO/tests
In directory cvs.zope.org:/tmp/cvs-serv12733

Modified Files:
      Tag: zeo-1_0-branch
	forker.py 
Log Message:
Close the pipe on the client side.

(The server's about to exit anyway, so it doesn't matter there.)


=== StandaloneZODB/ZEO/tests/forker.py 1.5.2.4 => 1.5.2.5 ===
         def close(self):
             os.write(self.pipe, "done")
+            os.close(self.pipe)
 
     def start_zeo_server(storage, addr):
         rd, wr = os.pipe()