diff options
author | Victor Stinner <vstinner@python.org> | 2022-12-05 14:41:44 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-05 14:41:44 (GMT) |
commit | 5ea052bb0c8fa76867751046c89f69db5661ed4f (patch) | |
tree | b29f03a85bd7da154d5ed3e3ce31e0839d38f684 /Doc/whatsnew | |
parent | 038b151963d9d4a5f4c852544fb5b0402ffcb218 (diff) | |
download | cpython-5ea052bb0c8fa76867751046c89f69db5661ed4f.zip cpython-5ea052bb0c8fa76867751046c89f69db5661ed4f.tar.gz cpython-5ea052bb0c8fa76867751046c89f69db5661ed4f.tar.bz2 |
gh-100008: Document Python build requirements (#100009)
Document also configure --without-freelists option added to Python
3.11.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.11.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.11.rst b/Doc/whatsnew/3.11.rst index 6eb90df..7931988 100644 --- a/Doc/whatsnew/3.11.rst +++ b/Doc/whatsnew/3.11.rst @@ -2131,7 +2131,7 @@ Build Changes (Contributed by Dong-hee Na and Brett Holman in :issue:`44340`.) * Freelists for object structs can now be disabled. A new :program:`configure` - option :option:`!--without-freelists` can be used to disable all freelists + option :option:`--without-freelists` can be used to disable all freelists except empty tuple singleton. (Contributed by Christian Heimes in :issue:`45522`.) |