[Python-checkins] r53573 - python/trunk/Doc/tut/tut.tex

fred.drake python-checkins at python.org
Fri Jan 26 17:28:45 CET 2007


Author: fred.drake
Date: Fri Jan 26 17:28:44 2007
New Revision: 53573

Modified:
   python/trunk/Doc/tut/tut.tex
Log:
fix typo (extraneous ")")

Modified: python/trunk/Doc/tut/tut.tex
==============================================================================
--- python/trunk/Doc/tut/tut.tex	(original)
+++ python/trunk/Doc/tut/tut.tex	Fri Jan 26 17:28:44 2007
@@ -2015,7 +2015,7 @@
 
 There is a way to remove an item from a list given its index instead
 of its value: the \keyword{del} statement.  This differs from the
-\method{pop()}) method which returns a value.  The \keyword{del}
+\method{pop()} method which returns a value.  The \keyword{del}
 statement can also be used to remove slices from a list or clear the
 entire list (which we did earlier by assignment of an empty list to
 the slice).  For example:


More information about the Python-checkins mailing list