From: Skip Montanaro Date: Tue, 12 Mar 2002 19:16:19 +0000 (+0000) Subject: Popen3 and Popen4 should be in __all__ X-Git-Tag: v2.3c1~6516 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=59b40c0828e3cecc1af8d17e8f653f749dcaa8ec;p=python Popen3 and Popen4 should be in __all__ --- diff --git a/Lib/popen2.py b/Lib/popen2.py index 07ed6d62ff..e80f13d38d 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()???)