summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorEric V. Smith <eric@trueblade.com>2011-03-12 15:08:48 (GMT)
committerEric V. Smith <eric@trueblade.com>2011-03-12 15:08:48 (GMT)
commitb9cd3531c42265f3063a7d202891a7497eb43130 (patch)
tree5dbf0827151b1dcd51775038edfa3f82d9b6daab /Misc
parente4f6a80ed843ac68ffbd1599d1dc0c55362df205 (diff)
downloadcpython-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/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 3b42646..7cfd3fc 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.