diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2010-06-03 18:21:05 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2010-06-03 18:21:05 +0200 |
commit | 26e138cb47dccc859ff219f108ce9b7d96cbcbcd (patch) | |
tree | db40b36d8265f6e2d55a5e4b6f9a6e4a991d2819 /lib/git/odb/db.py | |
parent | 38d59fc8ccccae8882fa48671377bf40a27915a7 (diff) | |
download | gitpython-26e138cb47dccc859ff219f108ce9b7d96cbcbcd.tar.gz |
odb: fixed streamed decompression reader ( specific tests would still be missing ) and added performance tests which are extremely promising
Diffstat (limited to 'lib/git/odb/db.py')
-rw-r--r-- | lib/git/odb/db.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/git/odb/db.py b/lib/git/odb/db.py index 5c50a512..e656b2b5 100644 --- a/lib/git/odb/db.py +++ b/lib/git/odb/db.py @@ -91,8 +91,8 @@ class iObjectDBW(object): they where given. :param iter_info: iterable yielding tuples containing the type_string size_in_bytes and the steam with the content data. - :param dry_run: see ``to_obj`` - :param sha_as_hex: see ``to_obj`` + :param dry_run: see ``to_object`` + :param sha_as_hex: see ``to_object`` :param max_threads: if < 1, any number of threads may be started while processing the request, otherwise the given number of threads will be started. :raise IOError: if data could not be written""" |