Revert r74028.

This commit is contained in:
Georg Brandl 2009-07-16 21:47:51 +00:00
parent 3601a38029
commit 3e8b869c9c
1 changed files with 2 additions and 2 deletions

View File

@ -1066,10 +1066,10 @@ class Popen(object):
gc.disable()
try:
self.pid = os.fork()
finally:
except:
if gc_was_enabled:
gc.enable()
raise
self._child_created = True
if self.pid == 0:
# Child