From 15dd52cd578691930cea194e003fa80dd02f40eb Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Sun, 9 Feb 2014 21:23:51 +0100 Subject: tabs to 4 spaces - overall state of this branch is desolate, but fixable. Needs plenty of work --- git/db/complex.py | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'git/db/complex.py') 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.""" -- cgit v1.2.1