diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2024-01-29 17:58:31 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-29 17:58:31 (GMT) |
commit | aa3402ad451777d8dd3ec560e14cb16dc8540c0e (patch) | |
tree | 4ebbaed141835815f133a62cfa4e921e708b29e7 /Misc/NEWS.d | |
parent | 0cd9bacb8ad41fe86f95b326e9199caa749539eb (diff) | |
download | cpython-aa3402ad451777d8dd3ec560e14cb16dc8540c0e.zip cpython-aa3402ad451777d8dd3ec560e14cb16dc8540c0e.tar.gz cpython-aa3402ad451777d8dd3ec560e14cb16dc8540c0e.tar.bz2 |
gh-114678: Fix incorrect deprecation warning for 'N' specifier in Decimal format (GH-114683)
Co-authored-by: Stefan Krah <skrah@bytereef.org>
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Library/2024-01-28-19-40-40.gh-issue-114678.kYKcJw.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2024-01-28-19-40-40.gh-issue-114678.kYKcJw.rst b/Misc/NEWS.d/next/Library/2024-01-28-19-40-40.gh-issue-114678.kYKcJw.rst new file mode 100644 index 0000000..2306af4 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2024-01-28-19-40-40.gh-issue-114678.kYKcJw.rst @@ -0,0 +1,3 @@ +Ensure that deprecation warning for 'N' specifier in :class:`~decimal.Decimal` +format is not raised for cases where 'N' appears in other places +in the format specifier. Based on patch by Stefan Krah. |