mirror of https://github.com/python/cpython
Issue #26782: Merge test_subprocess from 3.5
This commit is contained in:
commit
9015eb4f74
|
@ -2540,7 +2540,8 @@ class MiscTests(unittest.TestCase):
|
||||||
|
|
||||||
def test__all__(self):
|
def test__all__(self):
|
||||||
"""Ensure that __all__ is populated properly."""
|
"""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__)
|
exported = set(subprocess.__all__)
|
||||||
possible_exports = set()
|
possible_exports = set()
|
||||||
import types
|
import types
|
||||||
|
|
Loading…
Reference in New Issue