summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_subprocess.py
diff options
context:
space:
mode:
authorGregory P. Smith <greg@krypto.org>2015-04-07 23:11:33 (GMT)
committerGregory P. Smith <greg@krypto.org>2015-04-07 23:11:33 (GMT)
commitcb6fdf2c63961e8b9111357ca57c3de27d029820 (patch)
treec30bdf14df4aa2ffeaf6860d76c2bd4356746614 /Lib/test/test_subprocess.py
parentace55865c5a528d4d2711c468c5da649fa20c4b1 (diff)
downloadcpython-cb6fdf2c63961e8b9111357ca57c3de27d029820.zip
cpython-cb6fdf2c63961e8b9111357ca57c3de27d029820.tar.gz
cpython-cb6fdf2c63961e8b9111357ca57c3de27d029820.tar.bz2
issue10838: Rename the subprocess.mswindows internal global to _mswindows.
It is internal only, not a documented API.
Diffstat (limited to 'Lib/test/test_subprocess.py')
-rw-r--r--Lib/test/test_subprocess.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py
index 71481bc..7b66945 100644
--- a/Lib/test/test_subprocess.py
+++ b/Lib/test/test_subprocess.py
@@ -2422,7 +2422,7 @@ class ProcessTestCaseNoPoll(ProcessTestCase):
def test__all__(self):
"""Ensure that __all__ is populated properly."""
- intentionally_excluded = set(("list2cmdline", "mswindows", "MAXFD"))
+ intentionally_excluded = set(("list2cmdline",))
exported = set(subprocess.__all__)
possible_exports = set()
import types