changeset: 101027:386712b16c74 branch: 3.5 parent: 101025:8ae1b986766d user: Martin Panter date: Sat Apr 16 23:38:25 2016 +0000 files: Lib/test/test_subprocess.py description: Issue #26782: Acknowledge the incomplete status of __all__ in 3.5 Handle is probably meant to be excluded, and STARTUPINFO will be added to __all__ in 3.6. diff -r 8ae1b986766d -r 386712b16c74 Lib/test/test_subprocess.py --- a/Lib/test/test_subprocess.py Sat Apr 16 15:12:29 2016 -0700 +++ b/Lib/test/test_subprocess.py Sat Apr 16 23:38:25 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