16 lines
339 B
Python
16 lines
339 B
Python
#! /bin/env python3
|
|
# encoding: utf-8
|
|
|
|
from . import app
|
|
from . import aux
|
|
from . import cmd
|
|
from . import file
|
|
from . import misc
|
|
from . import text
|
|
textui = 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
|