major reorganization of file structure

This commit is contained in:
Martinez 2016-05-11 17:07:48 +02:00
parent 65b0233a9d
commit 04b75a400c
33 changed files with 112 additions and 503 deletions

18
over/__init__.py Normal file
View file

@ -0,0 +1,18 @@
#! /usr/bin/env python3
# encoding: utf-8
import sys
from . import aux
from . import text
try:
from . import cython_types as types
except:
aux._print('unable to load C implementation, using python instead', text.prefix.warn)
from . import python_types as types
core = aux.DeprecationForwarder(sys.modules[__name__], 'over.core', 'over')
textui = aux.DeprecationForwarder(text, 'over.core.textui', 'over.text')
del sys