diff options
author | Georg Brandl <georg@python.org> | 2008-05-12 16:45:43 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-05-12 16:45:43 (GMT) |
commit | e321c2f37d20fe4c3dc81f966d29216efe486917 (patch) | |
tree | a04cfc57154ea0e27599d5d9696ccef03f505a9c /Doc/whatsnew | |
parent | 23da6e654586bd59af566c6ed5d3e89bc55e8b23 (diff) | |
download | cpython-e321c2f37d20fe4c3dc81f966d29216efe486917.zip cpython-e321c2f37d20fe4c3dc81f966d29216efe486917.tar.gz cpython-e321c2f37d20fe4c3dc81f966d29216efe486917.tar.bz2 |
#2836: backport new string formatting docs.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/2.6.rst | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Doc/whatsnew/2.6.rst b/Doc/whatsnew/2.6.rst index e274020..c0316f6 100644 --- a/Doc/whatsnew/2.6.rst +++ b/Doc/whatsnew/2.6.rst @@ -612,8 +612,7 @@ can be formatted as a general number or in exponential notation: '3.750000e+00' A variety of presentation types are available. Consult the 2.6 -documentation for a complete list (XXX add link, once it's in the 2.6 -docs), but here's a sample:: +documentation for a :ref:`complete list <formatstrings>`; here's a sample:: 'b' - Binary. Outputs the number in base 2. 'c' - Character. Converts the integer to the corresponding |