diff options
author | Marc-André Lemburg <mal@egenix.com> | 2006-08-14 11:44:34 (GMT) |
---|---|---|
committer | Marc-André Lemburg <mal@egenix.com> | 2006-08-14 11:44:34 (GMT) |
commit | 757ea27b0f618ec84e365edf067cc5e52e11947f (patch) | |
tree | 5dba8f6165eaa68186e74fbb531317822de8fcd6 | |
parent | 867200483bd518d4fbd9e3d16f8785b6395af9b7 (diff) | |
download | cpython-757ea27b0f618ec84e365edf067cc5e52e11947f.zip cpython-757ea27b0f618ec84e365edf067cc5e52e11947f.tar.gz cpython-757ea27b0f618ec84e365edf067cc5e52e11947f.tar.bz2 |
Readd NEWS items that were accidentally removed by r51276.
-rw-r--r-- | Misc/NEWS | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -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. |