commit | 705d9d5c41578e2b8755b4333f8c93d04554c5aa | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Tue May 05 09:29:50 2009 +0000 |
committer | Georg Brandl <georg@python.org> | Tue May 05 09:29:50 2009 +0000 |
tree | 17665157f8b4705a0af74a4c4902402a3ebd283f | |
parent | b0f79c8da1db0d7aa44e3465f98508b89532f677 [diff] [blame] |
2.7 -> 3.1 versionchanges.
diff --git a/Doc/library/hashlib.rst b/Doc/library/hashlib.rst index 36f386c..69facce 100644 --- a/Doc/library/hashlib.rst +++ b/Doc/library/hashlib.rst
@@ -105,7 +105,7 @@ concatenation of all the arguments: ``m.update(a); m.update(b)`` is equivalent to ``m.update(a+b)``. - .. versionchanged:: 2.7 + .. versionchanged:: 3.1 The Python GIL is released to allow other threads to run while hash updates on data larger than 2048 bytes is taking place when