[pypy-svn] r77559 - pypy/branch/fast-forward/lib_pypy

afa at codespeak.net afa at codespeak.net
Mon Oct 4 10:42:02 CEST 2010


Author: afa
Date: Mon Oct  4 10:42:01 2010
New Revision: 77559

Modified:
   pypy/branch/fast-forward/lib_pypy/_subprocess.py
Log:
Add constant needed by the win32 implementation of subprocess.


Modified: pypy/branch/fast-forward/lib_pypy/_subprocess.py
==============================================================================
--- pypy/branch/fast-forward/lib_pypy/_subprocess.py	(original)
+++ pypy/branch/fast-forward/lib_pypy/_subprocess.py	Mon Oct  4 10:42:01 2010
@@ -162,7 +162,8 @@
 STARTF_USESHOWWINDOW = 0x001
 STARTF_USESTDHANDLES = 0x100
 SW_HIDE              = 0
-CREATE_NEW_CONSOLE   = 0x010
+CREATE_NEW_CONSOLE       = 0x010
+CREATE_NEW_PROCESS_GROUP = 0x200
 
 def WaitForSingleObject(handle, milliseconds):
     res = _WaitForSingleObject(handle.handle, milliseconds)



More information about the Pypy-commit mailing list