[Python-checkins] r60901 - python/trunk/Misc/NEWS

eric.smith python-checkins at python.org
Tue Feb 19 14:21:57 CET 2008


Author: eric.smith
Date: Tue Feb 19 14:21:56 2008
New Revision: 60901

Modified:
   python/trunk/Misc/NEWS
Log:
Added PEP 3101.

Modified: python/trunk/Misc/NEWS
==============================================================================
--- python/trunk/Misc/NEWS	(original)
+++ python/trunk/Misc/NEWS	Tue Feb 19 14:21:56 2008
@@ -12,6 +12,12 @@
 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.
 


More information about the Python-checkins mailing list