parcon
parcon copied to clipboard
Fix thread import error
On newer Python versions, thread module was renamed to threading and low level functions are available in _thread module. Thats why ordered_dict.py backport fails on newer Python versions (e.g. Python 3.10.x) trying to import thread.
This PR fixes this by trying to import _threads first, then falling back to other options ...