diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-06-15 01:31:44 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-15 01:31:44 (GMT) |
commit | 3fde750cc4e4057076650a92946ec1d492464799 (patch) | |
tree | ca8ddfc106ed273402bd6bea4eee0afada4d633a /Doc/library/sys.rst | |
parent | f78e66c3c9cd3a65cedba8d35f8e715e0535d8bf (diff) | |
download | cpython-3fde750cc4e4057076650a92946ec1d492464799.zip cpython-3fde750cc4e4057076650a92946ec1d492464799.tar.gz cpython-3fde750cc4e4057076650a92946ec1d492464799.tar.bz2 |
bpo-36707: Document "m" removal from sys.abiflags (GH-14090)
(cherry picked from commit 7efc526e5cfb929a79c192ac2dcf7eb78d3a4401)
Co-authored-by: Victor Stinner <vstinner@redhat.com>
Diffstat (limited to 'Doc/library/sys.rst')
-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 |