diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2010-11-25 17:01:25 +0100 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2010-11-25 17:01:25 +0100 |
commit | cb68eef0865df6aedbc11cd81888625a70da6777 (patch) | |
tree | bd3018e6257574687b271b6c2e652ef943657471 /refs/__init__.py | |
parent | 65747a216c67c3101c6ae2edaa8119d786b793cb (diff) | |
download | gitpython-cb68eef0865df6aedbc11cd81888625a70da6777.tar.gz |
Moved everything into the git subdirectory - some tests still need to be adjusted
Diffstat (limited to 'refs/__init__.py')
-rw-r--r-- | refs/__init__.py | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/refs/__init__.py b/refs/__init__.py deleted file mode 100644 index fc8ce644..00000000 --- a/refs/__init__.py +++ /dev/null @@ -1,21 +0,0 @@ - -# import all modules in order, fix the names they require -from symbolic import * -from reference import * -from head import * -from tag import * -from remote import * - -# name fixes -import head -head.RemoteReference = RemoteReference -del(head) - - -import symbolic -for item in (HEAD, Head, RemoteReference, TagReference, Reference, SymbolicReference): - setattr(symbolic, item.__name__, item) -del(symbolic) - - -from log import * |