diff options
author | Victor Stinner <vstinner@redhat.com> | 2019-06-15 01:24:41 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-15 01:24:41 (GMT) |
commit | 7efc526e5cfb929a79c192ac2dcf7eb78d3a4401 (patch) | |
tree | cf093da9804cd362d85792cd1eb749bb964d2edc /Doc/library | |
parent | 749e73065dea1cc3a6d39a830380a2c124f568c2 (diff) | |
download | cpython-7efc526e5cfb929a79c192ac2dcf7eb78d3a4401.zip cpython-7efc526e5cfb929a79c192ac2dcf7eb78d3a4401.tar.gz cpython-7efc526e5cfb929a79c192ac2dcf7eb78d3a4401.tar.bz2 |
bpo-36707: Document "m" removal from sys.abiflags (GH-14090)
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/sys.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst index 817c3f1..c073431 100644 --- a/Doc/library/sys.rst +++ b/Doc/library/sys.rst @@ -16,6 +16,10 @@ always available. On POSIX systems where Python was built with the standard ``configure`` script, this contains the ABI flags as specified by :pep:`3149`. + .. versionchanged:: 3.8 + Default flags became an empty string (``m`` flag for pymalloc has been + removed). + .. versionadded:: 3.2 |