diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2010-06-02 23:53:29 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2010-06-02 23:53:29 +0200 |
commit | 6f8ce8901e21587cd2320562df412e05b5ab1731 (patch) | |
tree | 4376f34c327896f7951bc1af7c7d93896decf863 /lib/git/odb/utils.py | |
parent | 8b86f9b399a8f5af792a04025fdeefc02883f3e5 (diff) | |
download | gitpython-6f8ce8901e21587cd2320562df412e05b5ab1731.tar.gz |
added frame for object reading, including simple test
Diffstat (limited to 'lib/git/odb/utils.py')
-rw-r--r-- | lib/git/odb/utils.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/git/odb/utils.py b/lib/git/odb/utils.py index 04d3eaba..d88dca1a 100644 --- a/lib/git/odb/utils.py +++ b/lib/git/odb/utils.py @@ -22,6 +22,7 @@ def to_bin_sha(sha): return hex_to_bin(sha) # os shortcuts +getsize = os.path.getsize exists = os.path.exists mkdir = os.mkdir isdir = os.path.isdir |