diff options
author | Donghee Na <donghee.na@python.org> | 2024-09-24 01:28:59 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-24 01:28:59 (GMT) |
commit | ad7c7785461fffba04f5a36cd6d062e92b0fda16 (patch) | |
tree | 4e4da0559c1b120872095862f11ca915fac0d405 /Doc | |
parent | be76e3f26e0b907f711497d006b8b83bff04c036 (diff) | |
download | cpython-ad7c7785461fffba04f5a36cd6d062e92b0fda16.zip cpython-ad7c7785461fffba04f5a36cd6d062e92b0fda16.tar.gz cpython-ad7c7785461fffba04f5a36cd6d062e92b0fda16.tar.bz2 |
gh-123990: Good bye WITH_FREELISTS macro (gh-124358)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/using/configure.rst | 6 | ||||
-rw-r--r-- | Doc/whatsnew/3.11.rst | 2 |
2 files changed, 1 insertions, 7 deletions
diff --git a/Doc/using/configure.rst b/Doc/using/configure.rst index 10adf74..4976418 100644 --- a/Doc/using/configure.rst +++ b/Doc/using/configure.rst @@ -183,12 +183,6 @@ General Options See :envvar:`PYTHONCOERCECLOCALE` and the :pep:`538`. -.. option:: --without-freelists - - Disable all freelists except the empty tuple singleton. - - .. versionadded:: 3.11 - .. option:: --with-platlibdir=DIRNAME Python library directory name (default is ``lib``). diff --git a/Doc/whatsnew/3.11.rst b/Doc/whatsnew/3.11.rst index d59f244..e5c6d7c 100644 --- a/Doc/whatsnew/3.11.rst +++ b/Doc/whatsnew/3.11.rst @@ -2168,7 +2168,7 @@ Build Changes (Contributed by Donghee 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 ``--without-freelists`` can be used to disable all freelists except empty tuple singleton. (Contributed by Christian Heimes in :issue:`45522`.) |