forked from python/cpython
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[3.12] Docs: Ensure no warnings are found in the NEWS file before a g…
…iven line number (pythonGH-119221) (cherry picked from commit 034cf0c) Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
- Loading branch information
Showing
7 changed files
with
49 additions
and
8 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
2 changes: 1 addition & 1 deletion
2
Misc/NEWS.d/next/Library/2023-04-10-00-04-37.gh-issue-87106.UyBnPQ.rst
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
Fixed handling in :meth:`inspect.signature.bind` of keyword arguments having | ||
Fixed handling in :meth:`inspect.Signature.bind` of keyword arguments having | ||
the same name as positional-only arguments when a variadic keyword argument | ||
(e.g. ``**kwargs``) is present. |
4 changes: 2 additions & 2 deletions
4
Misc/NEWS.d/next/Library/2024-04-17-18-00-30.gh-issue-80361.RstWg-.rst
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
Fix TypeError in :func:`email.Message.get_payload` when the charset is :rfc:`2231` | ||
encoded. | ||
Fix TypeError in :func:`email.message.Message.get_payload` when the charset is | ||
:rfc:`2231` encoded. |
This file contains 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
2 changes: 1 addition & 1 deletion
2
Misc/NEWS.d/next/Library/2024-04-24-12-29-33.gh-issue-118221.2k_bac.rst
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
Fix a bug where :func:`sqlite3.iterdump` could fail if a custom :attr:`row | ||
Fix a bug where :func:`!sqlite3.iterdump` could fail if a custom :attr:`row | ||
factory <sqlite3.Connection.row_factory>` was used. Patch by Erlend Aasland. |
2 changes: 1 addition & 1 deletion
2
Misc/NEWS.d/next/Library/2024-04-25-12-02-06.gh-issue-118042.2EcdHf.rst
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
Fix an unraisable exception in :meth:`telnetlib.Telnet.__del__` when the | ||
Fix an unraisable exception in :meth:`!telnetlib.Telnet.__del__` when the | ||
``__init__()`` method was not called. |