Skip to content
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

[3.12] gh-106969: Indicate no modules were added in 3.10 & 3.12 (GH-106988) #107094

Merged
merged 1 commit into from
Jul 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion Doc/whatsnew/3.10.rst
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@
AttributeErrors
~~~~~~~~~~~~~~~

When printing :exc:`AttributeError`, :c:func:`PyErr_Display` will offer

Check warning on line 355 in Doc/whatsnew/3.10.rst

View workflow job for this annotation

GitHub Actions / Docs

c:func reference target not found: PyErr_Display
suggestions of similar attribute names in the object that the exception was
raised from:

Expand All @@ -366,14 +366,14 @@
(Contributed by Pablo Galindo in :issue:`38530`.)

.. warning::
Notice this won't work if :c:func:`PyErr_Display` is not called to display the error

Check warning on line 369 in Doc/whatsnew/3.10.rst

View workflow job for this annotation

GitHub Actions / Docs

c:func reference target not found: PyErr_Display
which can happen if some other custom error display function is used. This is a common
scenario in some REPLs like IPython.

NameErrors
~~~~~~~~~~

When printing :exc:`NameError` raised by the interpreter, :c:func:`PyErr_Display`

Check warning on line 376 in Doc/whatsnew/3.10.rst

View workflow job for this annotation

GitHub Actions / Docs

c:func reference target not found: PyErr_Display
will offer suggestions of similar variable names in the function that the exception
was raised from:

Expand All @@ -388,7 +388,7 @@
(Contributed by Pablo Galindo in :issue:`38530`.)

.. warning::
Notice this won't work if :c:func:`PyErr_Display` is not called to display the error,

Check warning on line 391 in Doc/whatsnew/3.10.rst

View workflow job for this annotation

GitHub Actions / Docs

c:func reference target not found: PyErr_Display
which can happen if some other custom error display function is used. This is a common
scenario in some REPLs like IPython.

Expand Down Expand Up @@ -686,7 +686,7 @@
Optional ``EncodingWarning`` and ``encoding="locale"`` option
-------------------------------------------------------------

The default encoding of :class:`TextIOWrapper` and :func:`open` is

Check warning on line 689 in Doc/whatsnew/3.10.rst

View workflow job for this annotation

GitHub Actions / Docs

py:class reference target not found: TextIOWrapper
platform and locale dependent. Since UTF-8 is used on most Unix
platforms, omitting ``encoding`` option when opening UTF-8 files
(e.g. JSON, YAML, TOML, Markdown) is a very common bug. For example::
Expand Down Expand Up @@ -781,7 +781,7 @@
StrCache = 'Cache[str]' # a type alias
LOG_PREFIX = 'LOG[DEBUG]' # a module constant

Now the :mod:`typing` module has a special value :data:`TypeAlias`

Check warning on line 784 in Doc/whatsnew/3.10.rst

View workflow job for this annotation

GitHub Actions / Docs

py:data reference target not found: TypeAlias
which lets you declare type aliases more explicitly::

StrCache: TypeAlias = 'Cache[str]' # a type alias
Expand All @@ -794,7 +794,7 @@
PEP 647: User-Defined Type Guards
---------------------------------

:data:`TypeGuard` has been added to the :mod:`typing` module to annotate

Check warning on line 797 in Doc/whatsnew/3.10.rst

View workflow job for this annotation

GitHub Actions / Docs

py:data reference target not found: TypeGuard

Check warning on line 797 in Doc/whatsnew/3.10.rst

View workflow job for this annotation

GitHub Actions / Docs

py:data reference target not found: TypeGuard
type guard functions and improve information provided to static type checkers
during type narrowing. For more information, please see :data:`TypeGuard`\ 's
documentation, and :pep:`647`.
Expand Down Expand Up @@ -887,7 +887,7 @@
New Modules
===========

* None yet.
* None.


Improved Modules
Expand All @@ -896,7 +896,7 @@
asyncio
-------

Add missing :meth:`~asyncio.events.AbstractEventLoop.connect_accepted_socket`

Check warning on line 899 in Doc/whatsnew/3.10.rst

View workflow job for this annotation

GitHub Actions / Docs

py:meth reference target not found: asyncio.events.AbstractEventLoop.connect_accepted_socket
method.
(Contributed by Alex Grönholm in :issue:`41332`.)

Expand Down Expand Up @@ -928,7 +928,7 @@
bdb
---

Add :meth:`~bdb.Breakpoint.clearBreakpoints` to reset all set breakpoints.

Check warning on line 931 in Doc/whatsnew/3.10.rst

View workflow job for this annotation

GitHub Actions / Docs

py:meth reference target not found: bdb.Breakpoint.clearBreakpoints
(Contributed by Irit Katriel in :issue:`24160`.)

bisect
Expand Down
2 changes: 1 addition & 1 deletion Doc/whatsnew/3.12.rst
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,7 @@ Other Language Changes
New Modules
===========

* None yet.
* None.


Improved Modules
Expand Down