Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit d215218

Browse files
committed
test_popen2 broke on Windows shortly after 2.0b2 was released. Fixed it.
1 parent cf0a1cc commit d215218

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/popen2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ def __init__(self, cmd, bufsize=-1):
111111

112112
if sys.platform[:3] == "win":
113113
# Some things don't make sense on non-Unix platforms.
114-
del Popen3, Popen4, _active, _cleanup
114+
del Popen3, Popen4
115115

116116
def popen2(cmd, bufsize=-1, mode='t'):
117117
"""Execute the shell command 'cmd' in a sub-process. If 'bufsize' is

0 commit comments

Comments
 (0)