aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-01-07Fix flake8Sebastian Thiel
2015-01-07Using a wait-group seems to properly sync the threads for buffer depletionSebastian Thiel
2015-01-07Implemented threaded version of pipe-drainingSebastian Thiel
2015-01-07Implemented non-blocking operations using poll()Sebastian Thiel
Next up is using threads
2015-01-07Make sure we ignore WindowsErrors too, in case the process is already deadSebastian Thiel
Fixes #140
2015-01-07Once again, make flake8 happySebastian Thiel
2015-01-07This should fix flake8 on py3Sebastian Thiel
See #177
2015-01-07Added flake8 testing to travisSebastian Thiel
Fixes #177
2015-01-06Updated branch in coverage descriptionSebastian Thiel
2015-01-06Fixed up coverage configurationSebastian Thiel
Also improved sublime text project
2015-01-06Fixed up travis to checkout master nowSebastian Thiel
2015-01-06Updated readme to better represent current stateSebastian Thiel
And to trigger travis to build and work ...
2015-01-06Bumped gitdb requirement.0.3.4Sebastian Thiel
This should help getting the latest version
2015-01-06Improved windows test suite.Sebastian Thiel
Also added code to show how to deal with #147
2015-01-06Fixed log implementation for py3Sebastian Thiel
When merging, I accidentally removed the py3 adjustments
2015-01-06Adjusted travis to test for python 3 as wellSebastian Thiel
2015-01-06Merge branch 'py3' into 0.3Sebastian Thiel
Conflicts: git/refs/log.py
2015-01-06Bumped version to 0.3.4Sebastian Thiel
2015-01-06Fixed test_git once againSebastian Thiel
2015-01-06fixed test_gitSebastian Thiel
2015-01-06Make flake8 happySebastian Thiel
2015-01-06test_streams worksSebastian Thiel
However, there is a performance regression in test-odb
2015-01-06test_base worksSebastian Thiel
2015-01-06test_tree worksSebastian Thiel
2015-01-06test_submodule worksSebastian Thiel
2015-01-06test_stat worksSebastian Thiel
2015-01-06test_repo worksSebastian Thiel
2015-01-06test_remote worksSebastian Thiel
And I have to wonder why git-daemon serves under py2.7, but really wants receive-pack to be allowed under 3.4. Maybe it's a repository override which for some reason doesn't work in py3.4 ? Maybe because the change is not flushed ?
2015-01-06test_refs worksSebastian Thiel
2015-01-06test_reflog worksSebastian Thiel
2015-01-06test_index worksSebastian Thiel
2015-01-05test_git worksSebastian Thiel
2015-01-05test_fun worksSebastian Thiel
2015-01-05test_diff worksSebastian Thiel
2015-01-05test_commit works once againSebastian Thiel
2015-01-05Fixes test_blob and improved commit writing/readingSebastian Thiel
2015-01-05Added test of #147 to verify it works.Sebastian Thiel
Applied a few more fixes to commit implementation, possibly not the last
2015-01-05Intermediate commit: test_config and test_actor worksSebastian Thiel
Kind of tackling the tasks step by step, picking low-hanging fruit first, or the ones that everyone depends on
2015-01-05Merge pull request #226 from yarikoptic/bf-tab-log-linesSebastian Thiel
BF: allow log line to have no msg (Close #225)
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-04initial set of adjustments to make (most) imports work.Sebastian Thiel
More to come, especially when it's about strings
2015-01-04And apparently, I broken travis ... this should cure itSebastian Thiel
2015-01-04Removed unnecessary (non-gitpython) tests and fixed flake80.3.3Sebastian Thiel
2015-01-04Replaced ordered dict with standard version; used logging moduleSebastian Thiel
All performance tests still print to stderr, but do so in a py3 compatible way
2015-01-04Removed 'from X import *' whereever possibleSebastian Thiel
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-04Applied autopep8Sebastian Thiel
autopep8 -v -j 8 --max-line-length 120 --in-place --recursive
2015-01-04Let's hope travis works nowSebastian Thiel