diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2014-02-09 21:23:51 +0100 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2014-02-09 21:23:51 +0100 |
commit | 15dd52cd578691930cea194e003fa80dd02f40eb (patch) | |
tree | ef4c9c5f705dd1ca743b7ceefe5b91b11ad15010 /git/db/complex.py | |
parent | 660bdca125aa9dcca7a7730535bec433edb8ba02 (diff) | |
download | gitpython-15dd52cd578691930cea194e003fa80dd02f40eb.tar.gz |
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.""" |