mirror of https://github.com/python/cpython.git
Remove dependency on dummy_threading (to solve a bootstrap problem).
This commit is contained in:
parent
aba4581ce3
commit
409f663091
|
@ -16,7 +16,10 @@
|
|||
try:
|
||||
from _thread import RLock
|
||||
except:
|
||||
from dummy_threading import RLock
|
||||
class RLock:
|
||||
'Dummy reentrant lock'
|
||||
def __enter__(self): pass
|
||||
def __exit__(self, exctype, excinst, exctb): pass
|
||||
|
||||
|
||||
################################################################################
|
||||
|
|
Loading…
Reference in New Issue