]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-40839: PyDict_GetItem() requires the GIL (GH-20580)
authorVictor Stinner <vstinner@python.org>
Tue, 2 Jun 2020 12:03:25 +0000 (14:03 +0200)
committerGitHub <noreply@github.com>
Tue, 2 Jun 2020 12:03:25 +0000 (14:03 +0200)
commit59d3dce69b0a4f6ee17578ae68037cc7ae90936f
tree72eaa3932f9ff7fc0a13752a1fe706666c6e87dd
parent85339f5c220a5e79c47c3a33c93f1dca5c59c52e
bpo-40839: PyDict_GetItem() requires the GIL (GH-20580)

Calling PyDict_GetItem() without GIL held had been allowed for
historical reason. It is no longer allowed.
Doc/c-api/dict.rst
Doc/whatsnew/3.10.rst
Misc/NEWS.d/next/C API/2020-06-01-20-47-49.bpo-40839.bAi52Z.rst [new file with mode: 0644]
Objects/dictobject.c