Commit cd29ad22 authored by Vincent Pelletier's avatar Vincent Pelletier

Uncomment required code to make RLock class be detected as reentrant.


git-svn-id: https://svn.erp5.org/repos/neo/branches/prototype3@1111 71dcc9de-d417-0410-9af5-da40c76e7ee4
parent 8f2ba439
......@@ -101,7 +101,7 @@ if VERBOSE_LOCKING:
class RLock(VerboseLock):
def __init__(self, verbose=None):
VerboseLock.__init__(self)#, reentrant=True)
VerboseLock.__init__(self, reentrant=True)
self.lock = threading_RLock()
def _locked(self):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment