over/core/__init__.py
2014-08-19 16:29:56 +02:00

14 lines
311 B
Python

#! /bin/env python3
# encoding: utf-8
from . import app
from . import aux
from . import file
from . import misc
from . import textui
try:
from . import cython_types as types
except:
aux._print('unable to load C implementation, using python instead', textui.prefix.warn)
from . import python_types as types