summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorSkip Montanaro <skip@pobox.com>2002-03-12 19:16:19 (GMT)
committerSkip Montanaro <skip@pobox.com>2002-03-12 19:16:19 (GMT)
commit59b40c0828e3cecc1af8d17e8f653f749dcaa8ec (patch)
tree395c7b1209034ce10dc72042fc0008cd49760a92 /Lib
parent524a098f544a7215c5fecf5fdb5b48d77e274a04 (diff)
downloadcpython-59b40c0828e3cecc1af8d17e8f653f749dcaa8ec.zip
cpython-59b40c0828e3cecc1af8d17e8f653f749dcaa8ec.tar.gz
cpython-59b40c0828e3cecc1af8d17e8f653f749dcaa8ec.tar.bz2
Popen3 and Popen4 should be in __all__
Diffstat (limited to 'Lib')
-rw-r--r--Lib/popen2.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/popen2.py b/Lib/popen2.py
index 07ed6d6..e80f13d 100644
--- a/Lib/popen2.py
+++ b/Lib/popen2.py
@@ -10,7 +10,7 @@ import os
import sys
import types
-__all__ = ["popen2", "popen3", "popen4"]
+__all__ = ["popen2", "popen3", "popen4", "Popen3", "Popen4"]
MAXFD = 256 # Max number of file descriptors (os.getdtablesize()???)