{{ message }}
bpo-42692: fix __builtin_available check on older compilers#23873
Merged
miss-islington merged 2 commits intoJan 4, 2021
Merged
bpo-42692: fix __builtin_available check on older compilers#23873miss-islington merged 2 commits into
miss-islington merged 2 commits into
Conversation
A compiler that doesn't define __has_builtin will error out when it is used on the same line as the check for it.
ronaldoussoren
approved these changes
Dec 22, 2020
ronaldoussoren
left a comment
Contributor
There was a problem hiding this comment.
Good catch.
Sorry, something went wrong.
1 similar comment
Contributor
|
Sorry, I can't merge this PR. Reason: |
Sorry, something went wrong.
Contributor
|
Sorry, I can't merge this PR. Reason: |
Sorry, something went wrong.
Contributor
|
Thanks @jmroot for the PR 🌮🎉.. I'm working now to backport this PR to: 3.9. |
Sorry, something went wrong.
miss-islington
pushed a commit
to miss-islington/cpython
that referenced
this pull request
Jan 4, 2021
adorilson
pushed a commit
to adorilson/cpython
that referenced
this pull request
Mar 13, 2021
…-23873) A compiler that doesn't define `__has_builtin` will error out when it is used on the same line as the check for it. Automerge-Triggered-By: GH:ronaldoussoren
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.
A compiler that doesn't define
__has_builtinwill error out when it isused on the same line as the check for it.
https://bugs.python.org/issue42692
Automerge-Triggered-By: GH:ronaldoussoren