[Zodb-checkins] CVS: ZODB3/zdaemon/tests - testDaemon.py:1.6

Guido van Rossum guido@python.org
Mon, 27 Jan 2003 14:39:09 -0500


Update of /cvs-repository/ZODB3/zdaemon/tests
In directory cvs.zope.org:/tmp/cvs-serv23505

Modified Files:
	testDaemon.py 
Log Message:
Delete a few lines whose only effect was to leave a temporary file
around and for which no purpose is apparent in the test.
(Forward port from 3.1 release branch.)


=== ZODB3/zdaemon/tests/testDaemon.py 1.5 => 1.6 ===
--- ZODB3/zdaemon/tests/testDaemon.py:1.5	Fri Jan 17 10:51:46 2003
+++ ZODB3/zdaemon/tests/testDaemon.py	Mon Jan 27 14:39:05 2003
@@ -11,9 +11,6 @@
     arg = sys.argv[1]
     if arg == "signal":
         import signal
-        f = open("/tmp/%d" % os.getpid(), "w")
-        f.write("x")
-        f.close()
         os.kill(os.getpid(), signal.SIGKILL)
     elif arg == "exit":
         os._exit(2)