diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2014-02-10 21:40:53 +0100 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2014-02-10 21:40:53 +0100 |
commit | 1cb02ebcaa4891c01a1d6cba11a3cd9806fad782 (patch) | |
tree | 51130c659e5089434e84404940ed1451f6c5d5cc /git/db/complex.py | |
parent | 660bdca125aa9dcca7a7730535bec433edb8ba02 (diff) | |
parent | f77230f618722e964a76657ebb03d822b2f73518 (diff) | |
download | gitpython-1cb02ebcaa4891c01a1d6cba11a3cd9806fad782.tar.gz |
Merge branch 'feature/spaces-and-cleanup-master'
* feature/spaces-and-cleanup-master:
Basic fixes to get tests back on track. Of course there is much more work to be done here
removed leftover gitdb - I thought it was merged into git
tabs to 4 spaces - overall state of this branch is desolate, but fixable. Needs plenty of work
Diffstat (limited to 'git/db/complex.py')
-rw-r--r-- | git/db/complex.py | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/git/db/complex.py b/git/db/complex.py index 31b047a0..e8ad8a62 100644 --- a/git/db/complex.py +++ b/git/db/complex.py @@ -7,22 +7,22 @@ from compat import RepoCompatibilityInterface __all__ = ['CmdGitDB', 'PureGitDB', 'CmdCompatibilityGitDB', 'PureCompatibilityGitDB'] class CmdGitDB(CmdPartialGitDB, PurePartialGitDB): - """A database which uses primarily the git command implementation, but falls back - to pure python where it is more feasible - :note: To assure consistent behaviour across implementations, when calling the - ``stream()`` method a cache is created. This makes this implementation a bad - choice when reading big files as these are streamed from memory in all cases.""" + """A database which uses primarily the git command implementation, but falls back + to pure python where it is more feasible + :note: To assure consistent behaviour across implementations, when calling the + ``stream()`` method a cache is created. This makes this implementation a bad + choice when reading big files as these are streamed from memory in all cases.""" class CmdCompatibilityGitDB(RepoCompatibilityInterface, CmdGitDB): - """A database which fills in its missing implementation using the pure python - implementation""" - pass + """A database which fills in its missing implementation using the pure python + implementation""" + pass class PureGitDB(PurePartialGitDB, CmdPartialGitDB): - """A repository which uses the pure implementation primarily, but falls back - on using the git command for high-level functionality""" + """A repository which uses the pure implementation primarily, but falls back + on using the git command for high-level functionality""" class PureCompatibilityGitDB(RepoCompatibilityInterface, PureGitDB): - """Repository which uses the pure implementation primarily, but falls back - to the git command implementation. Please note that the CmdGitDB does it - the opposite way around.""" + """Repository which uses the pure implementation primarily, but falls back + to the git command implementation. Please note that the CmdGitDB does it + the opposite way around.""" |