diff options
author | Victor Stinner <vstinner@redhat.com> | 2019-04-24 14:10:09 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-24 14:10:09 (GMT) |
commit | 6c44fde3e03079e0c69f823dafbe04af50b5bd0d (patch) | |
tree | a55128492c6e6900b92279c304d81ef26ea03cdf /Misc | |
parent | 4f5a3493b534a95fbb01d593b1ffe320db6b395e (diff) | |
download | cpython-6c44fde3e03079e0c69f823dafbe04af50b5bd0d.zip cpython-6c44fde3e03079e0c69f823dafbe04af50b5bd0d.tar.gz cpython-6c44fde3e03079e0c69f823dafbe04af50b5bd0d.tar.bz2 |
bpo-36707: Remove the "m" flag (pymalloc) from SOABI (GH-12931)
"./configure --with-pymalloc" no longer adds the "m" flag to SOABI
(sys.implementation.cache_tag).
Enabling or disabling pymalloc has no impact on the ABI.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Build/2019-04-24-02-29-15.bpo-36707.8ZNB67.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Build/2019-04-24-02-29-15.bpo-36707.8ZNB67.rst b/Misc/NEWS.d/next/Build/2019-04-24-02-29-15.bpo-36707.8ZNB67.rst new file mode 100644 index 0000000..77bd4d7 --- /dev/null +++ b/Misc/NEWS.d/next/Build/2019-04-24-02-29-15.bpo-36707.8ZNB67.rst @@ -0,0 +1,3 @@ +``./configure --with-pymalloc`` no longer adds the ``m`` flag to SOABI +(sys.implementation.cache_tag). Enabling or disabling pymalloc has no impact +on the ABI. |