fabioz / PyDev.Debugger

Sources for the debugger used in PyDev, PyCharm and VSCode Python
Eclipse Public License 1.0
432 stars 122 forks source link

Replace deprecated threading.currentThread with threading.current_thread #219

Closed hugovk closed 1 year ago

hugovk commented 2 years ago

threading.currentThread was deprecated in Python 3.10 (October 2021).

Replace with threading.current_thread, added in Python 2.6 (October 2008).

hugovk commented 1 year ago

Closing due to conflict.