1
0
mirror of https://github.com/moparisthebest/SickRage synced 2025-03-05 10:59:39 -05:00

9 lines
133 B
Python

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