summaryrefslogtreecommitdiff
path: root/git/test/test_util.py
Commit message (Collapse)AuthorAgeFilesLines
* Dum brute force conversion of all types.Sebastian Thiel2015-01-041-1/+2
| | | | | | However, StringIO really is ByteIO in most cases, and py2.7 should run but doesn't. This should be made work first.
* Removed 'from X import *' whereever possibleSebastian Thiel2015-01-041-4/+17
|
* 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
* Simplified parse_date implementationSebastian Thiel2014-12-191-2/+2
| | | | | This allows to deal with the previous UTC issue without manually reversing timezone adjustments
* BF: adjust mktime output for the local offset (Close #218)Yaroslav Halchenko2014-12-181-1/+1
|
* Applied autopep8Sebastian Thiel2014-11-191-2/+2
| | | | | Commandline was autopep8 -j 8 --max-line-length 120 --in-place --recursive --exclude "*gitdb*,*async*" git/
* pep8 linting (whitespace before/after)Antoine Musso2014-11-161-3/+3
| | | | | | | | | | | | | 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-1/+2
| | | | | | 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-29/+28
| | | | | | | | | | | 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-143/+143
| | | | probably a good idea to go a little more pep8 (and fix sins of my youth ;) )
* util: Added test for iterable list, and implemented __contains__ and __del__ ↵Sebastian Thiel2011-06-081-1/+58
| | | | functionality
* Moved everything into the git subdirectory - some tests still need to be ↵Sebastian Thiel2010-11-251-0/+109
adjusted