From 526b5536080949482e8828a9a32b4288aa3b4350 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Thu, 15 Nov 2012 07:10:27 +0100 Subject: [PATCH] Remove versionadded from the tutorial, at a location where it produces more questions than it answers. --- Doc/tutorial/datastructures.rst | 2 -- 1 file changed, 2 deletions(-) diff --git a/Doc/tutorial/datastructures.rst b/Doc/tutorial/datastructures.rst index 88ab3729602..a2edca183db 100644 --- a/Doc/tutorial/datastructures.rst +++ b/Doc/tutorial/datastructures.rst @@ -229,8 +229,6 @@ Don't use this example's definition of :func:`sum`: since summing numbers is such a common need, a built-in function ``sum(sequence)`` is already provided, and works exactly like this. -.. versionadded:: 2.3 - List Comprehensions -------------------