You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* When an active exception is re-raised by a :keyword:`raise` statement with no parameters,
Expand All
@@ -490,25 +497,28 @@ Other CPython Implementation Changes
reflected in the re-raised exception.
(Contributed by Irit Katriel in :issue:`45711`.)
* The interpreter state's representation of handled exceptions (a.k.a exc_info, or
_PyErr_StackItem) now has only the ``exc_value`` field, ``exc_type`` and ``exc_traceback``
have been removed as their values can be derived from ``exc_value``.
* The interpreter state's representation of handled exceptions
(aka ``exc_info`` or ``_PyErr_StackItem``)
now only has the ``exc_value`` field; ``exc_type`` and ``exc_traceback``
have been removed, as they can be derived from ``exc_value``.
(Contributed by Irit Katriel in :issue:`45711`.)
* A new command line option for the Windows installer ``AppendPath`` has been added.
It behaves similiar to ``PrependPath`` but appends the install and scripts directories
instead of prepending them.
* A new :ref:`command line option <install-quiet-option>`, ``AppendPath``,
has been added for the Windows installer.
It behaves similarly to ``PrependPath``,
but appends the install and scripts directories instead of prepending them.
(Contributed by Bastian Neuburger in :issue:`44934`.)
* The :c:member:`PyConfig.module_search_paths_set` field must now be set to 1 for
* The :c:member:`PyConfig.module_search_paths_set` field must now be set to ``1`` for
initialization to use :c:member:`PyConfig.module_search_paths` to initialize
:data:`sys.path`. Otherwise, initialization will recalculate the path and replace
any values added to ``module_search_paths``.
* The output of the :option:`--help` option is changed to fit inside 50 lines and 80
columns. Information about :ref:`Python environment variables <using-on-envvars>`
and :option:`-X options <-X>` is available with the new :option:`--help-env` or
:option:`--help-xoptions` flags, and with :option:`--help-all`.
* The output of the :option:`--help` option now fits in 50 lines/80 columns.
Information about :ref:`Python environment variables <using-on-envvars>`
and :option:`-X` options is now available using the respective
:option:`--help-env` and :option:`--help-xoptions` flags,
and with the new :option:`--help-all`.
(Contributed by Éric Araujo in :issue:`46142`.)
Expand Down
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
gh-95913: Copyedit/improve Implementation Changes What's New section #97720
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account