]> granicus.if.org Git - python/commitdiff
Readd NEWS items that were accidentally removed by r51276.
authorMarc-André Lemburg <mal@egenix.com>
Mon, 14 Aug 2006 11:44:34 +0000 (11:44 +0000)
committerMarc-André Lemburg <mal@egenix.com>
Mon, 14 Aug 2006 11:44:34 +0000 (11:44 +0000)
Misc/NEWS

index b6d16ed41474e522088a1ba5095f9cbfeee44c1b..68902b15e62b87b4542d0af58273d35de853b1c5 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -25,6 +25,19 @@ Core and builtins
   Note that compare operators other than equal and unequal will still
   raise UnicodeDecodeError exceptions as they've always done.
 
+- Fix segfault when doing string formatting on subclasses of long.
+
+- Fix bug related to __len__ functions using values > 2**32 on 64-bit machines
+  with new-style classes.
+
+- Fix bug related to __len__ functions returning negative values with
+  classic classes.
+
+- Patch #1538606, Fix __index__() clipping.  There were some problems
+  discovered with the API and how integers that didn't fit into Py_ssize_t
+  were handled.  This patch attempts to provide enough alternatives
+  to effectively use __index__.
+
 - Bug #1536021: __hash__ may now return long int; the final hash
   value is obtained by invoking hash on the long int.