You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 27, 2022. It is now read-only.
I'm trying to use the latest version of subprocess32 (3.2.5) on a cross
platform project and have encountered some problems using the subprocess32
module on Windows.
OS = Windows 7
Python = 2.7.6
Issue 1: Using the setup.py intsaller fails on Windows because of the posix
extension modules. Removing the line
ext_modules=[ext],
from setup.py allows the installation to proceed for windows systems.
Issue 2: The subprocess32 code assumes that _subprocess.c has an attribute
WAIT_TIMEOUT which isn't the case for Python 2.7 (line 1137 of subprocess32.py)
Nick
Original issue reported on code.google.com by TaeKwonD...@gmail.com on 24 Mar 2014 at 3:40