From ca583b66c8debea9b083470f9fc3b8ab0589082b Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Mon, 7 Feb 2011 12:13:58 +0000 Subject: #8691: document that right alignment is default for numbers. --- Doc/ACKS.txt | 1 + Doc/library/string.rst | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Doc/ACKS.txt b/Doc/ACKS.txt index c3ab264..bcf70b5 100644 --- a/Doc/ACKS.txt +++ b/Doc/ACKS.txt @@ -130,6 +130,7 @@ docs@python.org), and we'll be glad to correct the problem. * Andrew MacIntyre * Vladimir Marangozov * Vincent Marchetti + * Westley Martínez * Laura Matson * Daniel May * Rebecca McCreary diff --git a/Doc/library/string.rst b/Doc/library/string.rst index 4b6a674..d45eb36 100644 --- a/Doc/library/string.rst +++ b/Doc/library/string.rst @@ -310,10 +310,10 @@ The meaning of the various alignment options is as follows: | 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 | -- cgit v0.12