-
-
Notifications
You must be signed in to change notification settings - Fork 33.7k
bpo-32165 Fix calling order of PyEval_InitThreads #4602
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
As described in Doc/c-api/init.rst, PyEval_InitThreads() cannot be called before Py_Initialize() function.
|
Hello, and thanks for your contribution! I'm a bot set up to make sure that the project can legally accept your contribution by verifying you have signed the PSF contributor agreement (CLA). Unfortunately we couldn't find an account corresponding to your GitHub username on bugs.python.org (b.p.o) to verify you have signed the CLA (this might be simply due to a missing "GitHub Name" entry in your b.p.o account settings). This is necessary for legal reasons before we can look at your contribution. Please follow the steps outlined in the CPython devguide to rectify this issue. Thanks again to your contribution and we look forward to looking at it! |
|
I've signed the CLA. |
|
Thanks @mrkn for the PR, and @benjaminp for merging it 🌮🎉.. I'm working now to backport this PR to: 3.7, 3.8. |
As described in Doc/c-api/init.rst, PyEval_InitThreads() cannot be called before Py_Initialize() function. (cherry picked from commit 9e61066) Co-authored-by: Kenta Murata <[email protected]>
|
GH-15832 is a backport of this pull request to the 3.8 branch. |
|
GH-15833 is a backport of this pull request to the 3.7 branch. |
As described in Doc/c-api/init.rst, PyEval_InitThreads() cannot be called before Py_Initialize() function. (cherry picked from commit 9e61066) Co-authored-by: Kenta Murata <[email protected]>
|
Thanks @mrkn for the PR, and @benjaminp for merging it 🌮🎉.. I'm working now to backport this PR to: 3.8. |
As described in Doc/c-api/init.rst, PyEval_InitThreads() cannot be called before Py_Initialize() function. (cherry picked from commit 9e61066) Co-authored-by: Kenta Murata <[email protected]>
|
GH-15836 is a backport of this pull request to the 3.8 branch. |
As described in Doc/c-api/init.rst, PyEval_InitThreads() cannot be called before Py_Initialize() function.
As described in
Doc/c-api/init.rst,PyEval_InitThreads()cannot be calledbefore
Py_Initialize()function.https://bugs.python.org/issue32165