summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_subprocess.py
diff options
context:
space:
mode:
authorGregory P. Smith <greg@krypto.org>2016-11-21 00:31:07 (GMT)
committerGregory P. Smith <greg@krypto.org>2016-11-21 00:31:07 (GMT)
commit82604e03dcdd1ada0d505bd732d7531dde948491 (patch)
tree77bb25922dddc290b5d31ceec14dcdb64627d90b /Lib/test/test_subprocess.py
parent439f92ae3d46c7593159f5bb13d5a95495c2b4e7 (diff)
parentf0e98c510dd9bbc77b2ae3ebc888e6fba1549c5d (diff)
downloadcpython-82604e03dcdd1ada0d505bd732d7531dde948491.zip
cpython-82604e03dcdd1ada0d505bd732d7531dde948491.tar.gz
cpython-82604e03dcdd1ada0d505bd732d7531dde948491.tar.bz2
Issue #20572: Remove the subprocess.Popen.wait endtime parameter.
It was deprecated in 3.4 and undocumented prior to that.
Diffstat (limited to 'Lib/test/test_subprocess.py')
-rw-r--r--Lib/test/test_subprocess.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py
index 73da195..4cfb29d 100644
--- a/Lib/test/test_subprocess.py
+++ b/Lib/test/test_subprocess.py
@@ -2777,19 +2777,5 @@ class ContextManagerTests(BaseTestCase):
self.assertTrue(proc.stdin.closed)
-def test_main():
- unit_tests = (ProcessTestCase,
- POSIXProcessTestCase,
- Win32ProcessTestCase,
- MiscTests,
- ProcessTestCaseNoPoll,
- CommandsWithSpaces,
- ContextManagerTests,
- RunFuncTestCase,
- )
-
- support.run_unittest(*unit_tests)
- support.reap_children()
-
if __name__ == "__main__":
unittest.main()