summaryrefslogtreecommitdiffstats
path: root/awlsim/coreserver/__init__.py
blob: c7158862e092879a69cb5525d4bd16abfd191f0c (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.coreserver.all import *
	except ImportError as e:
		__cython.cythonImportError("coreserver", str(e))
if not __cython.shouldUseCython():
	from awlsim.coreserver.all import *
bues.ch cgit interface