aboutsummaryrefslogtreecommitdiffstats
path: root/awlsim_loader/fupcompiler.py
blob: c1abccbd107c6ef223d95d61ab74e7da0de4a3f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
from __future__ import division, absolute_import, print_function, unicode_literals

import awlsim_loader.coverage_helper
import awlsim_loader.cython_helper as __cython

__importmod = "awlsim.fupcompiler"

if __cython.shouldUseCython(__importmod):			#@nocy
#if True:							#@cy
	__importcymod = __cython.cythonModuleName(__importmod)
	try:
		exec("from %s import *" % __importcymod)
	except ImportError as e:
		__cython.cythonImportError(__importcymod, str(e))
if not __cython.shouldUseCython(__importmod):			#@nocy
	exec("from %s import *" % __importmod)			#@nocy
bues.ch cgit interface