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/test/db/dulwich/lib.py | |
| parent | d5038ebadc190753c67c02c9f5930a14ca2dc1e7 (diff) | |
| download | GitPython-4bb5107cff6f205f5c6e73a6f8bd22fc56f48cf4.tar.gz GitPython-4bb5107cff6f205f5c6e73a6f8bd22fc56f48cf4.zip | |
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/test/db/dulwich/lib.py')
| -rw-r--r-- | git/test/db/dulwich/lib.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/git/test/db/dulwich/lib.py b/git/test/db/dulwich/lib.py index a1110ffa..56734064 100644 --- a/git/test/db/dulwich/lib.py +++ b/git/test/db/dulwich/lib.py @@ -1,6 +1,11 @@ """dulwich specific utilities, as well as all the default ones""" -from git.test.lib import * +from git.test.lib import ( + InheritedTestMethodsOverrideWrapperMetaClsAutoMixin, + needs_module_or_skip + ) + +__all__ = ['needs_dulwich_or_skip', 'DulwichRequiredMetaMixin'] #{ Decoorators |
