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.

classification
Title: Python store app launcher has dependency on msvcp140.dll
Type: crash Stage: resolved
Components: Windows Versions: Python 3.9, Python 3.8
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: steve.dower Nosy List: lukasz.langa, miss-islington, paul.moore, steve.dower, tim.golden, zach.ware
Priority: release blocker Keywords: patch

Created on 2019-08-13 15:49 by steve.dower, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 15253 merged steve.dower, 2019-08-13 16:05
PR 15257 merged miss-islington, 2019-08-13 17:34
PR 15756 merged miss-islington, 2019-09-09 11:02
Messages (4)
msg349575 - (view) Author: Steve Dower (steve.dower) * (Python committer) Date: 2019-08-13 15:49
A change made to the python_uwp.vcxproj (or more likely the .cpp file) has introduced a runtime dependency on msvcp140.dll.

As we don't distribute this dependency, and it is not always installed by default, we should statically link it instead.
msg349589 - (view) Author: Steve Dower (steve.dower) * (Python committer) Date: 2019-08-13 17:34
New changeset b0dace3e979381426385c551b116d0f1434096ee by Steve Dower in branch 'master':
bpo-37841: Remove python_uwp dependency on msvcp140.dll (GH-15253)
https://github.com/python/cpython/commit/b0dace3e979381426385c551b116d0f1434096ee
msg349593 - (view) Author: miss-islington (miss-islington) Date: 2019-08-13 17:54
New changeset 853eecc7692503fec8240fd9a74d9f88e0392630 by Miss Islington (bot) in branch '3.8':
bpo-37841: Remove python_uwp dependency on msvcp140.dll (GH-15253)
https://github.com/python/cpython/commit/853eecc7692503fec8240fd9a74d9f88e0392630
msg351434 - (view) Author: miss-islington (miss-islington) Date: 2019-09-09 11:41
New changeset 58a7f809ac978ed54034b7b48f2ea64000aa4661 by Miss Islington (bot) in branch '3.7':
bpo-37841: Remove python_uwp dependency on msvcp140.dll (GH-15253)
https://github.com/python/cpython/commit/58a7f809ac978ed54034b7b48f2ea64000aa4661
History
Date User Action Args
2022-04-11 14:59:19adminsetgithub: 82022
2019-09-09 11:41:31miss-islingtonsetmessages: + msg351434
2019-09-09 11:02:26miss-islingtonsetpull_requests: + pull_request15409
2019-08-17 20:46:32steve.dowersetstatus: open -> closed
2019-08-13 17:54:31miss-islingtonsetnosy: + miss-islington
messages: + msg349593
2019-08-13 17:38:21steve.dowersetresolution: fixed
stage: patch review -> resolved
2019-08-13 17:34:42miss-islingtonsetpull_requests: + pull_request14976
2019-08-13 17:34:10steve.dowersetmessages: + msg349589
2019-08-13 16:05:34steve.dowersetkeywords: + patch
stage: needs patch -> patch review
pull_requests: + pull_request14974
2019-08-13 15:49:27steve.dowercreate