diff options
author | Georg Brandl <georg@python.org> | 2012-11-15 06:10:27 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2012-11-15 06:10:27 (GMT) |
commit | 526b5536080949482e8828a9a32b4288aa3b4350 (patch) | |
tree | b1b7f506b11f911a11318ab53baead434d942264 | |
parent | 080123119d55b24a91d07efe944d3ce7dc57afe6 (diff) | |
download | cpython-526b5536080949482e8828a9a32b4288aa3b4350.zip cpython-526b5536080949482e8828a9a32b4288aa3b4350.tar.gz cpython-526b5536080949482e8828a9a32b4288aa3b4350.tar.bz2 |
Remove versionadded from the tutorial, at a location where it produces more questions than it answers.
-rw-r--r-- | Doc/tutorial/datastructures.rst | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Doc/tutorial/datastructures.rst b/Doc/tutorial/datastructures.rst index 88ab372..a2edca1 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 ------------------- |