diff options
author | Erlend E. Aasland <erlend@python.org> | 2024-04-22 06:43:20 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-22 06:43:20 (GMT) |
commit | 550483b7e6c54b2a25d4db0c4ca41bd9c1132f93 (patch) | |
tree | 59f9a2728b38577ea34cde735dabc4bf68e6cfb5 /Misc | |
parent | 8b541c017ea92040add608b3e0ef8dc85e9e6060 (diff) | |
download | cpython-550483b7e6c54b2a25d4db0c4ca41bd9c1132f93.zip cpython-550483b7e6c54b2a25d4db0c4ca41bd9c1132f93.tar.gz cpython-550483b7e6c54b2a25d4db0c4ca41bd9c1132f93.tar.bz2 |
gh-117995: Don't raise DeprecationWarnings for indexed nameless params (#118001)
Filter out '?NNN' placeholders when looking for named params.
Co-authored-by: AN Long <aisk@users.noreply.github.com>
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2024-04-17-19-41-59.gh-issue-117995.Vt76Rv.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2024-04-17-19-41-59.gh-issue-117995.Vt76Rv.rst b/Misc/NEWS.d/next/Library/2024-04-17-19-41-59.gh-issue-117995.Vt76Rv.rst new file mode 100644 index 0000000..a289939 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2024-04-17-19-41-59.gh-issue-117995.Vt76Rv.rst @@ -0,0 +1,2 @@ +Don't raise :exc:`DeprecationWarning` when a :term:`sequence` of parameters +is used to bind indexed, nameless placeholders. See also :gh:`100668`. |