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