Issue #20572: Remove the subprocess.Popen.wait endtime parameter.

It was deprecated in 3.4 and undocumented prior to that.
This commit is contained in:
Gregory P. Smith 2016-11-20 16:31:07 -08:00
commit 82604e03dc
3 changed files with 7 additions and 27 deletions

View file

@ -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()