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: IO_REPARSE_TAG_APPEXECLINK is not defined in old Windows SDK
Type: compile error Stage: resolved
Components: Windows Versions: Python 3.8
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: Minmin.Gong, miss-islington, paul.moore, steve.dower, tim.golden, zach.ware
Priority: normal Keywords: patch

Created on 2020-05-19 04:08 by Minmin.Gong, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 20206 merged Minmin.Gong, 2020-05-19 04:09
PR 20217 merged miss-islington, 2020-05-19 12:22
PR 20218 merged miss-islington, 2020-05-19 12:22
Messages (5)
msg369319 - (view) Author: Minmin Gong (Minmin.Gong) * Date: 2020-05-19 04:08
Python 3.8 introduces IO_REPARSE_TAG_APPEXECLINK, but this macro is not defined in Windows SDKs before 10. Need to manually define it.
msg369340 - (view) Author: Steve Dower (steve.dower) * (Python committer) Date: 2020-05-19 12:22
New changeset 711f9e180a48baba62301735b7f1a58ef0d0e93a by Minmin Gong in branch 'master':
bpo-40677: Define IO_REPARSE_TAG_APPEXECLINK explicitly (GH-20206)
https://github.com/python/cpython/commit/711f9e180a48baba62301735b7f1a58ef0d0e93a
msg369343 - (view) Author: Steve Dower (steve.dower) * (Python committer) Date: 2020-05-19 12:25
Thanks!
msg369344 - (view) Author: miss-islington (miss-islington) Date: 2020-05-19 12:39
New changeset 560d6436611900bc23d3dd1158acbe6fa39b2c9b by Miss Islington (bot) in branch '3.8':
bpo-40677: Define IO_REPARSE_TAG_APPEXECLINK explicitly (GH-20206)
https://github.com/python/cpython/commit/560d6436611900bc23d3dd1158acbe6fa39b2c9b
msg369346 - (view) Author: miss-islington (miss-islington) Date: 2020-05-19 12:40
New changeset 76d9a9cdc11c7b0153f9717d6edd1b681d5d1da5 by Miss Islington (bot) in branch '3.9':
bpo-40677: Define IO_REPARSE_TAG_APPEXECLINK explicitly (GH-20206)
https://github.com/python/cpython/commit/76d9a9cdc11c7b0153f9717d6edd1b681d5d1da5
History
Date User Action Args
2022-04-11 14:59:31adminsetgithub: 84854
2020-05-19 12:40:31miss-islingtonsetmessages: + msg369346
2020-05-19 12:39:13miss-islingtonsetmessages: + msg369344
2020-05-19 12:25:54steve.dowersetstatus: open -> closed
resolution: fixed
messages: + msg369343

stage: patch review -> resolved
2020-05-19 12:22:37miss-islingtonsetpull_requests: + pull_request19513
2020-05-19 12:22:30miss-islingtonsetnosy: + miss-islington
pull_requests: + pull_request19512
2020-05-19 12:22:19steve.dowersetmessages: + msg369340
2020-05-19 04:09:24Minmin.Gongsetkeywords: + patch
stage: patch review
pull_requests: + pull_request19503
2020-05-19 04:08:16Minmin.Gongcreate