diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2015-01-06 14:20:58 +0100 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2015-01-06 14:20:58 +0100 |
commit | 95bb489a50f6c254f49ba4562d423dbf2201554f (patch) | |
tree | 2f1a172cc8a81297dc16ae9634887ff7cffd93e7 /doc/source | |
parent | 4cfc682ff87d3629b31e0196004d1954810b206c (diff) | |
download | gitpython-95bb489a50f6c254f49ba4562d423dbf2201554f.tar.gz |
test_tree works
Diffstat (limited to 'doc/source')
-rw-r--r-- | doc/source/changes.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/source/changes.rst b/doc/source/changes.rst index 3b62ddc8..bb301f87 100644 --- a/doc/source/changes.rst +++ b/doc/source/changes.rst @@ -7,6 +7,7 @@ Changelog * Internally, hexadecimal SHA1 are treated as ascii encoded strings. Binary SHA1 are treated as bytes. * Id attribute of Commit objects is now `hexsha`, instead of `binsha`. The latter makes no sense in python 3 and I see no application of it anyway besides its artificial usage in test cases. * **IMPORTANT**: If you were using the config_writer(), you implicitly relied on __del__ to work as expected to flush changes. To be sure changes are flushed under PY3, you will have to call the new `release()` method to trigger a flush. For some reason, __del__ is not called necessarily anymore when a symbol goes out of scope. +* The `Tree` now has a `.join('name')` method which is equivalent to `tree / 'name'` 0.3.3 ===== |