dummy_thread/ing: remove in 3.9 (#6408)

https://bugs.python.org/issue37312
This commit is contained in:
Shantanu
2021-11-27 20:50:14 -08:00
committed by GitHub
parent f29d2bb72c
commit c47ed98b3e
3 changed files with 10 additions and 8 deletions

View File

@@ -1 +1,6 @@
from _dummy_thread import *
import sys
if sys.version_info >= (3, 9):
from _thread import *
else:
from _dummy_thread import *