1
0
mirror of https://github.com/moparisthebest/SickRage synced 2025-01-09 12:58:09 -05:00
SickRage/lib/dogpile/core/util.py

9 lines
133 B
Python
Raw Normal View History

import sys
py3k = sys.version_info >= (3, 0)
try:
import threading
except ImportError:
import dummy_threading as threading