diff options
author | Eric V. Smith <eric@trueblade.com> | 2011-03-12 15:08:48 (GMT) |
---|---|---|
committer | Eric V. Smith <eric@trueblade.com> | 2011-03-12 15:08:48 (GMT) |
commit | b9cd3531c42265f3063a7d202891a7497eb43130 (patch) | |
tree | 5dbf0827151b1dcd51775038edfa3f82d9b6daab /Misc | |
parent | e4f6a80ed843ac68ffbd1599d1dc0c55362df205 (diff) | |
download | cpython-b9cd3531c42265f3063a7d202891a7497eb43130.zip cpython-b9cd3531c42265f3063a7d202891a7497eb43130.tar.gz cpython-b9cd3531c42265f3063a7d202891a7497eb43130.tar.bz2 |
Issue 9856: Change object.__format__ with a non-empty format string from a PendingDeprecationWarning to a DeprecationWarning.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -10,6 +10,10 @@ What's New in Python 3.3 Alpha 1? Core and Builtins ----------------- +- Issue #9856: Change object.__format__ with a non-empty format string + to be a DeprecationWarning. In 3.2 it was a PendingDeprecationWarning. + In 3.4 it will be a TypeError. + - Issue #11244: The peephole optimizer is now able to constant-fold arbitrarily complex expressions. This also fixes a 3.2 regression where operations involving negative numbers were not constant-folded. |