From f5111fc0a4348533f339547dce379835a61cc45e Mon Sep 17 00:00:00 2001 From: Terry Jan Reedy Date: Mon, 5 Oct 2020 10:10:19 -0400 Subject: [PATCH] bpo-41774: Tweak new programming FAQ entry Remove mention of space in "remove multiple items from list". --- Doc/faq/programming.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/faq/programming.rst b/Doc/faq/programming.rst index 0b486d7e7e254a..7bcedb0b5d75b4 100644 --- a/Doc/faq/programming.rst +++ b/Doc/faq/programming.rst @@ -1176,7 +1176,7 @@ Here are three variations.:: mylist[:] = (x for x in mylist if keep_condition) mylist[:] = [x for x in mylist if keep_condition] -If space is not an issue, the list comprehension may be fastest. +The list comprehension may be fastest. How do you make an array in Python?