Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0c04cb commit 06172e7Copy full SHA for 06172e7
1 file changed
Lib/test/test_subprocess.py
@@ -2540,7 +2540,8 @@ def test_getoutput(self):
2540
2541
def test__all__(self):
2542
"""Ensure that __all__ is populated properly."""
2543
- intentionally_excluded = set(("list2cmdline",))
+ # STARTUPINFO added to __all__ in 3.6
2544
+ intentionally_excluded = {"list2cmdline", "STARTUPINFO", "Handle"}
2545
exported = set(subprocess.__all__)
2546
possible_exports = set()
2547
import types
0 commit comments