summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorEric Smith <eric@trueblade.com>2008-02-19 13:21:56 (GMT)
committerEric Smith <eric@trueblade.com>2008-02-19 13:21:56 (GMT)
commit5a3c135e17d9546bfac5fd30014f2c8431acb32b (patch)
tree4d4f00b023b02a0a4ff969bcb80ece489653f86a /Misc
parentba486c53623f4609f98b586109261a4b09b77c5d (diff)
downloadcpython-5a3c135e17d9546bfac5fd30014f2c8431acb32b.zip
cpython-5a3c135e17d9546bfac5fd30014f2c8431acb32b.tar.gz
cpython-5a3c135e17d9546bfac5fd30014f2c8431acb32b.tar.bz2
Added PEP 3101.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS6
1 files changed, 6 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index c0b6431..40b78fc 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,12 @@ What's New in Python 2.6 alpha 1?
Core and builtins
-----------------
+- Implemented PEP 3101, Advanced String Formatting. This adds a new
+ builtin format(); a format() method for str and unicode; a
+ __format__() method to object, str, unicode, int, long, float, and
+ datetime; the class string.Formatter; and the C API
+ PyObject_Format().
+
- Fixed several potential crashes, all caused by specially crafted __del__
methods exploiting objects in temporarily inconsistent state.