Skip to content

Commit 2797b2b

Browse files
committed
Fix docs
1 parent 09b3e24 commit 2797b2b

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Doc/deprecations/pending-removal-in-3.15.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Pending removal in Python 3.15
4545

4646
* :mod:`pathlib`:
4747

48-
* :meth:`.PurePath.is_reserved`
48+
* :meth:`!.PurePath.is_reserved`
4949
has been deprecated since Python 3.13.
5050
Use :func:`os.path.isreserved` to detect reserved paths on Windows.
5151

Doc/whatsnew/3.13.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1901,7 +1901,7 @@ New Deprecations
19011901

19021902
* :mod:`pathlib`:
19031903

1904-
* Deprecate :meth:`.PurePath.is_reserved`,
1904+
* Deprecate :meth:`!.PurePath.is_reserved`,
19051905
to be removed in Python 3.15.
19061906
Use :func:`os.path.isreserved` to detect reserved paths on Windows.
19071907
(Contributed by Barney Gale in :gh:`88569`.)

Misc/NEWS.d/3.11.0a1.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2741,7 +2741,7 @@ Fix deprecation of :data:`ssl.OP_NO_TLSv1_3`
27412741
.. nonce: TMWh1i
27422742
.. section: Library
27432743
2744-
:meth:`pathlib.PureWindowsPath.is_reserved` now identifies a greater range
2744+
:meth:`!pathlib.PureWindowsPath.is_reserved` now identifies a greater range
27452745
of reserved filenames, including those with trailing spaces or colons.
27462746

27472747
..

Misc/NEWS.d/3.13.0a4.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1096,7 +1096,7 @@ Also changed its name and daemonic status, it can be now joined.
10961096
Add :func:`os.path.isreserved`, which identifies reserved pathnames such as
10971097
"NUL", "AUX" and "CON". This function is only available on Windows.
10981098

1099-
Deprecate :meth:`pathlib.PurePath.is_reserved`.
1099+
Deprecate :meth:`!pathlib.PurePath.is_reserved`.
11001100

11011101
..
11021102

0 commit comments

Comments
 (0)