From: Qingpeng "Q.P." Zhang Date: Sun, 19 Feb 2017 19:32:51 +0000 (-0800) Subject: Remove redundant footnote (#181) X-Git-Tag: v2.7.14rc1~273 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4bfb6038102431df834a01453a89437647d19483;p=thirdparty%2FPython%2Fcpython.git Remove redundant footnote (#181) It was accidentally added in cc79837. --- diff --git a/Doc/tutorial/datastructures.rst b/Doc/tutorial/datastructures.rst index 0e5891ada9e4..916da4a23bc9 100644 --- a/Doc/tutorial/datastructures.rst +++ b/Doc/tutorial/datastructures.rst @@ -107,7 +107,7 @@ An example that uses most of the list methods:: You might have noticed that methods like ``insert``, ``remove`` or ``sort`` that only modify the list have no return value printed -- they return the default -``None``. [1]_ This is a design principle for all mutable data structures in +``None``. This is a design principle for all mutable data structures in Python.