]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-39877: Remove useless PyEval_InitThreads() calls (GH-18883)
authorVictor Stinner <vstinner@python.org>
Mon, 9 Mar 2020 19:56:57 +0000 (20:56 +0100)
committerGitHub <noreply@github.com>
Mon, 9 Mar 2020 19:56:57 +0000 (20:56 +0100)
commit3225b9f9739cd4bcca372d0fa939cea1ae5c6402
tree008faa6d058d9f9e449bf2113287aa5e30c8a35f
parenteebaa9bfc593d5a46b293c1abd929fbfbfd28199
bpo-39877: Remove useless PyEval_InitThreads() calls (GH-18883)

Py_Initialize() calls PyEval_InitThreads() since Python 3.7. It's no
longer needed to call it explicitly.
Include/ceval.h
Lib/test/test_embed.py
Modules/_ctypes/_ctypes.c
Modules/_ctypes/callbacks.c
Modules/_testcapimodule.c
Modules/_threadmodule.c
Programs/_testembed.c
Python/ceval.c