[Python-checkins] r88365 - in python/branches/py3k/Doc: ACKS.txt library/string.rst

georg.brandl python-checkins at python.org
Mon Feb 7 13:13:59 CET 2011


Author: georg.brandl
Date: Mon Feb  7 13:13:58 2011
New Revision: 88365

Log:
#8691: document that right alignment is default for numbers.

Modified:
   python/branches/py3k/Doc/ACKS.txt
   python/branches/py3k/Doc/library/string.rst

Modified: python/branches/py3k/Doc/ACKS.txt
==============================================================================
--- python/branches/py3k/Doc/ACKS.txt	(original)
+++ python/branches/py3k/Doc/ACKS.txt	Mon Feb  7 13:13:58 2011
@@ -130,6 +130,7 @@
    * Andrew MacIntyre
    * Vladimir Marangozov
    * Vincent Marchetti
+   * Westley Martínez
    * Laura Matson
    * Daniel May
    * Rebecca McCreary

Modified: python/branches/py3k/Doc/library/string.rst
==============================================================================
--- python/branches/py3k/Doc/library/string.rst	(original)
+++ python/branches/py3k/Doc/library/string.rst	Mon Feb  7 13:13:58 2011
@@ -310,10 +310,10 @@
    | Option  | Meaning                                                  |
    +=========+==========================================================+
    | ``'<'`` | Forces the field to be left-aligned within the available |
-   |         | space (this is the default).                             |
+   |         | space (this is the default for most objects).            |
    +---------+----------------------------------------------------------+
    | ``'>'`` | Forces the field to be right-aligned within the          |
-   |         | available space.                                         |
+   |         | available space (this is the default for numbers).       |
    +---------+----------------------------------------------------------+
    | ``'='`` | Forces the padding to be placed after the sign (if any)  |
    |         | but before the digits.  This is used for printing fields |


More information about the Python-checkins mailing list