summaryrefslogtreecommitdiff
path: root/git/objects/base.py
Commit message (Collapse)AuthorAgeFilesLines
* Fix Sphinx rendering errorsStephan Creutz2022-12-291-0/+1
| | | | | | | | 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.
* Run everything through 'black'Sebastian Thiel2022-05-181-23/+38
| | | | | That way people who use it won't be deterred, while it unifies style everywhere.
* Fix various typosluz paz2022-05-071-1/+1
| | | Found via `codespell -q 3 -S ./git/ext/gitdb,./test/fixtures/reflog_master,./test/fixtures/diff_mode_only,./test/fixtures/reflog_HEAD`
* Add type to objects.base.new()Yobmod2021-07-311-1/+2
|
* Make types in refs compatible with objectsYobmod2021-07-191-3/+3
|
* Type Tree.traverse() betterYobmod2021-06-301-1/+5
|
* Type Traversable.traverse() better, start types of submoduleYobmod2021-06-301-6/+3
|
* Mypy fixesYobmod2021-05-201-1/+1
|
* Add types to objects.blob.pyYobmod2021-05-181-1/+1
|
* Add types to objects.base.pyYobmod2021-05-181-20/+43
|
* add initial types to remote.pyyobmod2021-05-031-1/+2
|
* Spelling fixesVille Skyttä2017-03-091-1/+1
|
* Merge branch 'cygwin' of https://github.com/ankostis/GitPython into ↵Sebastian Thiel2016-10-221-7/+6
|\ | | | | | | ankostis-cygwin
| * src: reduce needless deps to `gitdb.util`Kostis Anagnostopoulos2016-10-161-7/+6
| |
* | Fix some typosSantiago Castro2016-10-201-3/+3
|/
* src: No PyDev warningsKostis Anagnostopoulos2016-10-041-1/+1
| | | | | | | | + 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
* Added advance usage examples to tutorial and made minor fixes.Sebastian Thiel2015-01-211-1/+1
| | | | | | GIT_PYTHON_TRACE would actually fail (now) if we debugged archive operations. Related to #239
* Initial set of documentation improvements, and a fix to the submodule tests.Sebastian Thiel2015-01-211-2/+5
| | | | | | Now travisci tests should work once again. Related to #239
* Added test to verify binary diffs are working as well.Sebastian Thiel2015-01-091-1/+2
| | | | Related to #74
* test_submodule worksSebastian Thiel2015-01-061-1/+1
|
* test_commit works once againSebastian Thiel2015-01-051-3/+4
|
* initial set of adjustments to make (most) imports work.Sebastian Thiel2015-01-041-1/+1
| | | | More to come, especially when it's about strings
* Bumped version, updated changelog, reduced code smellSebastian Thiel2015-01-041-1/+0
| | | | | There is more work to do though, as many imports are still incorrect. Also, there are still print statements
* Applied autopep8Sebastian Thiel2014-11-191-6/+7
| | | | | Commandline was autopep8 -j 8 --max-line-length 120 --in-place --recursive --exclude "*gitdb*,*async*" git/
* pep8 linting (trailing whitespace)Antoine Musso2014-11-161-7/+7
| | | | W291 trailing whitespace
* pep8 linting (whitespace before/after)Antoine Musso2014-11-161-6/+6
| | | | | | | | | | | | | 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/+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 Musso2014-11-161-24/+23
| | | | | | | | | | | 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-155/+155
| | | | probably a good idea to go a little more pep8 (and fix sins of my youth ;) )
* Making comparisons with non-GitPython objects more tolerant.Julien Miotte2011-05-191-0/+4
|
* Moved everything into the git subdirectory - some tests still need to be ↵Sebastian Thiel2010-11-251-0/+172
adjusted