Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.buildout
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Yusei Tahara
slapos.buildout
Commits
42688838
Commit
42688838
authored
Aug 24, 2012
by
Domen Kožar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
use lowlevel os._exit() after forking
parent
b24673c4
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
buildout.cfg
buildout.cfg
+1
-1
src/zc/buildout/buildout.py
src/zc/buildout/buildout.py
+1
-1
No files found.
buildout.cfg
View file @
42688838
...
...
@@ -35,6 +35,6 @@ defaults =
# python2.4 compatibility
[versions]
zope.interface = 3.
7.0
zope.interface = 3.
6.7
zope.exceptions = 3.7.1
zope.testrunner = 4.0.1
src/zc/buildout/buildout.py
View file @
42688838
...
...
@@ -989,7 +989,7 @@ class Buildout(UserDict.DictMixin):
env
[
'PYTHONPATH'
]
=
partsdir
# windows: Popen will quote args itself if needed
# see subprocess.list2cmdline
sys
.
exit
(
subprocess
.
Popen
(
args
,
env
=
env
).
wait
())
os
.
_
exit
(
subprocess
.
Popen
(
args
,
env
=
env
).
wait
())
def
_load_extensions
(
self
):
__doing__
=
'Loading extensions.'
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment