changeset: 101028:728370e7a29d parent: 101026:c956d17d255d parent: 101027:386712b16c74 user: Martin Panter date: Sat Apr 16 23:40:15 2016 +0000 files: Lib/test/test_subprocess.py description: Issue #26782: Merge test_subprocess from 3.5 diff -r c956d17d255d -r 728370e7a29d Lib/test/test_subprocess.py --- a/Lib/test/test_subprocess.py Sat Apr 16 15:12:37 2016 -0700 +++ b/Lib/test/test_subprocess.py Sat Apr 16 23:40:15 2016 +0000 @@ -2540,7 +2540,8 @@ 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