Skip to content

Commit ba3295b

Browse files
Apply suggestions from code review
Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
1 parent dbebb28 commit ba3295b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Pending removal in Python 3.20
88
- :mod:`argparse`
99
- :mod:`csv`
1010
- :mod:`!ctypes.macholib`
11-
- :mod:`decimal` (Use :data:`decimal.SPEC_VERSION` instead)
11+
- :mod:`decimal` (use :data:`decimal.SPEC_VERSION` instead)
1212
- :mod:`imaplib`
1313
- :mod:`ipaddress`
1414
- :mod:`json`

Doc/whatsnew/3.15.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -825,7 +825,7 @@ New deprecations
825825
- :mod:`argparse`
826826
- :mod:`csv`
827827
- :mod:`!ctypes.macholib`
828-
- :mod:`decimal` (Use :data:`decimal.SPEC_VERSION` instead)
828+
- :mod:`decimal` (use :data:`decimal.SPEC_VERSION` instead)
829829
- :mod:`imaplib`
830830
- :mod:`ipaddress`
831831
- :mod:`json`

Lib/_pydecimal.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
'HAVE_CONTEXTVAR',
5151

5252
# Highest version of the spec this module complies with
53-
'SPEC_VERSION'
53+
'SPEC_VERSION',
5454
]
5555

5656
__xname__ = __name__ # sys.modules lookup (--without-threads)

0 commit comments

Comments
 (0)