summaryrefslogtreecommitdiffstats
path: root/awlsim/core/__init__.py
blob: b816b5c4cada146d7454359c78ca4edff628f83d (plain)
1
2
3
4
5
6
7
8
9
10
11
from __future__ import division, absolute_import, print_function, unicode_literals

import awlsim.cython_helper as __cython

if __cython.shouldUseCython():
	try:
		from awlsim_cython.core.all import *
	except ImportError as e:
		__cython.cythonImportError("core", str(e))
if not __cython.shouldUseCython():
	from awlsim.core.all import *
bues.ch cgit interface