msg337698 - (view) |
Author: Phillip M. Feldman (Phillip.M.Feldman@gmail.com) |
Date: 2019-03-11 21:43 |
I have a module that contains an import statement that imports a large number of items. This import was failing with the following error message: ImportError: DLL load failed: The specified module could not be found. The message would be so much more helpful if it named the offending DLL and module. |
|
|
msg337757 - (view) |
Author: Steve Dower (steve.dower) *  |
Date: 2019-03-12 15:42 |
I agree. Unfortunately, the operating system does not provide this information. The best I can offer is to run Process Monitor [1] and watch its logs. It should show the paths it attempts to access. [1]: http://technet.microsoft.com/en-us/sysinternals/bb896645 |
|
|
msg337861 - (view) |
Author: Phillip M. Feldman (Phillip.M.Feldman@gmail.com) |
Date: 2019-03-13 16:40 |
Hello Steve, I'm buying only 50 percent of this. The Python interpreter must know what module it was trying to import, and can at least be able to report that. Phillip On Tue, Mar 12, 2019 at 8:42 AM Steve Dower <report@bugs.python.org> wrote: > > Steve Dower <steve.dower@python.org> added the comment: > > I agree. Unfortunately, the operating system does not provide this > information. > > The best I can offer is to run Process Monitor [1] and watch its logs. It > should show the paths it attempts to access. > > [1]: http://technet.microsoft.com/en-us/sysinternals/bb896645 > > ---------- > resolution: -> third party > stage: -> resolved > status: open -> closed > > _______________________________________ > Python tracker <report@bugs.python.org> > <https://bugs.python.org/issue36266> > _______________________________________ > |
|
|
msg337870 - (view) |
Author: Steve Dower (steve.dower) *  |
Date: 2019-03-13 19:28 |
You mean like this: >>> import _ssl Traceback (most recent call last): File "", line 1, in ImportError: DLL load failed: The specified module could not be found. Should include "_ssl" somewhere in the message? That's easy enough, but it's never been what anyone else has meant when they've asked for this, so I assumed you wanted the more helpful message (where it tells you exactly which DLL is missing - libcrypto-1_1-x64.dll in this case - and *that's* the one we can't do). |
|
|
msg337898 - (view) |
Author: Phillip M. Feldman (Phillip.M.Feldman@gmail.com) |
Date: 2019-03-14 06:47 |
'Should include "_ssl" somewhere in the message?' Exactly so. If a given import statement imports 30 items, it would be helpful to know which one caused the hickup. Thanks! On Wed, Mar 13, 2019 at 12:28 PM Steve Dower <report@bugs.python.org> wrote: > > Steve Dower <steve.dower@python.org> added the comment: > > You mean like this: > > >>> import _ssl > Traceback (most recent call last): > File "", line 1, in > ImportError: DLL load failed: The specified module could not be found. > > Should include "_ssl" somewhere in the message? That's easy enough, but > it's never been what anyone else has meant when they've asked for this, so > I assumed you wanted the more helpful message (where it tells you exactly > which DLL is missing - libcrypto-1_1-x64.dll in this case - and *that's* > the one we can't do). > > ---------- > > _______________________________________ > Python tracker <report@bugs.python.org> > <https://bugs.python.org/issue36266> > _______________________________________ > |
|
|
msg337918 - (view) |
Author: Steve Dower (steve.dower) *  |
Date: 2019-03-14 14:27 |
Okay, in that case we're just adding `shortname` into the formatted `message` in _PyImport_FindSharedFuncptrWindows in Python/dynload_win.c I've marked this as "easy (C)" as it seems like a good first contribution for someone. |
|
|
msg338013 - (view) |
Author: Terry J. Reedy (terry.reedy) *  |
Date: 2019-03-15 18:34 |
Phillip, when responding by email, please removed the quoted email (except possible for a line or 2) as it becomes noise when your email is placed on the web page. You can see the effect on https://bugs.python.org/issue36266 |
|
|
msg349244 - (view) |
Author: Srinivas Nyayapati (shireenrao) * |
Date: 2019-08-08 18:07 |
I just submitted a PR for this issue. |
|
|
msg349573 - (view) |
Author: Srinivas Nyayapati (shireenrao) * |
Date: 2019-08-13 15:43 |
can a reviewer please take a look to my PR? |
|
|
msg349906 - (view) |
Author: Steve Dower (steve.dower) *  |
Date: 2019-08-17 20:50 |
New changeset 24fe46081be3d1c01b3d21cb39bc3492ab4485a3 by Steve Dower (shireenrao) in branch 'master': bpo-36266: Add module name in ImportError when DLL not found on Windows (GH-15180) https://github.com/python/cpython/commit/24fe46081be3d1c01b3d21cb39bc3492ab4485a3 |
|
|
msg349907 - (view) |
Author: Steve Dower (steve.dower) *  |
Date: 2019-08-17 20:53 |
Thanks for the contribution! |
|
|
msg349908 - (view) |
Author: miss-islington (miss-islington) |
Date: 2019-08-17 21:11 |
New changeset 786a4e1cef3eda8f434613d3801a5c7565fb5cd8 by Miss Islington (bot) in branch '3.8': bpo-36266: Add module name in ImportError when DLL not found on Windows (GH-15180) https://github.com/python/cpython/commit/786a4e1cef3eda8f434613d3801a5c7565fb5cd8 |
|
|