cpython/Objects
Alex Martelli 20362a820b x**2 should about equal x*x (including for a float x such that the result is
inf) but didn't; added a test to test_float to verify that, and ignored the
ERANGE value for errno in the pow operation to make the new test pass (with
help from Marilyn Davis at the Google Python Sprint -- thanks!).
2006-08-23 20:42:02 +00:00
..
stringlib changed count to return 0 for slices outside the source string 2006-05-30 17:39:58 +00:00
abstract.c Subclasses of int/long are allowed to define an __index__. 2006-08-15 06:29:03 +00:00
boolobject.c Remove unnecessary casts in type object initializers. 2006-03-30 11:57:00 +00:00
bufferobject.c memcmp() can return values other than -1, 0, and +1 but tp_compare 2006-08-08 17:37:00 +00:00
cellobject.c Another problem reported by Coverity. Backport candidate. 2006-06-30 07:32:46 +00:00
classobject.c Move initialization of interned strings to before allocating the 2006-08-19 04:22:33 +00:00
cobject.c Remove unnecessary casts in type object initializers. 2006-03-30 11:57:00 +00:00
codeobject.c Fix uninitialized memory read reported by Valgrind when running doctest. 2006-07-12 05:27:46 +00:00
complexobject.c Use sizeof(buffer) instead of duplicating the constants to ensure they won't 2006-07-16 02:22:30 +00:00
descrobject.c Change fix for segfaulting property(), add a NEWS entry and a test. 2006-08-04 18:03:37 +00:00
dictnotes.txt Typo fixes 2006-08-04 20:37:43 +00:00
dictobject.c Typo fixes 2006-08-04 20:37:43 +00:00
enumobject.c Use Py_VISIT in all tp_traverse methods, instead of traversing manually or 2006-04-15 21:47:09 +00:00
exceptions.c Slightly revised version of patch #1538956: 2006-08-14 10:55:19 +00:00
fileobject.c Fix a couple of ssize-t issues reported by Alexander Belopolsky on python-dev 2006-08-21 18:20:10 +00:00
floatobject.c x**2 should about equal x*x (including for a float x such that the result is 2006-08-23 20:42:02 +00:00
frameobject.c Move the initialization of some pointers earlier. The problem is 2006-07-21 05:31:02 +00:00
funcobject.c Whoops, how did that get in there. :-) Revert all the parts of 51227 that were not supposed to go it. Only Modules/_ctypes/cfields.c was supposed to be changed 2006-08-12 02:12:30 +00:00
genobject.c Make use of METH_O and METH_NOARGS where possible. 2006-05-29 21:04:52 +00:00
intobject.c Patch #1538606, Patch to fix __index__() clipping. 2006-08-12 17:03:09 +00:00
iterobject.c Use Py_VISIT in all tp_traverse methods, instead of traversing manually or 2006-04-15 21:47:09 +00:00
listobject.c Move initialization to after the asserts for non-NULL values. 2006-08-19 04:28:55 +00:00
listsort.txt typo fix 2006-08-01 16:24:30 +00:00
longobject.c Patch #1538606, Patch to fix __index__() clipping. 2006-08-12 17:03:09 +00:00
methodobject.c Use Py_VISIT in all tp_traverse methods, instead of traversing manually or 2006-04-15 21:47:09 +00:00
moduleobject.c Use Py_VISIT in all tp_traverse methods, instead of traversing manually or 2006-04-15 21:47:09 +00:00
object.c Slightly revised version of patch #1538956: 2006-08-14 10:55:19 +00:00
obmalloc.c _PyObject_DebugMalloc(): The return value should add 2006-06-04 03:38:04 +00:00
rangeobject.c Remove "static forward" declaration. Move constructors 2006-04-11 09:04:12 +00:00
setobject.c [Bug #1414697] Change docstring of set/frozenset types to specify that the contents are unique. Raymond, please feel free to edit or revert. 2006-07-29 15:10:32 +00:00
sliceobject.c Patch #1538606, Patch to fix __index__() clipping. 2006-08-12 17:03:09 +00:00
stringobject.c Fix refleak introduced in rev. 51248. 2006-08-14 20:25:39 +00:00
structseq.c Klocwork made another run and found a bunch more problems. 2006-08-12 01:43:40 +00:00
tupleobject.c Patch #1538606, Patch to fix __index__() clipping. 2006-08-12 17:03:09 +00:00
typeobject.c Fix a couple of bugs exposed by the new __index__ code. The 64-bit buildbots 2006-08-12 18:44:06 +00:00
unicodectype.c Patch 1494554: Update numeric properties to Unicode 4.1. 2006-05-27 08:36:52 +00:00
unicodeobject.c Patch #1541585: fix buffer overrun when performing repr() on 2006-08-21 22:21:19 +00:00
unicodetype_db.h Update Unicode database to Unicode 4.1. 2006-03-09 23:38:20 +00:00
weakrefobject.c _PyWeakref_GetWeakrefCount() now returns a Py_ssize_t instead of long. 2006-08-02 06:14:22 +00:00