This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Thrameos
Recipients Thrameos, WildCard65, paul.moore, steve.dower, tim.golden, zach.ware
Date 2020-12-19.04:21:38
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1608351698.77.0.209512375985.issue42529@roundup.psfhosted.org>
In-reply-to
Content
The last libraries loaded prior to the failure were...

```
20201218192451066 20440 50.60: trclnk64: api-ms-win-eventing-provider-l1-1-0.dll [7ffc4c974108 7ffc4c8b7808]
20201218192451066 20440 50.60: trclnk64:   EventUnregister    0 7ffc4eab37a0
20201218192451066 20440 50.60: trclnk64:   EventRegister    0 7ffc4ea6a640
20201218192451066 20440 50.60: trclnk64:   EventActivityIdControl    0 7ffc4eac6190
20201218192451066 20440 50.60: trclnk64:   EventWriteTransfer    0 7ffc4eab2cf0
20201218192451066 20440 50.60: trclnk64:   EventSetInformation    0 7ffc4ea6a3e0
20201218192451066 20440 50.60: trclnk64: api-ms-win-core-apiquery-l1-1-0.dll [7ffc4c9740e8 7ffc4c8b77e8]
20201218192451066 20440 50.60: trclnk64:   ApiSetQueryApiSetPresence    0 7ffc4ead5030
20201218192451066 20440 50.60: trclnk64: api-ms-win-core-apiquery-l1-1-1.dll [7ffc4c9740f8 7ffc4c8b77f8]
20201218192451066 20440 50.60: trclnk64:   ApiSetQueryApiSetPresenceEx    0 7ffc4eb35730
```

And as far as I can tell that was successful.  Perhaps there is another library at this point, but my reading of the log is that LoadLibraryExW was called run though all required elements to load, got the end section before it started to load dependencies of _jpype, started fetching things that have to do with locale and then hit a failure point inside of LoadLibrary.   If I look at the successful trace then I see the next action is to start linking in C++ symbols.   

But perhaps I am misreading...   Looking farther back in the log, the last LoadLibrary to get called before the failure is.

```
20201218192451054 20440 50.60: trclnk64: 001   LoadLibraryExW(api-ms-win-core-fibers-l1-1-1,0,800)
20201218192451054 20440 50.60: trclnk64: 001   LoadLibraryExW(,,) -> 7ffc4c710000
20201218192451054 20440 50.60: trclnk64: ### 4c710000: C:\WINDOWS\System32\KERNELBASE.dll 002b306b
20201218192451054 20440 50.60: trclnk64: ntdll.dll [7ffc4c974138 7ffc4c8b7838]
```

Fibers?  I have no clue at this point.   Is this a Python bug or a windows bug?
History
Date User Action Args
2020-12-19 04:21:38Thrameossetrecipients: + Thrameos, paul.moore, tim.golden, zach.ware, steve.dower, WildCard65
2020-12-19 04:21:38Thrameossetmessageid: <1608351698.77.0.209512375985.issue42529@roundup.psfhosted.org>
2020-12-19 04:21:38Thrameoslinkissue42529 messages
2020-12-19 04:21:38Thrameoscreate