finished all of over except app, which will need a lot more attention

This commit is contained in:
Martinez 2016-05-13 14:44:12 +02:00
parent 45eb51550a
commit a4665ae277
13 changed files with 529 additions and 1206 deletions

View file

@ -3,16 +3,24 @@
import sys
#from . import app
from . import aux
from . import cmd
from . import file
from . import misc
from . import text
from . import version
print = text.Output("over.__init__", stream=sys.stderr)
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
print("unable to load C implementation, using python instead", print.tl.warn)
core = aux.DeprecationForwarder(sys.modules[__name__], 'over.core', 'over')
textui = aux.DeprecationForwarder(text, 'over.core.textui', 'over.text')
core = aux.DeprecationForwarder(sys.modules[__name__], "over.core", "over")
textui = aux.DeprecationForwarder(text, "over.core.textui", "over.text")
del sys