[Python-checkins] r82459 - python/trunk/Doc/library/string.rst

ezio.melotti python-checkins at python.org
Sat Jul 3 00:50:39 CEST 2010


Author: ezio.melotti
Date: Sat Jul  3 00:50:39 2010
New Revision: 82459

Log:
#9139: the thousands separator is new in 2.7.  Also add a missing variable in the example.

Modified:
   python/trunk/Doc/library/string.rst

Modified: python/trunk/Doc/library/string.rst
==============================================================================
--- python/trunk/Doc/library/string.rst	(original)
+++ python/trunk/Doc/library/string.rst	Sat Jul  3 00:50:39 2010
@@ -378,6 +378,9 @@
 For a locale aware separator, use the ``'n'`` integer presentation type
 instead.
 
+.. versionchanged:: 2.7
+   Added the ``','`` option (see also :pep:`378`).
+
 *width* is a decimal integer defining the minimum field width.  If not
 specified, then the field width will be determined by the content.
 
@@ -531,6 +534,7 @@
 
 Accessing arguments' attributes::
 
+   >>> c = 3-5j
    >>> ('The complex number {0} is formed from the real part {0.real} '
    ...  'and the imaginary part {0.imag}.').format(c)
    'The complex number (3-5j) is formed from the real part 3.0 and the imaginary part -5.0.'


More information about the Python-checkins mailing list