6 lines
102 B
Python
6 lines
102 B
Python
|
import config
|
||
|
if config.USE_CYTHON:
|
||
|
from ansi_cython import *
|
||
|
else:
|
||
|
from ansi_python import *
|