Update list.remove(x) documentation (GH-8636)
https://github.com/python/cpython/commit/66ff9d270c0ff026c13667a4ca7e51ec749... commit: 66ff9d270c0ff026c13667a4ca7e51ec7494fe62 branch: 3.7 author: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> committer: GitHub <noreply@github.com> date: 2018-08-02T20:03:19-07:00 summary: Update list.remove(x) documentation (GH-8636) Rephrase it to "It raises a `ValueError`" (cherry picked from commit bcd1d971b66f529cbd450aca438275b868031605) Co-authored-by: Lysandros Nikolaou <lisandrosnik@gmail.com> files: M Doc/tutorial/datastructures.rst diff --git a/Doc/tutorial/datastructures.rst b/Doc/tutorial/datastructures.rst index 7855ef2d2882..95dc0f98ba51 100644 --- a/Doc/tutorial/datastructures.rst +++ b/Doc/tutorial/datastructures.rst @@ -40,8 +40,8 @@ objects: .. method:: list.remove(x) :noindex: - Remove the first item from the list whose value is equal to *x*. It is an error if - there is no such item. + Remove the first item from the list whose value is equal to *x*. It raises a + ``ValueError`` if there is no such item. .. method:: list.pop([i])
participants (1)
-
Miss Islington (bot)