[Python-checkins] r71672 - python/branches/py3k/Doc/whatsnew/3.1.rst

raymond.hettinger python-checkins at python.org
Fri Apr 17 12:09:28 CEST 2009


Author: raymond.hettinger
Date: Fri Apr 17 12:09:27 2009
New Revision: 71672

Log:
Update list of supported types.

Modified:
   python/branches/py3k/Doc/whatsnew/3.1.rst

Modified: python/branches/py3k/Doc/whatsnew/3.1.rst
==============================================================================
--- python/branches/py3k/Doc/whatsnew/3.1.rst	(original)
+++ python/branches/py3k/Doc/whatsnew/3.1.rst	Fri Apr 17 12:09:27 2009
@@ -93,8 +93,8 @@
     >>> 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


More information about the Python-checkins mailing list