over.core is mostly working

This commit is contained in:
Overwatch 2014-08-13 00:19:54 +02:00
parent 5baa9b75d0
commit 0df57ad386
23 changed files with 1528 additions and 1039 deletions

View file

@ -0,0 +1,14 @@
#! /bin/env python3
# encoding: utf-8
from . import app
from . import aux
from . import file
from . import misc
from . import textui
try:
from . import cython_types as types
except:
aux._print("unable to load C implementation, using python instead", textui.prefix.warn)
from . import python_types as types