diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2011-07-07 14:53:37 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2011-07-07 17:30:47 +0200 |
commit | 4bb5107cff6f205f5c6e73a6f8bd22fc56f48cf4 (patch) | |
tree | 4164a8f9d4d3434d67dcaeb6e7ef60ae4bff81cd /git/db/interface.py | |
parent | d5038ebadc190753c67c02c9f5930a14ca2dc1e7 (diff) | |
download | gitpython-4bb5107cff6f205f5c6e73a6f8bd22fc56f48cf4.tar.gz |
Initial version of the DulwichType inheritance. For now, it inherits everything from the existing implementation, but one by one things can be reimplmented to use dulwich.
It also shows that py 2.6 is quite plagued from its new feature, which is actually a bug, as objects inability to accept any args makes mixins hard to use ...
Diffstat (limited to 'git/db/interface.py')
-rw-r--r-- | git/db/interface.py | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/git/db/interface.py b/git/db/interface.py index 803f7769..9ad74cc1 100644 --- a/git/db/interface.py +++ b/git/db/interface.py @@ -561,16 +561,8 @@ class ReferencesMixin(object): raise NotImplementedError() #}END edit methods - - #{ Backward Compatability - # These aliases need to be provided by the implementing interface as well - refs = references - branches = heads - #} END backward compatability - - - - + + class RepositoryPathsMixin(object): """Represents basic functionality of a full git repository. This involves an optional working tree, a git directory with references and an object directory. |