[Python-checkins] r87951 - in python/branches/release31-maint: Doc/howto/sorting.rst

benjamin.peterson python-checkins at python.org
Wed Jan 12 05:51:02 CET 2011


Author: benjamin.peterson
Date: Wed Jan 12 05:51:02 2011
New Revision: 87951

Log:
Merged revisions 87949 via svnmerge from 
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r87949 | benjamin.peterson | 2011-01-11 22:44:41 -0600 (Tue, 11 Jan 2011) | 1 line
  
  fix weirdly ambigious sentence
........


Modified:
   python/branches/release31-maint/   (props changed)
   python/branches/release31-maint/Doc/howto/sorting.rst

Modified: python/branches/release31-maint/Doc/howto/sorting.rst
==============================================================================
--- python/branches/release31-maint/Doc/howto/sorting.rst	(original)
+++ python/branches/release31-maint/Doc/howto/sorting.rst	Wed Jan 12 05:51:02 2011
@@ -8,8 +8,8 @@
 
 
 Python lists have a built-in :meth:`list.sort` method that modifies the list
-in-place and a :func:`sorted` built-in function that builds a new sorted list
-from an iterable.
+in-place.  There is also a :func:`sorted` built-in function that builds a new
+sorted list from an iterable.
 
 In this document, we explore the various techniques for sorting data using Python.
 


More information about the Python-checkins mailing list