Commit 5e18a208 authored by Eric Smith's avatar Eric Smith

Document the 'n' integer presentation type for str.format().

parent d3343cb8
......@@ -383,6 +383,10 @@ The available integer presentation types are:
| ``'X'`` | Hex format. Outputs the number in base 16, using upper- |
| | case letters for the digits above 9. |
+---------+----------------------------------------------------------+
| ``'n'`` | Number. This is the same as ``'d'``, except that it uses |
| | the current locale setting to insert the appropriate |
| | number separator characters. |
+---------+----------------------------------------------------------+
| None | the same as ``'d'`` |
+---------+----------------------------------------------------------+
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment