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