]> granicus.if.org Git - python/commitdiff
Added PEP 3101.
authorEric Smith <eric@trueblade.com>
Tue, 19 Feb 2008 13:21:56 +0000 (13:21 +0000)
committerEric Smith <eric@trueblade.com>
Tue, 19 Feb 2008 13:21:56 +0000 (13:21 +0000)
Misc/NEWS

index c0b6431d83ee51ed68c6669472c2d6b3072cc907..40b78fc12dfd7f7952c2ab02d55a99addfd3069c 100644 (file)
--- 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.