Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
7efc526e
Commit
7efc526e
authored
Jun 15, 2019
by
Victor Stinner
Committed by
GitHub
Jun 15, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bpo-36707: Document "m" removal from sys.abiflags (GH-14090)
parent
749e7306
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
0 deletions
+20
-0
Doc/library/sys.rst
Doc/library/sys.rst
+4
-0
Doc/whatsnew/3.8.rst
Doc/whatsnew/3.8.rst
+16
-0
No files found.
Doc/library/sys.rst
View file @
7efc526e
...
...
@@ -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
...
...
Doc/whatsnew/3.8.rst
View file @
7efc526e
...
...
@@ -955,6 +955,22 @@ Optimizations
Build and C API Changes
=======================
* Default :data:`sys.abiflags` became an empty string: the ``m`` flag for
pymalloc became useless (builds with and without pymalloc are ABI compatible)
and so has been removed. (Contributed by Victor Stinner in :issue:`36707`.)
Example of changes:
* Only ``python3.8`` program is installed, ``python3.8m`` program is gone.
* Only ``python3.8-config`` script is installed, ``python3.8m-config`` script
is gone.
* The ``m`` flag has been removed from the suffix of dynamic library
filenames: extension modules in the standard library as well as those
produced and installed by third-party packages, like those downloaded from
PyPI. On Linux, for example, the Python 3.7 suffix
``.cpython-37m-x86_64-linux-gnu.so`` became
``.cpython-38-x86_64-linux-gnu.so`` in Python 3.8.
* The header files have been reorganized to better separate the different kinds
of APIs:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment