Conversation
ZeroIntensity
left a comment
There was a problem hiding this comment.
This function is untested, hardly used, and doesn't seem particularly useful to anyone. I think we should just soft-deprecate it rather than take on maintenance.
|
A Python core developer has requested some changes be made to your pull request before we can consider merging it. If you could please address their requests along with any other requests in other reviews from core developers that would be appreciated. Once you have made the requested changes, please leave a comment on this pull request containing the phrase |
|
Closing in favor of #157776. Removing the function is better than fixing the call in it. |
The Windows branch of
ctypes.util.test()callscdll.load("msvcrt"), butLibraryLoaderhas noloadmethod, so the call ends up in__getattr__and raisesAttributeError: load.Use
LoadLibrary, which is what every other branch of the same function already does.