7 lines
107 B
Python
7 lines
107 B
Python
import sys
|
|
|
|
if sys.version_info >= (3, 0):
|
|
from libcsp_py3 import *
|
|
else:
|
|
from libcsp_py2 import *
|