[issue44145] hmac.update is not releasing the GIL when openssl's hmac is used

2021-07-07 Thread Gregory P. Smith
Change by Gregory P. Smith : -- resolution: -> fixed stage: patch review -> commit review status: open -> closed ___ Python tracker ___

[issue44145] hmac.update is not releasing the GIL when openssl's hmac is used

2021-05-17 Thread miss-islington
miss-islington added the comment: New changeset 2057ce87498fc30bcd358286175fe5ea34eac9da by Miss Islington (bot) in branch '3.9': [3.9] bpo-44145: Release the GIL around HMAC_Update. (GH-26157) (GH-26188) https://github.com/python/cpython/commit/2057ce87498fc30bcd358286175fe5ea34eac9da

[issue44145] hmac.update is not releasing the GIL when openssl's hmac is used

2021-05-17 Thread miss-islington
miss-islington added the comment: New changeset 60fa8b32dbfe452b81c44d2b8a96325fb19a206d by Miss Islington (bot) in branch '3.10': bpo-44145: Release the GIL around HMAC_Update. (GH-26157) https://github.com/python/cpython/commit/60fa8b32dbfe452b81c44d2b8a96325fb19a206d --

[issue44145] hmac.update is not releasing the GIL when openssl's hmac is used

2021-05-17 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 2.0 -> 3.0 pull_requests: +24804 pull_request: https://github.com/python/cpython/pull/26187 ___ Python tracker

[issue44145] hmac.update is not releasing the GIL when openssl's hmac is used

2021-05-17 Thread miss-islington
Change by miss-islington : -- pull_requests: +24805 pull_request: https://github.com/python/cpython/pull/26188 ___ Python tracker ___

[issue44145] hmac.update is not releasing the GIL when openssl's hmac is used

2021-05-16 Thread Gregory P. Smith
Change by Gregory P. Smith : -- keywords: +patch pull_requests: +24791 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/26157 ___ Python tracker

[issue44145] hmac.update is not releasing the GIL when openssl's hmac is used

2021-05-16 Thread Gregory P. Smith
New submission from Gregory P. Smith : This prevents parallel hmac computations. see michaelforney's comment left on https://github.com/python/cpython/pull/20129 where the problem was introduced when adding support for using OpenSSL's HMAC implementations. easy fix. PR coming. We don't