summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorJoe Jevnik <JoeJev@gmail.com>2024-04-23 11:15:15 (GMT)
committerGitHub <noreply@github.com>2024-04-23 11:15:15 (GMT)
commiteb927e9fc823de9539fcb82c9ea9d055462eb04a (patch)
treec51abe6fd065cbdbbfa1e95f2bbf2f90a6d85eef /Misc
parente17cd1fbfd4f20824c686c7242423e84ba6a6cc5 (diff)
downloadcpython-eb927e9fc823de9539fcb82c9ea9d055462eb04a.zip
cpython-eb927e9fc823de9539fcb82c9ea9d055462eb04a.tar.gz
cpython-eb927e9fc823de9539fcb82c9ea9d055462eb04a.tar.bz2
gh-68114: Fix handling for removed PyArg_ParseTuple 'w' formatters (GH-8204)
Co-authored-by: Joe Jevnik <joe@quantopian.com> Co-authored-by: Petr Viktorin <encukou@gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/C API/2024-03-18-17-29-52.gh-issue-68114.W7R_lI.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/C API/2024-03-18-17-29-52.gh-issue-68114.W7R_lI.rst b/Misc/NEWS.d/next/C API/2024-03-18-17-29-52.gh-issue-68114.W7R_lI.rst
new file mode 100644
index 0000000..fa09d2a
--- /dev/null
+++ b/Misc/NEWS.d/next/C API/2024-03-18-17-29-52.gh-issue-68114.W7R_lI.rst
@@ -0,0 +1,2 @@
+Fixed skipitem()'s handling of the old 'w' and 'w#' formatters. These are
+no longer supported and now raise an exception if used.