Changeset 422eade in mod_gnutls
- Timestamp:
- Jan 26, 2020, 1:42:14 PM (13 months ago)
- Branches:
- asyncio, master, proxy-ticket
- Children:
- c05b8c5
- Parents:
- 264ab17
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
test/mgstest/services.py
r264ab17 r422eade 83 83 self.process.terminate() 84 84 85 def wait(self ):85 def wait(self, timeout=None): 86 86 """Wait for the process to actually stop after calling stop(). 87 87 88 WARNING: Calling this method without stop() first is likely to 89 hang. 88 WARNING: Calling this method without a timeout or calling 89 stop() first will hang. An expired timeout will raise a 90 subprocess.TimeoutExpired exception. 91 90 92 """ 91 93 if self.process: 92 self.process.wait( )94 self.process.wait(timeout=timeout) 93 95 self.process = None 94 96
Note: See TracChangeset
for help on using the changeset viewer.