wearpants / twiggy

Pythonic logger, shipped in Redhat & Debian
BSD 3-Clause "New" or "Revised" License
47 stars 11 forks source link

Python 3.10: Threading related deprecations #95

Open tirkarthi opened 3 years ago

tirkarthi commented 3 years ago

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()