mirror of
https://github.com/moparisthebest/SickRage
synced 2025-01-08 20:38:15 -05:00
9 lines
133 B
Python
9 lines
133 B
Python
import sys
|
|
py3k = sys.version_info >= (3, 0)
|
|
|
|
try:
|
|
import threading
|
|
except ImportError:
|
|
import dummy_threading as threading
|
|
|