@@ -328,10 +328,10 @@ def do_release_read_lock(self):
328
328
# check if we are the last asynchronous reader thread
329
329
# out the door.
330
330
if self .asynch == 0 :
331
- # yes. so if a sync operation is waiting, notifyAll to wake
331
+ # yes. so if a sync operation is waiting, notify_all to wake
332
332
# it up
333
333
if self .current_sync_operation is not None :
334
- self .condition .notifyAll ()
334
+ self .condition .notify_all ()
335
335
elif self .asynch < 0 :
336
336
raise LockError ("Synchronizer error - too many "
337
337
"release_read_locks called" )
@@ -357,7 +357,7 @@ def do_acquire_write_lock(self, wait=True):
357
357
# establish ourselves as the current sync
358
358
# this indicates to other read/write operations
359
359
# that they should wait until this is None again
360
- self .current_sync_operation = _threading .currentThread ()
360
+ self .current_sync_operation = _threading .current_thread ()
361
361
362
362
# now wait again for asyncs to finish
363
363
if self .asynch > 0 :
@@ -377,7 +377,7 @@ def do_acquire_write_lock(self, wait=True):
377
377
def do_release_write_lock (self ):
378
378
self .condition .acquire ()
379
379
try :
380
- if self .current_sync_operation is not _threading .currentThread ():
380
+ if self .current_sync_operation is not _threading .current_thread ():
381
381
raise LockError ("Synchronizer error - current thread doesnt "
382
382
"have the write lock" )
383
383
@@ -386,7 +386,7 @@ def do_release_write_lock(self):
386
386
self .current_sync_operation = None
387
387
388
388
# tell everyone to get ready
389
- self .condition .notifyAll ()
389
+ self .condition .notify_all ()
390
390
finally :
391
391
# everyone go !!
392
392
self .condition .release ()
0 commit comments