486 Commits (964663089547ca110199e23867b46b07ff4be88c)

Author SHA1 Message Date
Andrew M. Kuchling 1582a3ab98 Updated comment 26 years ago
Tim Peters 39dce29365 Fix for http://sourceforge.net/bugs/?func=detailbug&bug_id=111866&group_id=5470. 26 years ago
Vladimir Marangozov 1d3e239f08 Fix missing decrements of the recursive counter in PyObject_Compare(). 26 years ago
Moshe Zadka cf703f04ad Removing warnings found by gcc -Wall 26 years ago
Peter Schneider-Kamp 7e01890986 merge Include/my*.h into Include/pyport.h 26 years ago
Thomas Wouters 334fb8985b Use 'void' directly instead of the ANY #define, now that all code is ANSI C. 26 years ago
Thomas Wouters 7e47402264 Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either 26 years ago
Vladimir Marangozov 8dc19f672b Propagate the current exception in get_inprogress_dict() -- it doesn't 26 years ago
Jeremy Hylton 6253f83b0a change abstract size functions PySequence_Size &c. 26 years ago
Jack Jansen 28fc880e9a Include macglue.h on the macintosh, so function prototypes are in scope. 26 years ago
Fred Drake 100814dc44 ANSI-fication of the sources. 26 years ago
Tim Peters dbd9ba6a6c Nuke all remaining occurrences of Py_PROTO and Py_FPROTO. 26 years ago
Fredrik Lundh 2a1e060619 - changed __repr__ to use "unicode escape" encoding for unicode 26 years ago
Skip Montanaro 4cbc9f7650 delete unused local variable from _PyTrash_deposit_object 26 years ago
Marc-André Lemburg 891bc65486 If auto-conversion fails, the Unicode codecs will return NULL. 26 years ago
Fredrik Lundh efecc7d05b changed repr and str to always convert unicode strings 26 years ago
Guido van Rossum 4cc6ac7b87 Neil Schemenauer: small fixes for GC 26 years ago
Guido van Rossum ffcc3813d8 Change copyright notice - 2nd try. 26 years ago
Guido van Rossum fd71b9e9d4 Change copyright notice. 26 years ago
Fred Drake a44d353e2b Trent Mick <trentm@activestate.com>: 26 years ago
Jeremy Hylton c5007aa5c3 final patches from Neil Schemenauer for garbage collection 26 years ago
Fred Drake 13634cf7a4 This patch addresses two main issues: (1) There exist some non-fatal 26 years ago
Guido van Rossum ad89bbcd88 Trent Mick: change a few casts for Win64 compatibility. 26 years ago
Jeremy Hylton 99a8f90874 raise TypeError when PyObject_Get/SetAttr called with non-string name 26 years ago
Jeremy Hylton a251ea0680 the PyDict_SetItem does not borrow a reference, so we need to decref 26 years ago
Guido van Rossum b18618dab7 Vladimir Marangozov's long-awaited malloc restructuring. 26 years ago
Guido van Rossum e92e610a9e Christian Tismer -- total rewrite on trashcan code. 26 years ago
Jeremy Hylton 4a3dd2dcc2 Fix PR#7 comparisons of recursive objects 26 years ago
Guido van Rossum b244f6950b Marc-Andre Lemburg: 26 years ago
Guido van Rossum 5db862dd0c Skip Montanaro: add string precisions to calls to PyErr_Format 26 years ago
Guido van Rossum 13ff8eb493 Christian Tismer: 26 years ago
Guido van Rossum d724b23420 Christian Tismer's "trashcan" patch: 26 years ago
Guido van Rossum 4c08d554b9 Many changes for Unicode, by Marc-Andre Lemburg. 26 years ago
Guido van Rossum bffd683f73 The rest of the changes by Trent Mick and Dale Nagata for warning-free 26 years ago
Guido van Rossum 687ef6e70b On Linux, one sometimes sees spurious errors after interrupting 26 years ago
Guido van Rossum b4db1944c4 When comparing objects, always check that tp_compare is not NULL 28 years ago
Guido van Rossum cd5a5f627a When comparing objects of different types (which is done by comparing 28 years ago
Guido van Rossum 1c4f458099 In PyObject_IsTrue(), don't call function pointers that are NULL 28 years ago
Guido van Rossum 9b00dfae75 If USE_STACKCHECK is defined use PyOS_CheckStack() in the repr and str 28 years ago
Guido van Rossum 565798d493 Be less naive about null characters in an object's repr(). 28 years ago
Guido van Rossum eb90946978 Some robustness checks in Py_ReprLeave() in the unlikely event someone 28 years ago
Guido van Rossum 8661036cb8 Add implementations of Py_Repr{Enter,Leave}. 28 years ago
Guido van Rossum c3d3f9692d Add PyObject_Not(). 28 years ago
Guido van Rossum db9351643d Instead of "attribute-less object", issue an error message that 28 years ago
Guido van Rossum 242c64256c Add a new function PyNumber_CoerceEx() which works just like 28 years ago
Guido van Rossum ea46e4d93c Fix mixup about PyErr_NoMemory() prototype. 29 years ago
Guido van Rossum e09fb55f29 Added _Py_ResetReferences(), if tracing references. 29 years ago
Guido van Rossum c8b6df9004 PyObject_Compare can raise an exception now. 29 years ago
Guido van Rossum 98ff96adba Moved PyObject_{Get,Set}Attr here (from dictobject) and add PyObject_HasAttr. 29 years ago
Guido van Rossum d0c87ee6c4 Oops, another forgotten renaming: varobject -> PyVarObject. 29 years ago