Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions parcon/ordered_dict.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,15 @@

import six
try:
from thread import get_ident as _get_ident
from _thread import get_ident as _get_ident
except ImportError:
try:
from dummy_thread import get_ident as _get_ident
from thread import get_ident as _get_ident
except ImportError:
from _dummy_thread import get_ident as _get_ident
try:
from dummy_thread import get_ident as _get_ident
except ImportError:
from _dummy_thread import get_ident as _get_ident

try:
from _abcoll import KeysView, ValuesView, ItemsView
Expand Down