This commit is contained in:
Raymond Hettinger 2013-03-01 23:21:00 -08:00
commit 794568f0ad
1 changed files with 4 additions and 1 deletions

View File

@ -19,7 +19,10 @@ from collections import namedtuple
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
################################################################################