aboutsummaryrefslogtreecommitdiff
path: root/git/refs/log.py
AgeCommit message (Collapse)Author
2020-02-25Remove now unnecessary explicit Unicode string literal prefixesHarmon
2020-02-08Remove and replace compat.string_typesHarmon
2020-02-08Remove checks for Python 2 and/or 3Harmon
2020-02-08Remove and replace compat.xrangeHarmon
2019-10-28removed extra line as per code reviewAnil Khatri
2019-10-24silence PYL-W0621Anil Khatri
2019-10-24silance Re-defined variable from outer scopeAnil Khatri
2019-10-23resolved all minor issues arised by last fix patchAnil Khatri
2019-10-23fix File opened without the with statementAnil Khatri
2019-10-23fix Loop variable used outside the loopAnil Khatri
2019-10-22fixed classmethod argument PYL-C0202Anil Khatri
2019-10-15removed Unnecessary “else” after “return”Pratik Anurag
2018-03-18Use automatic formattersHugo
2018-03-18Rewrite unnecessary dict/list/tuple calls as literalsHugo
2017-11-27RF: primarily flake8 lints + minor RF to reduce duplication in PATHEXTYaroslav Halchenko
I did keep some "bare" except with catch all Exception: , while tried to disable flake8 complaints where clearly all exceptions are to be catched
2017-03-09Spelling fixesVille Skyttä
2016-10-16src: reduce needless deps to `gitdb.util`Kostis Anagnostopoulos
2016-06-13Fix corruption of the ref logs fileBarry Scott
It must only have the first line of the commit messages, not the while multiple line log.
2015-01-07Made improvements to assure test-cases don't leak file handlesSebastian Thiel
At least leakage is considerably reduced. Additionally, a test-case was added which triggers failure if auto-disposal of resources wouldn't work. Fixes #60
2015-01-07Made sure commits accept unicode or unicode charactersSebastian Thiel
2015-01-07fix pep8firm1
2015-01-07add support of utf8firm1
2015-01-06Fixed log implementation for py3Sebastian Thiel
When merging, I accidentally removed the py3 adjustments
2015-01-06Merge branch 'py3' into 0.3Sebastian Thiel
Conflicts: git/refs/log.py
2015-01-06Make flake8 happySebastian Thiel
2015-01-06test_reflog worksSebastian Thiel
2015-01-05BF: allow log line to have no msg (Close #225)Yaroslav Halchenko
2015-01-05Fixed io types to make tests work on PY2 once again.Sebastian Thiel
Now it's about going through PY3 issues
2015-01-04Dum brute force conversion of all types.Sebastian Thiel
However, StringIO really is ByteIO in most cases, and py2.7 should run but doesn't. This should be made work first.
2015-01-04Bumped version, updated changelog, reduced code smellSebastian Thiel
There is more work to do though, as many imports are still incorrect. Also, there are still print statements
2015-01-04Another travis debugging commitSebastian Thiel
2015-01-04Intermediate debug commit for travis ... do not useSebastian Thiel
2014-12-12encode name of actor to utf-8Kenji Fujiwara
2014-11-19Applied autopep8Sebastian Thiel
Commandline was autopep8 -j 8 --max-line-length 120 --in-place --recursive --exclude "*gitdb*,*async*" git/
2014-11-17Merge branch '0.3' of https://github.com/firm1/GitPython into firm1-0.3Sebastian Thiel
Fixed most pressing issues, more to come in next commit as we introduced a regression here. Conflicts: git/objects/commit.py git/refs/log.py git/refs/symbolic.py
2014-11-16pep8 linting (trailing whitespace)Antoine Musso
W291 trailing whitespace
2014-11-16pep8 linting (whitespace before/after)Antoine Musso
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
2014-11-16pep8 linting (blank lines expectations)Antoine Musso
E301 expected 1 blank line, found 0 E302 expected 2 blank lines, found 1 E303 too many blank lines (n)
2014-11-16pep8 linting (whitespaces)Antoine Musso
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
2014-03-24correct log referencefirm1
2014-02-09tabs to 4 spaces - this won't make integrating the patches easier, but it's ↵Sebastian Thiel
probably a good idea to go a little more pep8 (and fix sins of my youth ;) )
2011-06-08Fixed critical issue that would cause a string to be passed to methods that ↵Sebastian Thiel
expect a stream
2011-06-08log: non-existing logs no longer throw an exception, but are ignored. Fixed ↵Sebastian Thiel
critical bug which caused packed-ref files to be written with native line endings, which made git fail to parse it. I wonder why I never noticed this before, or ignored it. Unbelievable \!
2010-11-25Moved everything into the git subdirectory - some tests still need to be ↵Sebastian Thiel
adjusted