Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix Sphinx rendering errors | Stephan Creutz | 2022-12-29 | 1 | -0/+2 |
| | | | | | | | | These errors are mostly fixed by either adding blank lines or single spaces for Sphinx documentation key words. The commit solely includes documentation changes, no functional changes. | ||||
* | reformat according to 'black' configuration file. | Sebastian Thiel | 2022-05-18 | 1 | -9/+3 |
| | |||||
* | Run everything through 'black' | Sebastian Thiel | 2022-05-18 | 1 | -27/+48 |
| | | | | | That way people who use it won't be deterred, while it unifies style everywhere. | ||||
* | increase mypy strictness (warn unused ignored and warn unreachable) | Yobmod | 2021-08-02 | 1 | -1/+1 |
| | |||||
* | Make types in refs compatible with objects | Yobmod | 2021-07-19 | 1 | -1/+1 |
| | |||||
* | Use TreeCacheTup type alias throughout | Yobmod | 2021-07-09 | 1 | -1/+1 |
| | |||||
* | Change List to MutableSequence in fun.py _find_by_name() | Yobmod | 2021-07-08 | 1 | -7/+7 |
| | |||||
* | fix base,ours,theirs typing | Yobmod | 2021-07-08 | 1 | -4/+4 |
| | |||||
* | Use Tuple not tuple | Yobmod | 2021-07-08 | 1 | -2/+3 |
| | |||||
* | Fix traverse_trees_recursive() again | Yobmod | 2021-07-08 | 1 | -3/+3 |
| | |||||
* | Fix traverse_trees_recursive() | Yobmod | 2021-07-08 | 1 | -4/+4 |
| | |||||
* | Mmmmm | Yobmod | 2021-07-08 | 1 | -10/+8 |
| | |||||
* | Mak EntryTup a froward ref | Yobmod | 2021-07-08 | 1 | -1/+1 |
| | |||||
* | Mak GitCmdObjectDB a froward ref | Yobmod | 2021-07-08 | 1 | -3/+3 |
| | |||||
* | Finish initial typing of index folder | Yobmod | 2021-07-08 | 1 | -21/+47 |
| | |||||
* | Add types to tree.Tree | Yobmod | 2021-06-24 | 1 | -3/+12 |
| | |||||
* | Remove and replace compat.text_type | Harmon | 2020-02-08 | 1 | -3/+2 |
| | |||||
* | Remove and replace compat.xrange | Harmon | 2020-02-08 | 1 | -2/+1 |
| | |||||
* | Remove and replace compat.bchr | Harmon | 2020-02-08 | 1 | -3/+2 |
| | |||||
* | Remove compat.byte_ord | Harmon | 2020-02-08 | 1 | -5/+4 |
| | |||||
* | removed trailing whitespaces | Pratik Anurag | 2019-10-15 | 1 | -1/+1 |
| | |||||
* | changed unused variables assingment | Pratik Anurag | 2019-10-15 | 1 | -1/+1 |
| | |||||
* | Rewrite unnecessary dict/list/tuple calls as literals | Hugo | 2018-03-18 | 1 | -5/+5 |
| | |||||
* | fix(surrogateescape): enable on py2, fix tests | Sebastian Thiel | 2016-10-16 | 1 | -1/+2 |
| | |||||
* | fix(unicode): use surrogateescape in bytes.decode | Sebastian Thiel | 2016-10-16 | 1 | -5/+1 |
| | | | | | | | | | | | | | | That way, we will try to decode as default encoding (usually utf-8), but allow ourselves to simply keep bytes that don't match within the resulting unicode string. That way, we allow for lossless decode/encode cycles while still assuring that decoding never fails. NOTE: I was too lazy to create a test that would verify it, but manually executed https://github.com/petertodd/gitpython-unicode-error. fixes #532 | ||||
* | src: No PyDev warnings | Kostis Anagnostopoulos | 2016-10-04 | 1 | -2/+2 |
| | | | | | | | | + Mark all unused vars and other non-pep8 (PyDev) warnings + test_utils: + enable & fix forgotten IterableList looped path. + unittestize all assertions. + remote: minor fix progress dispatching unknown err-lines | ||||
* | Make flake8 happy | Sebastian Thiel | 2015-01-06 | 1 | -0/+1 |
| | |||||
* | test_fun works | Sebastian Thiel | 2015-01-05 | 1 | -2/+3 |
| | |||||
* | test_commit works once again | Sebastian Thiel | 2015-01-05 | 1 | -2/+1 |
| | |||||
* | Fixes test_blob and improved commit writing/reading | Sebastian Thiel | 2015-01-05 | 1 | -13/+13 |
| | |||||
* | Dum brute force conversion of all types. | Sebastian Thiel | 2015-01-04 | 1 | -1/+5 |
| | | | | | | However, StringIO really is ByteIO in most cases, and py2.7 should run but doesn't. This should be made work first. | ||||
* | Applied autopep8 | Sebastian Thiel | 2014-11-19 | 1 | -2/+3 |
| | | | | | Commandline was autopep8 -j 8 --max-line-length 120 --in-place --recursive --exclude "*gitdb*,*async*" git/ | ||||
* | pep8 linting (trailing whitespace) | Antoine Musso | 2014-11-16 | 1 | -9/+9 |
| | | | | W291 trailing whitespace | ||||
* | pep8 linting (whitespace before/after) | Antoine Musso | 2014-11-16 | 1 | -8/+8 |
| | | | | | | | | | | | | | 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 Musso | 2014-11-16 | 1 | -3/+3 |
| | | | | | | E301 expected 1 blank line, found 0 E302 expected 2 blank lines, found 1 E303 too many blank lines (n) | ||||
* | pep8 linting (whitespaces) | Antoine Musso | 2014-11-16 | 1 | -22/+22 |
| | | | | | | | | | | | 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 | ||||
* | Merge branch 'sf-master' of https://github.com/johnsca/GitPython into ↵ | Sebastian Thiel | 2014-11-15 | 1 | -3/+8 |
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | johnsca-sf-master Conflicts: git/cmd.py git/objects/commit.py git/objects/fun.py git/objects/util.py git/remote.py git/repo/base.py git/test/lib/helper.py git/test/test_commit.py git/test/test_fun.py git/util.py | ||||
| * | Fix whacky indentation | Tim Van Steenburgh | 2013-04-17 | 1 | -7/+7 |
| | | | | | | | | Signed-off-by: Tim Van Steenburgh <tvansteenburgh@gmail.com> | ||||
| * | Return bytes if object name can't be utf8-decoded | Tim Van Steenburgh | 2013-04-17 | 1 | -3/+7 |
| | | | | | | | | Signed-off-by: Tim Van Steenburgh <tvansteenburgh@gmail.com> | ||||
* | | tabs to 4 spaces - this won't make integrating the patches easier, but it's ↵ | Sebastian Thiel | 2014-02-09 | 1 | -182/+182 |
|/ | | | | 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 Thiel | 2010-11-25 | 1 | -0/+199 |
adjusted |