summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-04-16 23:42:37 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-04-16 23:42:37 (GMT)
commit528619b6c3a9cdf987397eacb4fbc36dec7c6433 (patch)
treefef4aa496cbfb0bdb83e30ab27fb3042278bc9ea /Lib/test
parent9015eb4f7498f800835c176123676113a060ba12 (diff)
downloadcpython-528619b6c3a9cdf987397eacb4fbc36dec7c6433.zip
cpython-528619b6c3a9cdf987397eacb4fbc36dec7c6433.tar.gz
cpython-528619b6c3a9cdf987397eacb4fbc36dec7c6433.tar.bz2
Issue #26782: Add STARTUPINFO to subprocess.__all__ on Windows
Diffstat (limited to 'Lib/test')
-rw-r--r--Lib/test/test_subprocess.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py
index b5c86f2..7f70fd0 100644
--- a/Lib/test/test_subprocess.py
+++ b/Lib/test/test_subprocess.py
@@ -2540,8 +2540,7 @@ class MiscTests(unittest.TestCase):
def test__all__(self):
"""Ensure that __all__ is populated properly."""
- # STARTUPINFO added to __all__ in 3.6
- intentionally_excluded = {"list2cmdline", "STARTUPINFO", "Handle"}
+ intentionally_excluded = {"list2cmdline", "Handle"}
exported = set(subprocess.__all__)
possible_exports = set()
import types