diff options
| author | Martin Panter <vadmium+py@gmail.com> | 2016-04-16 23:40:15 +0000 |
|---|---|---|
| committer | Martin Panter <vadmium+py@gmail.com> | 2016-04-16 23:40:15 +0000 |
| commit | 9015eb4f7498f800835c176123676113a060ba12 (patch) | |
| tree | d615fe61a2e0239dc42c6462083d899eac2bcd76 | |
| parent | a4ed2daea3ac4a53759d8680d789c2e1be6591f9 (diff) | |
| parent | 06172e7bd4e19ab002069998e315cd32139f475b (diff) | |
| download | cpython-git-9015eb4f7498f800835c176123676113a060ba12.tar.gz | |
Issue #26782: Merge test_subprocess from 3.5
| -rw-r--r-- | Lib/test/test_subprocess.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py index c443523620..b5c86f2953 100644 --- a/Lib/test/test_subprocess.py +++ b/Lib/test/test_subprocess.py @@ -2540,7 +2540,8 @@ class MiscTests(unittest.TestCase): def test__all__(self): """Ensure that __all__ is populated properly.""" - intentionally_excluded = set(("list2cmdline",)) + # STARTUPINFO added to __all__ in 3.6 + intentionally_excluded = {"list2cmdline", "STARTUPINFO", "Handle"} exported = set(subprocess.__all__) possible_exports = set() import types |
