Remove dependency on dummy_threading (to solve a bootstrap problem).

This commit is contained in:
Raymond Hettinger 2013-03-01 23:20:13 -08:00
parent aba4581ce3
commit 409f663091
1 changed files with 4 additions and 1 deletions

View File

@ -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
################################################################################