-
-
Notifications
You must be signed in to change notification settings - Fork 31.7k
Py_CompileString and PyParser_SimpleParseString not exported in python38.dll #81814
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
Comments
Py_CompileString and PyParser_SimpleParseString and possibly other related functions are not exported in Python 3.8 b2 DLL. This is unintentional, not documented and unnecessarily breaks backward compatibility. bpo-37189 was similar and related to PyRun_String. This was fixed in Python 3.8b2. Please provide fixes to the above two functions as well. To confirm the error:
>>> import ctypes
>>> api = ctypes.pythonapi
>>> hasattr(api, "PyParser_SimpleParseString")
False
>>> hasattr(api2, "Py_CompileString")
False |
Py_CompileStringFlags is not exported either. |
I can take this up. |
Python 3.8 was released yesterday, but this issue was unfortunately not addressed, making it as an embedded runtime. Are there plans to fix this for a minor 3.8 release? Thanks! |
I've flagged this as a release blocker so the Release Manager can make a call about whether this should hold up future releases. |
Aha, finally more diversity of languages in commit messages! :-D |
On Tue, Nov 5, 2019, at 03:12, STINNER Victor wrote:
This kind of orthography is allowable if obscure in English. https://en.wikipedia.org/wiki/Diaeresis_(diacritic)#English |
pythonrun.h
. #17056pythonrun.h
. (GH-17056) #17057Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.
Show more details
GitHub fields:
bugs.python.org fields:
The text was updated successfully, but these errors were encountered: