blob: afda52968c2be8910466d6717803fc3d16f8e821 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
from __future__ import division, absolute_import, print_function, unicode_literals
import awlsim.cython_helper as __cython
if __cython.shouldUseCython(__name__): #@nocy
#if True: #@cy
try:
from awlsim_cython.coreserver.all_modules import * #<no-cython-patch
except ImportError as e:
__cython.cythonImportError(__name__, str(e))
if not __cython.shouldUseCython(__name__): #@nocy
from awlsim.coreserver.all_modules import * #@nocy
|