bpo-43517: Fix false positive in detection of circular imports (#24895)

This commit is contained in:
Antoine Pitrou 2021-03-20 20:07:44 +01:00 committed by GitHub
parent 7cb033c423
commit 2fd16ef406
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 81 additions and 2 deletions

View file

@ -0,0 +1,27 @@
import multiprocessing
import os
import threading
import traceback
def t():
try:
with multiprocessing.Pool(1):
pass
except Exception:
traceback.print_exc()
os._exit(1)
def main():
threads = []
for i in range(20):
threads.append(threading.Thread(target=t))
for thread in threads:
thread.start()
for thread in threads:
thread.join()
if __name__ == "__main__":
main()