don't use a debug lock per default

git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@3433 e7d03fd6-7b0d-0410-9947-9c21f3af8025
This commit is contained in:
calvin 2006-09-15 11:30:55 +00:00
parent 44295e5bf8
commit a1eff0bd3e

View file

@ -22,7 +22,9 @@ import linkcheck
import log
def get_lock (name):
return DebugLock(threading.Lock(), name)
return threading.Lock()
# for thread debugging, use the DebugLock wrapper
#return DebugLock(threading.Lock(), name)
class DebugLock (object):