-
-
Notifications
You must be signed in to change notification settings - Fork 32k
C API: Deprecate PyImport_ImportModuleNoBlock() function #105396
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
Deprecate the PyImport_ImportModuleNoBlock() function which is just an alias to PyImport_ImportModule() since Python 3.3.
It's related to this main importlib change in Python 3.3: A Finer-Grained Import Lock
Since the function is part of the stable ABI, it has to stay at the ABI level, but will be removed from the C API level. |
Deprecate the PyImport_ImportModuleNoBlock() function which is just an alias to PyImport_ImportModule() since Python 3.3.
The two are aliases since Python 3.3. Details see: python/cpython#105396
The two are aliases since Python 3.3. Details see: python/cpython#105396
Uh oh!
There was an error while loading. Please reload this page.
The PyImport_ImportModuleNoBlock() function is an alias to PyImport_ImportModule() since Python 3.3. I propose to deprecate it and schedule its removal in Python 3.15.
Linked PRs
The text was updated successfully, but these errors were encountered: