Commit 42688838 authored by Domen Kožar's avatar Domen Kožar

use lowlevel os._exit() after forking

parent b24673c4
...@@ -35,6 +35,6 @@ defaults = ...@@ -35,6 +35,6 @@ defaults =
# python2.4 compatibility # python2.4 compatibility
[versions] [versions]
zope.interface = 3.7.0 zope.interface = 3.6.7
zope.exceptions = 3.7.1 zope.exceptions = 3.7.1
zope.testrunner = 4.0.1 zope.testrunner = 4.0.1
...@@ -989,7 +989,7 @@ class Buildout(UserDict.DictMixin): ...@@ -989,7 +989,7 @@ class Buildout(UserDict.DictMixin):
env['PYTHONPATH'] = partsdir env['PYTHONPATH'] = partsdir
# windows: Popen will quote args itself if needed # windows: Popen will quote args itself if needed
# see subprocess.list2cmdline # see subprocess.list2cmdline
sys.exit(subprocess.Popen(args, env=env).wait()) os._exit(subprocess.Popen(args, env=env).wait())
def _load_extensions(self): def _load_extensions(self):
__doing__ = 'Loading extensions.' __doing__ = 'Loading extensions.'
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment