over/core/__init__.py
Martinez 8d700f5ff1 add over.core.m
add over.core.m.compare_float
2015-09-21 23:48:08 +02:00

18 lines
424 B
Python

#! /usr/bin/env python3
# encoding: utf-8
from . import m
from . import app
from . import aux
from . import cmd
from . import file
from . import misc
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
textui = aux.DeprecationForwarder(text, 'over.core.textui', 'over.core.text')