.. |
stringlib
|
changed count to return 0 for slices outside the source string
|
2006-05-30 17:39:58 +00:00 |
abstract.c
|
Fix for an obscure bug introduced by revs 46806 and 46808, with a test.
|
2006-06-21 21:58:50 +00:00 |
boolobject.c
|
Remove unnecessary casts in type object initializers.
|
2006-03-30 11:57:00 +00:00 |
bufferobject.c
|
Suppress warning on MacOSX about possible use before set of proc.
|
2006-06-10 22:38:13 +00:00 |
cellobject.c
|
Another problem reported by Coverity. Backport candidate.
|
2006-06-30 07:32:46 +00:00 |
classobject.c
|
If a classic class defined a __coerce__() method that just returned its two
|
2006-06-13 21:46:41 +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
|
Put method-wrappers into trashcan. Fixes #927248.
|
2006-07-03 13:47:40 +00:00 |
dictnotes.txt
|
Fix typos and add some elaborations
|
2004-03-15 15:52:22 +00:00 |
dictobject.c
|
Add some asserts that we got good params passed
|
2006-07-21 05:29:58 +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
|
Fix build problems with the platform SDK on windows. It is not sufficient to test for the C compiler version when determining if we have the secure CRT from microsoft. Must test with an undocumented macro, __STDC_SECURE_LIB__ too.
|
2006-07-03 14:59:05 +00:00 |
fileobject.c
|
Stop INCREFing name, then checking if it's NULL. name (f_name) should never
|
2006-07-17 00:55:45 +00:00 |
floatobject.c
|
Added a new macro, Py_IS_FINITE(X). On windows there is an intrinsic for this and it is more efficient than to use !Py_IS_INFINITE(X) && !Py_IS_NAN(X). No change on other platforms
|
2006-05-25 15:53:30 +00:00 |
frameobject.c
|
Move the initialization of some pointers earlier. The problem is
|
2006-07-21 05:31:02 +00:00 |
funcobject.c
|
PyFunction_SetDefaults() is documented as taking None or a tuple.
|
2006-07-16 02:35:47 +00:00 |
genobject.c
|
Make use of METH_O and METH_NOARGS where possible.
|
2006-05-29 21:04:52 +00:00 |
intobject.c
|
C++ compiler cleanup: bunch-o-casts, plus use of unsigned loop index var in a couple places
|
2006-04-18 00:35:43 +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
|
Don't leak the list object if there's an error allocating the item storage. Backport candidate
|
2006-06-12 02:08:41 +00:00 |
listsort.txt
|
The key to the various sort columns got lost. Pulled from
|
2005-09-23 17:14:22 +00:00 |
longobject.c
|
Move the initialization of size_a down below the check for a being NULL.
|
2006-07-23 07:53:14 +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
|
Patch #1507676: improve exception messages in abstract.c, object.c and typeobject.c.
|
2006-06-18 22:17:29 +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
|
otherset is known to be non-NULL based on checks before and DECREF after.
|
2006-07-17 00:57:15 +00:00 |
sliceobject.c
|
Allow long integers in PySlice_GetIndices.
|
2006-04-03 11:38:08 +00:00 |
stringobject.c
|
Update doc to make it agree with code.
|
2006-06-11 05:47:14 +00:00 |
structseq.c
|
Unlink the structseq type from the global list of
|
2006-04-15 12:45:05 +00:00 |
tupleobject.c
|
Use Py_VISIT in all tp_traverse methods, instead of traversing manually or
|
2006-04-15 21:47:09 +00:00 |
typeobject.c
|
Handle allocation failures gracefully. Found with failmalloc.
|
2006-07-21 05:32:28 +00:00 |
unicodectype.c
|
Patch 1494554: Update numeric properties to Unicode 4.1.
|
2006-05-27 08:36:52 +00:00 |
unicodeobject.c
|
Handle allocation failures gracefully. Found with failmalloc.
|
2006-07-21 05:32:28 +00:00 |
unicodetype_db.h
|
Update Unicode database to Unicode 4.1.
|
2006-03-09 23:38:20 +00:00 |
weakrefobject.c
|
Replace PyObject_CallFunction calls with only object args
|
2006-05-25 19:15:31 +00:00 |