mirror of https://github.com/python/cpython
Popen3 and Popen4 should be in __all__
This commit is contained in:
parent
524a098f54
commit
59b40c0828
|
@ -10,7 +10,7 @@ import os
|
||||||
import sys
|
import sys
|
||||||
import types
|
import types
|
||||||
|
|
||||||
__all__ = ["popen2", "popen3", "popen4"]
|
__all__ = ["popen2", "popen3", "popen4", "Popen3", "Popen4"]
|
||||||
|
|
||||||
MAXFD = 256 # Max number of file descriptors (os.getdtablesize()???)
|
MAXFD = 256 # Max number of file descriptors (os.getdtablesize()???)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue