rework to separate out python module

Remove the magic from the magic _db* modules.
Combine as one 'devsup._dbapi'.

libpyDevSup exists only to bootstrap python
interpreter in IOCs.
This commit is contained in:
Michael Davidsaver
2018-11-03 13:33:36 -07:00
parent 662b518338
commit f428d2a4e4
15 changed files with 401 additions and 426 deletions

View File

@@ -4,10 +4,7 @@ import traceback
from functools import wraps
from collections import defaultdict
try:
import _dbapi
except ImportError:
import devsup._nullapi as _dbapi
from . import _dbapi
__all__ = [
"hooknames",