Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Add me as editor, fix some pycon code-blocks
  • Loading branch information
hugovk committed May 5, 2025
commit beb4111d2210fa4afaf22a0e2976eb125e1da6d6
8 changes: 4 additions & 4 deletions Doc/whatsnew/3.14.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
What's new in Python 3.14
****************************

:Editor: TBD
:Editor: Hugo van Kemenade

.. Rules for maintenance:

Expand Down Expand Up @@ -378,7 +378,7 @@ Improved error messages
feature helps programmers quickly identify and fix common typing mistakes. For
example:

.. code-block:: python
.. code-block:: pycon

>>> whille True:
... pass
Expand Down Expand Up @@ -419,7 +419,7 @@ Improved error messages
error message prints the received number of values in more cases than before.
(Contributed by Tushar Sadhwani in :gh:`122239`.)

.. code-block:: python
.. code-block:: pycon

>>> x, y, z = 1, 2, 3, 4
Traceback (most recent call last):
Expand Down Expand Up @@ -473,7 +473,7 @@ Improved error messages
that the string may be intended to be part of the string. (Contributed by
Pablo Galindo in :gh:`88535`.)

.. code-block:: python
.. code-block:: pycon

>>> "The interesting object "The important object" is very important"
Traceback (most recent call last):
Expand Down