[issue4821] Patches for thread-support in built-in SHA modules

2016-06-12 Thread Christian Heimes
Changes by Christian Heimes : -- assignee: christian.heimes -> ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue4821] Patches for thread-support in built-in SHA modules

2016-04-22 Thread Christian Heimes
Changes by Christian Heimes : -- versions: +Python 3.6 -Python 3.4 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue4821] Patches for thread-support in built-in SHA modules

2012-10-05 Thread Christian Heimes
Christian Heimes added the comment: I'll integrate your patch once I'm done with my SHA-3 patch #16113. I'm using parts of your patch in my new sha3 code to release the GIL. I'll also check if I can share more code between the SHA family modules. -- assignee: -> christian.heimes compo

[issue4821] Patches for thread-support in built-in SHA modules

2012-10-04 Thread Christian Heimes
Changes by Christian Heimes : -- versions: +Python 3.4 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://ma

[issue4821] Patches for thread-support in built-in SHA modules

2009-02-11 Thread Gregory P. Smith
Gregory P. Smith added the comment: fyi - I took care of the unicode data acceptance issue for all hashlib related modules in the py3k branch in r69524. Yes, the hashlib modules have a -lot- of code in common. Refactoring that would be nice but i haven't looked into it. I at least moved the

[issue4821] Patches for thread-support in built-in SHA modules

2009-01-29 Thread Jesús Cea Avión
Changes by Jesús Cea Avión : -- nosy: +jcea ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

[issue4821] Patches for thread-support in built-in SHA modules

2009-01-16 Thread STINNER Victor
STINNER Victor added the comment: sha1module_small_locks.diff patch is very similar to the changes made in #4751, except: - SHA1_GIL_MINSIZE is 8192 whereas HASHLIB_GIL_MINSIZE is 2048 - There is no test for PyThread_allocate_lock() failure Instead of copy/paste code in hashlib, sha1, sha256

[issue4821] Patches for thread-support in built-in SHA modules

2009-01-05 Thread STINNER Victor
STINNER Victor added the comment: Oops, it's not a duplicate /o\ But it may solves #3745 (reject unicode in sha256). ___ Python tracker ___ __

[issue4821] Patches for thread-support in built-in SHA modules

2009-01-05 Thread STINNER Victor
STINNER Victor added the comment: This patch is a duplicate of #3745. -- nosy: +haypo ___ Python tracker ___ ___ Python-bugs-list mail

[issue4821] Patches for thread-support in built-in SHA modules

2009-01-03 Thread Lukas Lueg
Changes by Lukas Lueg : Added file: http://bugs.python.org/file12571/sha512module_small_locks.diff ___ Python tracker ___ ___ Python-bugs-list

[issue4821] Patches for thread-support in built-in SHA modules

2009-01-03 Thread Lukas Lueg
Changes by Lukas Lueg : Added file: http://bugs.python.org/file12570/sha256module_small_locks.diff ___ Python tracker ___ ___ Python-bugs-list

[issue4821] Patches for thread-support in built-in SHA modules

2009-01-03 Thread Lukas Lueg
Changes by Lukas Lueg : -- keywords: +patch Added file: http://bugs.python.org/file12569/sha1module_small_locks.diff ___ Python tracker ___ ___

[issue4821] Patches for thread-support in built-in SHA modules

2009-01-03 Thread Lukas Lueg
New submission from Lukas Lueg : Here is the follow-up to issue #4818. The patches attached allow the built-in SHA modules to release the GIL. Also the build-in SHA modules will now no longer accept "s#" as input. Input is parsed just as in the openssl-driven classes where unicode-objects are ex