forked from gitpython-developers/GitPython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
19 lines (16 loc) · 623 Bytes
/
__init__.py
File metadata and controls
19 lines (16 loc) · 623 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import inspect
from git_python.actor import Actor
from git_python.blob import Blob
from git_python.commit import Commit
from git_python.diff import Diff
from git_python.errors import InvalidGitRepositoryError, NoSuchPathError
from git_python.git import Git
from git_python.head import Head
from git_python.repo import Repo
from git_python.stats import Stats
from git_python.tag import Tag
from git_python.tree import Tree
from git_python.utils import shell_escape, dashify, touch
__all__ = [ name for name, obj in locals().items()
if not (name.startswith('_') or inspect.ismodule(obj)) ]
__version__ = 'svn'