cpython/Objects
2007-05-07 16:46:54 +00:00
..
stringlib
abstract.c Silence compiler warning 2007-02-07 23:49:03 +00:00
boolobject.c
bufferobject.c
cellobject.c
classobject.c As per Armin Rigo's suggestion, remove special handing from intobject.c to deal with the peculiarities of classobject's implementation of the number protocol. The nb_long method of classobject now falls back to nb_int if there is no __long__ attribute present. 2007-05-07 16:46:54 +00:00
cobject.c
codeobject.c
complexobject.c Patch #1675423: PyComplex_AsCComplex() now tries to convert an object 2007-03-17 16:08:45 +00:00
descrobject.c
dictnotes.txt Patch #1397848: add the reasoning behind no-resize-on-shrinkage. 2007-02-15 09:51:35 +00:00
dictobject.c Add test and fix for fromkeys() optional argument. 2007-03-21 20:33:57 +00:00
enumobject.c Do not let overflows in enumerate() and count() pass silently. 2007-02-08 00:07:32 +00:00
exceptions.c Deprecate BaseException.message as per PEP 352. 2007-05-05 01:34:02 +00:00
fileobject.c Export function sanitize_the_mode from fileobject.c as _PyFile_SanitizeMode(). Use this function in posixmodule.c when implementing fdopen(). This fixes test_subprocess.py for a VisualStudio 2005 compile. 2007-04-26 09:15:08 +00:00
floatobject.c Remove dead code. This code couldn't be reached because earlier in 2007-05-03 07:20:57 +00:00
frameobject.c Silence a compiler warning about incompatible pointer types. 2007-04-19 03:44:17 +00:00
funcobject.c
genobject.c
intobject.c As per Armin Rigo's suggestion, remove special handing from intobject.c to deal with the peculiarities of classobject's implementation of the number protocol. The nb_long method of classobject now falls back to nb_int if there is no __long__ attribute present. 2007-05-07 16:46:54 +00:00
iterobject.c
listobject.c Variation of patch # 1624059 to speed up checking if an object is a subclass 2007-02-25 19:44:48 +00:00
listsort.txt
longobject.c Fix problems in x64 build that were discovered by the testsuite: 2007-05-03 20:27:03 +00:00
methodobject.c
moduleobject.c
object.c Remove warning: funcion declaration isn't a prototype 2007-03-16 14:49:11 +00:00
obmalloc.c
rangeobject.c
setobject.c Extend work on rev 52962 and 53829 eliminating redundant PyObject_Hash() calls and fixing set/dict interoperability. 2007-03-20 21:27:24 +00:00
sliceobject.c SF 1191699: Make slices picklable 2007-04-11 18:40:58 +00:00
stringobject.c SF 1193128: Let str.translate(None) be an identity transformation 2007-04-12 04:10:00 +00:00
structseq.c
tupleobject.c Variation of patch # 1624059 to speed up checking if an object is a subclass 2007-02-25 19:44:48 +00:00
typeobject.c Fix for #1303614 and #1174712: 2007-05-02 19:23:31 +00:00
unicodectype.c
unicodeobject.c Variation of patch # 1624059 to speed up checking if an object is a subclass 2007-02-25 19:44:48 +00:00
unicodetype_db.h
weakrefobject.c Fix crasher for when an object's __del__ creates a new weakref to itself. 2007-01-23 23:21:22 +00:00