[issue45855] PyCapsule_Import still using PyImport_ImportModuleNoBlock

2021-12-12 Thread Andrew Svetlov
Andrew Svetlov added the comment: New changeset 41026c3155012d6ea50e01205c163b6739c675b8 by Kumar Aditya in branch 'main': bpo-45855: Replaced deprecated `PyImport_ImportModuleNoBlock` with PyImport_ImportModule (GH-30046)

[issue45855] PyCapsule_Import still using PyImport_ImportModuleNoBlock

2021-12-11 Thread Kumar Aditya
Change by Kumar Aditya : -- nosy: +kumaraditya303 nosy_count: 2.0 -> 3.0 pull_requests: +28271 pull_request: https://github.com/python/cpython/pull/30046 ___ Python tracker

[issue45855] PyCapsule_Import still using PyImport_ImportModuleNoBlock

2021-12-08 Thread Andrew Svetlov
Andrew Svetlov added the comment: The main branch has a dozen PyImport_ImportModuleNoBlock() usages. Would you replace them also? -- nosy: +asvetlov versions: +Python 3.11 -Python 3.10 ___ Python tracker

[issue45855] PyCapsule_Import still using PyImport_ImportModuleNoBlock

2021-11-20 Thread Georg Brandl
Change by Georg Brandl : -- keywords: +patch pull_requests: +27907 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/29665 ___ Python tracker

[issue45855] PyCapsule_Import still using PyImport_ImportModuleNoBlock

2021-11-20 Thread Georg Brandl
Georg Brandl added the comment: PR is underway. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue45855] PyCapsule_Import still using PyImport_ImportModuleNoBlock

2021-11-20 Thread Georg Brandl
New submission from Georg Brandl : PyImport_ImportModuleNoBlock is the same as PyImport_ImportModule since 3.3, according to the docs. PyCapsule_Import has a no_block parameter to choose, is still documented as if it is relevant, and the implementation also still uses it. --