summaryrefslogtreecommitdiff
path: root/git/index/__init__.py
Commit message (Collapse)AuthorAgeFilesLines
* Revert "Replace wildcard imports with concrete imports"Trym Bremnes2021-10-031-2/+2
| | | | | | | | | | | This reverts commit 53d94b8091b36847bb9e495c76bb5a3ec2a2fdb5. The reason for the revert is that the commit in question introduced a regression where certain modules, functions and classes that were exposed before were no longer exposed. See https://github.com/gitpython-developers/GitPython/pull/1352#issuecomment-932757204 for additional information.
* Replace wildcard imports with concrete importsTrym Bremnes2021-10-011-2/+2
| | | | | | | All `from <module> import *` has now been replaced by `from <module> import X, Y, ...`. Contributes to #1349
* Rmv old py2.7 __future__ importsYobmod2021-07-191-2/+0
|
* Removed unnecessary (non-gitpython) tests and fixed flake80.3.3Sebastian Thiel2015-01-041-1/+1
|
* Bumped version, updated changelog, reduced code smellSebastian Thiel2015-01-041-2/+4
| | | | | There is more work to do though, as many imports are still incorrect. Also, there are still print statements
* pep8 linting (whitespaces)Antoine Musso2014-11-161-1/+1
| | | | | | | | | | | W191 indentation contains tabs E221 multiple spaces before operator E222 multiple spaces after operator E225 missing whitespace around operator E271 multiple spaces after keyword W292 no newline at end of file W293 blank line contains whitespace W391 blank line at end of file
* Moved everything into the git subdirectory - some tests still need to be ↵Sebastian Thiel2010-11-251-0/+4
adjusted