aboutsummaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorRonald Oussoren <ronaldoussoren@mac.com>2021-02-01 04:29:44 +0100
committerGitHub <noreply@github.com>2021-01-31 22:29:44 -0500
commit49926cf2bcc8b44d9b8f148d81979ada191dd9d5 (patch)
treebe9a04e3ca1007a0230b6dcf2cbab176aead735e /Misc
parentbpo-42927: Update the What's new entry for LOAD_ATTR optimizations (GH-24383) (diff)
downloadcpython-49926cf2bcc8b44d9b8f148d81979ada191dd9d5.tar.gz
cpython-49926cf2bcc8b44d9b8f148d81979ada191dd9d5.tar.bz2
cpython-49926cf2bcc8b44d9b8f148d81979ada191dd9d5.zip
bpo-42504: Ensure that get_config_var('MACOSX_DEPLOYMENT_TARGET') is a string (GH-24341)
* bpo-42504: Ensure that get_config_var('MACOSX_DEPLOYMENT_TARGET') is a string
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/macOS/2021-01-26-14-36-11.bpo-42504.ZxWt71.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/macOS/2021-01-26-14-36-11.bpo-42504.ZxWt71.rst b/Misc/NEWS.d/next/macOS/2021-01-26-14-36-11.bpo-42504.ZxWt71.rst
new file mode 100644
index 00000000000..a47776effe9
--- /dev/null
+++ b/Misc/NEWS.d/next/macOS/2021-01-26-14-36-11.bpo-42504.ZxWt71.rst
@@ -0,0 +1,3 @@
+Ensure that the value of
+sysconfig.get_config_var('MACOSX_DEPLOYMENT_TARGET') is always a string,
+even in when the value is parsable as an integer.