From bcd1d971b66f529cbd450aca438275b868031605 Mon Sep 17 00:00:00 2001 From: Lysandros Nikolaou Date: Fri, 3 Aug 2018 04:45:48 +0200 Subject: [PATCH] Update list.remove(x) documentation (GH-8636) Rephrase it to "It raises a `ValueError`" --- Doc/tutorial/datastructures.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/tutorial/datastructures.rst b/Doc/tutorial/datastructures.rst index 7855ef2d28..95dc0f98ba 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]) -- 2.40.0