summaryrefslogtreecommitdiff
path: root/git/index/typ.py
Commit message (Collapse)AuthorAgeFilesLines
* Fix blob filter path shorter than filter pathAustin Scola2022-06-281-2/+6
|
* Use generator instead of mapAustin Scola2022-06-261-1/+1
|
* Remove usage of `PosixPath.is_relative_to`Austin Scola2022-06-261-1/+2
| | | | | Remove usage of `PosixPath.is_relative_to` because it was added in Python 3.9 and earlier versions of Python are supported by `GitPython`.
* Fix pathlike type annotation typoAustin Scola2022-06-261-1/+1
|
* Change to not stringify pathsAustin Scola2022-06-261-4/+6
|
* Move stage type defAustin Scola2022-06-211-2/+3
|
* Fix blob filter typesAustin Scola2022-06-211-3/+4
| | | | Fix the types and type annotations of some of the blob filter code.
* reformat according to 'black' configuration file.Sebastian Thiel2022-05-181-3/+1
|
* Run everything through 'black'Sebastian Thiel2022-05-181-24/+43
| | | | | That way people who use it won't be deterred, while it unifies style everywhere.
* Rmv with_metaclass shim, make section constraint generic wrt its ↵Yobmod2021-07-241-1/+2
| | | | configparser type
* Use BaseIndexEntry named access in index/fun.pyYobmod2021-07-241-52/+29
|
* Add types to index.typ.pyYobmod2021-05-161-21/+30
|
* Add remaining types to IndexFile ._preprocess_add_items() to .diff()Yobmod2021-05-161-2/+4
|
* Spelling fixesVille Skyttä2017-03-091-1/+1
|
* Overhauled all tutorials, and placed them in a unit-test.Sebastian Thiel2015-01-221-1/+2
| | | | | | That way they are protected from regression. Fixes #239
* test_index worksSebastian Thiel2015-01-061-1/+1
|
* initial set of adjustments to make (most) imports work.Sebastian Thiel2015-01-041-5/+4
| | | | More to come, especially when it's about strings
* Bumped version, updated changelog, reduced code smellSebastian Thiel2015-01-041-1/+2
| | | | | There is more work to do though, as many imports are still incorrect. Also, there are still print statements
* Applied autopep8Sebastian Thiel2014-11-191-5/+5
| | | | | Commandline was autopep8 -j 8 --max-line-length 120 --in-place --recursive --exclude "*gitdb*,*async*" git/
* pep8 linting (trailing whitespace)Antoine Musso2014-11-161-3/+3
| | | | W291 trailing whitespace
* pep8 linting (whitespace before/after)Antoine Musso2014-11-161-2/+2
| | | | | | | | | | | | | E201 whitespace after '(' E202 whitespace before ')' E203 whitespace before ':' E225 missing whitespace around operator E226 missing whitespace around arithmetic operator E227 missing whitespace around bitwise or shift operator E228 missing whitespace around modulo operator E231 missing whitespace after ',' E241 multiple spaces after ',' E251 unexpected spaces around keyword / parameter equals
* pep8 linting (blank lines expectations)Antoine Musso2014-11-161-0/+4
| | | | | | E301 expected 1 blank line, found 0 E302 expected 2 blank lines, found 1 E303 too many blank lines (n)
* pep8 linting (whitespaces)Antoine Musso2014-11-161-8/+6
| | | | | | | | | | | 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
* tabs to 4 spaces - this won't make integrating the patches easier, but it's ↵Sebastian Thiel2014-02-091-146/+146
| | | | probably a good idea to go a little more pep8 (and fix sins of my youth ;) )
* Moved everything into the git subdirectory - some tests still need to be ↵Sebastian Thiel2010-11-251-0/+173
adjusted