aboutsummaryrefslogtreecommitdiff
path: root/refs/__init__.py
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2010-11-23 12:35:34 +0100
committerSebastian Thiel <byronimo@gmail.com>2010-11-23 12:35:59 +0100
commit6e5aae2fc8c3832bdae1cd5e0a269405fb059231 (patch)
tree0436d71c5f99eb004acf95604edcecd040cd2724 /refs/__init__.py
parent739fa140235cc9d65c632eaf1f5cacc944d87cfb (diff)
downloadGitPython-6e5aae2fc8c3832bdae1cd5e0a269405fb059231.tar.gz
GitPython-6e5aae2fc8c3832bdae1cd5e0a269405fb059231.zip
Initial interface including some of the implementation of the RefLog. TestCase scetched out for now
tests: Added tests to verify that objects don't have a dict. Previously, due to a missing __slots__ member in Serializable, most objects would indeed have a dict, although the opposite was intended
Diffstat (limited to 'refs/__init__.py')
-rw-r--r--refs/__init__.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/refs/__init__.py b/refs/__init__.py
index ca5ace02..fc8ce644 100644
--- a/refs/__init__.py
+++ b/refs/__init__.py
@@ -16,5 +16,6 @@ import symbolic
for item in (HEAD, Head, RemoteReference, TagReference, Reference, SymbolicReference):
setattr(symbolic, item.__name__, item)
del(symbolic)
-# git.objects.Commit -> symbolic
-# git.config.SectionConstraint -> head
+
+
+from log import *