From 4d8cee2d48afa958c6295f90017921c4b703671d Mon Sep 17 00:00:00 2001 From: vitaut Date: Sun, 17 Apr 2016 20:46:08 -0700 Subject: [PATCH] Document the `n` format specifier --- doc/syntax.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/doc/syntax.rst b/doc/syntax.rst index 8e8d2e46..feda3e44 100644 --- a/doc/syntax.rst +++ b/doc/syntax.rst @@ -216,6 +216,10 @@ The available integer presentation types are: | | ``'#'`` option with this type adds the prefix ``"0X"`` | | | to the output value. | +---------+----------------------------------------------------------+ +| ``'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'``. | +---------+----------------------------------------------------------+