aboutsummaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorJoshua Root <jmr@macports.org>2021-01-04 21:36:58 +1100
committerGitHub <noreply@github.com>2021-01-04 02:36:58 -0800
commitdf21f502fdccec234282bf0a211af979fd23def4 (patch)
tree60af144fe8a558722a779bc8ed4ef06ca0dab876 /Misc
parentbpo-42789: Enable using /dev/tty in test_curses. (GH-24085) (diff)
downloadcpython-df21f502fdccec234282bf0a211af979fd23def4.tar.gz
cpython-df21f502fdccec234282bf0a211af979fd23def4.tar.bz2
cpython-df21f502fdccec234282bf0a211af979fd23def4.zip
bpo-42692: fix __builtin_available check on older compilers (GH-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
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Build/2021-01-04-05-07-30.bpo-42692.OO11SN.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Build/2021-01-04-05-07-30.bpo-42692.OO11SN.rst b/Misc/NEWS.d/next/Build/2021-01-04-05-07-30.bpo-42692.OO11SN.rst
new file mode 100644
index 00000000000..91582b945b8
--- /dev/null
+++ b/Misc/NEWS.d/next/Build/2021-01-04-05-07-30.bpo-42692.OO11SN.rst
@@ -0,0 +1 @@
+Fix __builtin_available check on older compilers. Patch by Joshua Root.