blob: 39e650b7d7cac7a953ce907b30463e8dddebf47d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
"""
Import all submodules main classes into the package space
"""
import inspect
from tag import *
from blob import *
from tree import *
from commit import *
__all__ = [ name for name, obj in locals().items()
if not (name.startswith('_') or inspect.ismodule(obj)) ]
|