[issue45893] Azure Pipelines currently failing

2021-11-24 Thread Christian Heimes
Christian Heimes added the comment: You are welcome! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue45893] Azure Pipelines currently failing

2021-11-24 Thread miss-islington
miss-islington added the comment: New changeset cd85d91bc66a587ce2ba668c897a5ecf118733cc by Miss Islington (bot) in branch '3.10': bpo-45893: Add missing extern C to initconfig.h (GH-29761) https://github.com/python/cpython/commit/cd85d91bc66a587ce2ba668c897a5ecf118733cc -- ___

[issue45893] Azure Pipelines currently failing

2021-11-24 Thread STINNER Victor
STINNER Victor added the comment: > Seems we lost the C++ handling in Include/cpython/initconfig.h I was never in initconfig.h since the PEP 587 (PyConfig C API) was implemented. I'm not sure why the build *started* to fail on Windows. Thanks for fixing the issue ;-) -- ___

[issue45893] Azure Pipelines currently failing

2021-11-24 Thread miss-islington
Change by miss-islington : -- keywords: +patch nosy: +miss-islington nosy_count: 4.0 -> 5.0 pull_requests: +28003 pull_request: https://github.com/python/cpython/pull/29765 ___ Python tracker

[issue45893] Azure Pipelines currently failing

2021-11-24 Thread Christian Heimes
Christian Heimes added the comment: New changeset f4afc53bf68c8ded20b281cd1baa88a679b4a3fd by Christian Heimes in branch 'main': bpo-45893: Add missing extern C to initconfig.h (GH-29761) https://github.com/python/cpython/commit/f4afc53bf68c8ded20b281cd1baa88a679b4a3fd -- _

[issue45893] Azure Pipelines currently failing

2021-11-24 Thread Christian Heimes
Change by Christian Heimes : -- keywords: -patch type: -> compile error versions: +Python 3.10 ___ Python tracker ___ ___ Python-b

[issue45893] Azure Pipelines currently failing

2021-11-24 Thread Christian Heimes
Change by Christian Heimes : -- keywords: +patch pull_requests: +27999 stage: -> patch review pull_request: https://github.com/python/cpython/pull/29761 ___ Python tracker ___

[issue45893] Azure Pipelines currently failing

2021-11-24 Thread Guido van Rossum
Guido van Rossum added the comment: Christian thinks that a PR by Victor broke this (GH-29488 / bpo-39026) -- nosy: +vstinner ___ Python tracker ___ __

[issue45893] Azure Pipelines currently failing

2021-11-24 Thread Steve Dower
Steve Dower added the comment: Also, we should define $env:IncludeUWP="true" in the Windows PR tests. That will build extra binaries every time (that we ship in the Windows Store) and would catch this issue earlier. -- ___ Python tracker

[issue45893] Azure Pipelines currently failing

2021-11-24 Thread Steve Dower
Steve Dower added the comment: Seems we lost the C++ handling in Include/cpython/initconfig.h: #ifdef __cplusplus extern "C" { #endif #ifdef __cplusplus } #endif -- keywords: +easy (C) versions: +Python 3.11 ___ Python tracker

[issue45893] Azure Pipelines currently failing

2021-11-24 Thread Guido van Rossum
Change by Guido van Rossum : -- nosy: +christian.heimes ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https

[issue45893] Azure Pipelines currently failing

2021-11-24 Thread Guido van Rossum
New submission from Guido van Rossum : E.g. https://dev.azure.com/Python/cpython/_build/results?buildId=92084&view=results -- assignee: steve.dower components: Build messages: 406945 nosy: gvanrossum, steve.dower priority: high severity: normal status: open title: Azure Pipelines curre