summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2023-09-25 12:25:16 (GMT)
committerGitHub <noreply@github.com>2023-09-25 12:25:16 (GMT)
commitd158bbc2efff61630a5c01522735d4387d3e6392 (patch)
tree12a00fb3210a66aff45caf3655447dca34d2d919
parent52b2f9f66855c18c41e494ab9402f6e16b738c74 (diff)
downloadcpython-d158bbc2efff61630a5c01522735d4387d3e6392.zip
cpython-d158bbc2efff61630a5c01522735d4387d3e6392.tar.gz
cpython-d158bbc2efff61630a5c01522735d4387d3e6392.tar.bz2
[3.12] GH-109190: Copyedit 3.12 What's New: Prefer GitHub issues links (GH-109753) (#109825)
GH-109190: Copyedit 3.12 What's New: Prefer GitHub issues links (GH-109753) (cherry picked from commit 7495a93e0f843c40ebc5925c6a35225d41e52654) Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
-rw-r--r--Doc/whatsnew/3.12.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/whatsnew/3.12.rst b/Doc/whatsnew/3.12.rst
index 285cd4f..bb622c5 100644
--- a/Doc/whatsnew/3.12.rst
+++ b/Doc/whatsnew/3.12.rst
@@ -659,7 +659,7 @@ inspect
* Add :func:`inspect.getasyncgenstate` and :func:`inspect.getasyncgenlocals`
for determining the current state of asynchronous generators.
- (Contributed by Thomas Krennwallner in :issue:`35759`.)
+ (Contributed by Thomas Krennwallner in :gh:`79940`.)
* The performance of :func:`inspect.getattr_static` has been considerably
improved. Most calls to the function should be at least 2x faster than they
@@ -732,7 +732,7 @@ pathlib
* Add *walk_up* optional parameter to :meth:`pathlib.PurePath.relative_to`
to allow the insertion of ``..`` entries in the result; this behavior is
more consistent with :func:`os.path.relpath`.
- (Contributed by Domenico Ragusa in :issue:`40358`.)
+ (Contributed by Domenico Ragusa in :gh:`84538`.)
* Add :meth:`pathlib.Path.is_junction` as a proxy to :func:`os.path.isjunction`.
(Contributed by Charles Machalow in :gh:`99547`.)
@@ -968,7 +968,7 @@ Added ``--durations`` command line option, showing the N slowest test cases::
OK (skipped=3)
-(Contributed by Giampaolo Rodola in :issue:`4080`)
+(Contributed by Giampaolo Rodola in :gh:`48330`)
uuid
----
@@ -1563,7 +1563,7 @@ unittest
* An alias of the :class:`~unittest.TextTestResult` class:
``_TextTestResult`` (deprecated in Python 3.2).
- (Contributed by Serhiy Storchaka in :issue:`45162`.)
+ (Contributed by Serhiy Storchaka in :gh:`89325`.)
webbrowser
----------