Feature request: Have `wait` take a timeout

Issue #44 resolved
adamtheturtle created an issue

Thank you for the software.

I am looking to replace my current subprocess wrapper with sarge. One blocker - the wait function does not take a timeout.

See https://docs.python.org/3/library/subprocess.html#subprocess.Popen.wait for the timeout I am talking about.

Comments (2)

  1. Vinay Sajip repo owner

    The timeout parameter was only added to subprocess.Popen.wait in Python 3.3 - so adding this would need to handle older versions, correctly, too.

  2. Log in to comment