summaryrefslogtreecommitdiffstats
path: root/Objects/object.c
Commit message (Expand)AuthorAgeFilesLines
* As suggested by Toby Dickenson, setting ob_type to NULL inGuido van Rossum2000-09-211-4/+0
* PyObject_SetAttr() and PyObject_GetAttr() now also accept UnicodeMarc-André Lemburg2000-09-181-11/+37
* REMOVED all CWI, CNRI and BeOpen copyright markings.Guido van Rossum2000-09-011-9/+0
* PyOS_CheckStack() returns 1 when failing, not -1.Guido van Rossum2000-08-301-1/+1
* Added PyOS_CheckStack call to PyObject_CompareJack Jansen2000-08-221-0/+13
* make_pair(): When comparing the pointers, they must be cast to integerBarry Warsaw2000-08-181-2/+6
* Updated commentAndrew M. Kuchling2000-08-161-1/+1
* Fix for http://sourceforge.net/bugs/?func=detailbug&bug_id=111866&group_id=5470.Tim Peters2000-08-151-15/+55
* Fix missing decrements of the recursive counter in PyObject_Compare().Vladimir Marangozov2000-08-111-6/+12
* Removing warnings found by gcc -WallMoshe Zadka2000-08-041-0/+4
* merge Include/my*.h into Include/pyport.hPeter Schneider-Kamp2000-07-311-2/+0
* Use 'void' directly instead of the ANY #define, now that all code is ANSI C.Thomas Wouters2000-07-251-8/+8
* Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in eitherThomas Wouters2000-07-161-1/+1
* Propagate the current exception in get_inprogress_dict() -- it doesn'tVladimir Marangozov2000-07-121-1/+0
* change abstract size functions PySequence_Size &c.Jeremy Hylton2000-07-121-1/+1
* Include macglue.h on the macintosh, so function prototypes are in scope.Jack Jansen2000-07-111-0/+4
* ANSI-fication of the sources.Fred Drake2000-07-091-105/+46
* Nuke all remaining occurrences of Py_PROTO and Py_FPROTO.Tim Peters2000-07-091-1/+1
* - changed __repr__ to use "unicode escape" encoding for unicodeFredrik Lundh2000-07-081-1/+1
* delete unused local variable from _PyTrash_deposit_objectSkip Montanaro2000-07-081-1/+0
* If auto-conversion fails, the Unicode codecs will return NULL.Marc-André Lemburg2000-07-031-11/+13
* changed repr and str to always convert unicode stringsFredrik Lundh2000-07-011-0/+16
* Neil Schemenauer: small fixes for GCGuido van Rossum2000-07-011-7/+4
* Change copyright notice - 2nd try.Guido van Rossum2000-06-301-6/+0
* Change copyright notice.Guido van Rossum2000-06-301-22/+7
* Trent Mick <trentm@activestate.com>:Fred Drake2000-06-301-6/+6
* final patches from Neil Schemenauer for garbage collectionJeremy Hylton2000-06-301-1/+33
* This patch addresses two main issues: (1) There exist some non-fatalFred Drake2000-06-291-2/+61
* Trent Mick: change a few casts for Win64 compatibility.Guido van Rossum2000-06-281-1/+1
* raise TypeError when PyObject_Get/SetAttr called with non-string nameJeremy Hylton2000-06-231-5/+17
* the PyDict_SetItem does not borrow a reference, so we need to decrefJeremy Hylton2000-06-091-0/+1
* Vladimir Marangozov's long-awaited malloc restructuring.Guido van Rossum2000-05-031-64/+60
* Christian Tismer -- total rewrite on trashcan code.Guido van Rossum2000-04-241-15/+61
* Fix PR#7 comparisons of recursive objectsJeremy Hylton2000-04-141-3/+112
* Marc-Andre Lemburg:Guido van Rossum2000-04-101-2/+15
* Skip Montanaro: add string precisions to calls to PyErr_FormatGuido van Rossum2000-04-101-2/+2
* Christian Tismer:Guido van Rossum2000-03-251-2/+8
* Christian Tismer's "trashcan" patch:Guido van Rossum2000-03-131-0/+45
* Many changes for Unicode, by Marc-Andre Lemburg.Guido van Rossum2000-03-101-11/+30
* The rest of the changes by Trent Mick and Dale Nagata for warning-freeGuido van Rossum2000-01-201-2/+4
* On Linux, one sometimes sees spurious errors after interruptingGuido van Rossum2000-01-121-0/+1
* When comparing objects, always check that tp_compare is not NULLGuido van Rossum1998-07-211-3/+7
* When comparing objects of different types (which is done by comparingGuido van Rossum1998-06-091-8/+15
* In PyObject_IsTrue(), don't call function pointers that are NULLGuido van Rossum1998-05-221-3/+6
* If USE_STACKCHECK is defined use PyOS_CheckStack() in the repr and strGuido van Rossum1998-04-281-0/+12
* Be less naive about null characters in an object's repr().Guido van Rossum1998-04-211-2/+2
* Some robustness checks in Py_ReprLeave() in the unlikely event someoneGuido van Rossum1998-04-111-0/+4
* Add implementations of Py_Repr{Enter,Leave}.Guido van Rossum1998-04-101-0/+64
* Add PyObject_Not().Guido van Rossum1998-04-091-0/+14
* Instead of "attribute-less object", issue an error message thatGuido van Rossum1998-01-191-1/+4