twiggy icon indicating copy to clipboard operation
twiggy copied to clipboard

Python 3.10: Threading related deprecations

Open tirkarthi opened this issue 3 years ago • 0 comments

Using camelcase methods have been deprecated in Python 3.10

Ref : python/cpython#25174

currentThread -> current_thread getName -> name

rg -t py -w 'currentThread|notifyAll|activeCount|isDaemon|setDaemon'
twiggy/lib/__init__.py
7:    return threading.currentThread().getName()

tirkarthi avatar May 11 '21 14:05 tirkarthi