summaryrefslogtreecommitdiffstats
path: root/Lib/popen2.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2000-10-03 23:07:13 (GMT)
committerTim Peters <tim.peters@gmail.com>2000-10-03 23:07:13 (GMT)
commitd215218178ea800e9fb2ee4841a2c5a3f46ff269 (patch)
tree949513a28fd8e577b1a4fbecaeb5c08bd1b316d2 /Lib/popen2.py
parentcf0a1cc41705e27a8dd81536bb6a1b468bc22c59 (diff)
downloadcpython-d215218178ea800e9fb2ee4841a2c5a3f46ff269.zip
cpython-d215218178ea800e9fb2ee4841a2c5a3f46ff269.tar.gz
cpython-d215218178ea800e9fb2ee4841a2c5a3f46ff269.tar.bz2
test_popen2 broke on Windows shortly after 2.0b2 was released. Fixed it.
Diffstat (limited to 'Lib/popen2.py')
-rw-r--r--Lib/popen2.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/popen2.py b/Lib/popen2.py
index 4580f58..e1bf363 100644
--- a/Lib/popen2.py
+++ b/Lib/popen2.py
@@ -111,7 +111,7 @@ class Popen4(Popen3):
if sys.platform[:3] == "win":
# Some things don't make sense on non-Unix platforms.
- del Popen3, Popen4, _active, _cleanup
+ del Popen3, Popen4
def popen2(cmd, bufsize=-1, mode='t'):
"""Execute the shell command 'cmd' in a sub-process. If 'bufsize' is