mirror of https://github.com/python/cpython
Merge.
This commit is contained in:
commit
e410f267f1
|
@ -3590,14 +3590,17 @@ def setUpModule():
|
|||
try:
|
||||
lock = multiprocessing.RLock()
|
||||
except OSError:
|
||||
raise unittest.SkipTest("OSError raises on RLock creation, see issue 3111!")
|
||||
|
||||
raise unittest.SkipTest("OSError raises on RLock creation, "
|
||||
"see issue 3111!")
|
||||
check_enough_semaphores()
|
||||
|
||||
util.get_temp_dir() # creates temp directory for use by all processes
|
||||
|
||||
multiprocessing.get_logger().setLevel(LOG_LEVEL)
|
||||
|
||||
|
||||
def tearDownModule():
|
||||
# pause a bit so we don't get warning about dangling threads/processes
|
||||
time.sleep(0.5)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main()
|
||||
|
|
Loading…
Reference in New Issue