finished all of over except app, which will need a lot more attention
This commit is contained in:
parent
45eb51550a
commit
a4665ae277
13 changed files with 529 additions and 1206 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue