diff options
author | Raymond Hettinger <python@rcn.com> | 2009-04-17 10:09:27 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2009-04-17 10:09:27 (GMT) |
commit | c548b6e7241ef83074ed3696d09c25a3baa53154 (patch) | |
tree | 0377fca0452c145d85a5646442f65e8f817dfeeb /Doc | |
parent | fee346b5c43f695afdd5901c0af6b17dc2c383ca (diff) | |
download | cpython-c548b6e7241ef83074ed3696d09c25a3baa53154.zip cpython-c548b6e7241ef83074ed3696d09c25a3baa53154.tar.gz cpython-c548b6e7241ef83074ed3696d09c25a3baa53154.tar.bz2 |
Update list of supported types.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.1.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/whatsnew/3.1.rst b/Doc/whatsnew/3.1.rst index 41973ac..3bdc345 100644 --- a/Doc/whatsnew/3.1.rst +++ b/Doc/whatsnew/3.1.rst @@ -93,8 +93,8 @@ program's output, improving its professional appearance and readability:: >>> format(Decimal('1234567.89'), ',f') '1,234,567.89' -The currently supported types are :class:`int` and :class:`decimal.Decimal`. -Support for :class:`float` is expected before the beta release. +The supported types are :class:`int`, :class:`float` and :class:`decimal.Decimal`. + Discussions are underway about how to specify alternative separators like dots, spaces, apostrophes, or underscores. Locale-aware applications should use the existing *n* format specifier which already has some support |