diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2010-06-24 19:41:43 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2010-06-24 19:41:46 +0200 |
commit | feb1ea0f4aacb9ea6dc4133900e65bf34c0ee02d (patch) | |
tree | 042d920af46e7a5774107e390a3962afa8390388 /lib/git/objects/fun.py | |
parent | 55dcc17c331f580b3beeb4d5decf64d3baf94f2e (diff) | |
download | gitpython-feb1ea0f4aacb9ea6dc4133900e65bf34c0ee02d.tar.gz |
GitCmdStreamReader: fixed terrible bug which only kicked in if the stream was actually empty. This is a rare case that can happen during stream testing. Theoretically there shouldn't be any empty streams of course, but practically they do exist sometimes ;); fixed stream.seek implementation, which previously used seek on standard output
Improved GitCmd error handling
Diffstat (limited to 'lib/git/objects/fun.py')
-rw-r--r-- | lib/git/objects/fun.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/git/objects/fun.py b/lib/git/objects/fun.py index c2e7358f..5b39ab0c 100644 --- a/lib/git/objects/fun.py +++ b/lib/git/objects/fun.py @@ -1,6 +1,7 @@ """Module with functions which are supposed to be as fast as possible""" -__all__ = ('tree_to_stream', 'tree_entries_from_data') +__all__ = ('tree_to_stream', 'tree_entries_from_data', 'traverse_trees_recursive', + 'traverse_tree_recursive') from stat import S_ISDIR |