diff options
author | Dong-hee Na <donghee.na@python.org> | 2023-07-05 22:19:49 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-05 22:19:49 (GMT) |
commit | 217f47d6e5e56bca78b8556e910cd00890f6f84a (patch) | |
tree | c600ffab79053ad4e95c846d94e915d7903ad774 /Misc | |
parent | c16ea94abc73c0098b484f7e2ec23bfd9c36b67c (diff) | |
download | cpython-217f47d6e5e56bca78b8556e910cd00890f6f84a.zip cpython-217f47d6e5e56bca78b8556e910cd00890f6f84a.tar.gz cpython-217f47d6e5e56bca78b8556e910cd00890f6f84a.tar.bz2 |
gh-96844: Improve error message of list.remove (gh-106455)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2023-07-06-00-35-44.gh-issue-96844.kwvoS-.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2023-07-06-00-35-44.gh-issue-96844.kwvoS-.rst b/Misc/NEWS.d/next/Core and Builtins/2023-07-06-00-35-44.gh-issue-96844.kwvoS-.rst new file mode 100644 index 0000000..5533417 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2023-07-06-00-35-44.gh-issue-96844.kwvoS-.rst @@ -0,0 +1 @@ +Improve error message of :meth:`list.remove`. Patch by Dong-hee Na. |