[Python-checkins] gh-95913: Move subinterpreter exper removal to 3.11 WhatsNew (GH-98345)

miss-islington webhook-mailer at python.org
Mon Oct 17 15:59:27 EDT 2022


https://github.com/python/cpython/commit/5fe043147493e33f2af6ab74610735130add1fe9
commit: 5fe043147493e33f2af6ab74610735130add1fe9
branch: main
author: C.A.M. Gerlach <CAM.Gerlach at Gerlach.CAM>
committer: miss-islington <31488909+miss-islington at users.noreply.github.com>
date: 2022-10-17T12:59:22-07:00
summary:

gh-95913: Move subinterpreter exper removal to 3.11 WhatsNew (GH-98345)



Part of #95913
Forward port of #93306, which was a backport of #93185, to address #84694

This adds the What's New entry for the removal of the subinterpreter-related env variable, build-time flag, etc. As @ericsnowcurrently  was author of the original changes, I added him as a co-author to the commit.

This addition to the Python 3.11 What's New document were only made to the Python 3.11 branch during the backport process, and not added to the version in `main`. Forward-porting it ensures the docs retain these additions for the future, rather than being lost in a legacy Python versions, allows it to be be edited as part of #95913 , and avoids merge conflicts with routine back-ports of PRs touching it.

I've pulled in the addition exactly as-is with no modifications; any editing will be done in future PRs (and therefore can be reviewed and backported accordingly).

The one other such addition is forward-ported in #98344

files:
M Doc/whatsnew/3.11.rst
M Doc/whatsnew/3.12.rst

diff --git a/Doc/whatsnew/3.11.rst b/Doc/whatsnew/3.11.rst
index 1e93fcaaf791..bb9538338e48 100644
--- a/Doc/whatsnew/3.11.rst
+++ b/Doc/whatsnew/3.11.rst
@@ -1678,6 +1678,10 @@ Removed
   Python's test suite."
   (Contributed by Victor Stinner in :issue:`46852`.)
 
+* The ``--experimental-isolated-subinterpreters`` configure flag
+  (and corresponding ``EXPERIMENTAL_ISOLATED_SUBINTERPRETERS``)
+  have been removed.
+
 * Pynche --- The Pythonically Natural Color and Hue Editor --- has been moved out
   of ``Tools/scripts`` and is `being developed independently
   <https://gitlab.com/warsaw/pynche/-/tree/main>`_ from the Python source tree.
diff --git a/Doc/whatsnew/3.12.rst b/Doc/whatsnew/3.12.rst
index ecc74e9beba2..ad0270ae19b8 100644
--- a/Doc/whatsnew/3.12.rst
+++ b/Doc/whatsnew/3.12.rst
@@ -401,10 +401,6 @@ Removed
 
   (Contributed by Erlend E. Aasland in :gh:`92548`.)
 
-* The ``--experimental-isolated-subinterpreters`` configure flag
-  (and corresponding ``EXPERIMENTAL_ISOLATED_SUBINTERPRETERS``)
-  have been removed.
-
 * ``smtpd`` has been removed according to the schedule in :pep:`594`,
   having been deprecated in Python 3.4.7 and 3.5.4.
   Use aiosmtpd_ PyPI module or any other



More information about the Python-checkins mailing list