summaryrefslogtreecommitdiffstats
path: root/awlsim/common/__init__.py
blob: d99f1c256cad60a120e61969dcd02931855548c2 (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.common.all_modules import *	#<no-cython-patch
	except ImportError as e:
		__cython.cythonImportError(__name__, str(e))
if not __cython.shouldUseCython(__name__):			#@nocy
	from awlsim.common.all_modules import *			#@nocy
bues.ch cgit interface