summaryrefslogtreecommitdiff
path: root/Objects/object.c
Commit message (Expand)AuthorAgeFilesLines
* Merged revisions 69846 via svnmerge fromMark Dickinson2009-02-211-1/+1
* Merged revisions 69582-69583 via svnmerge fromAntoine Pitrou2009-02-131-15/+7
* Merged revisions 69436 via svnmerge fromMark Dickinson2009-02-081-1/+1
* Issue #1717: rename tp_compare to tp_reserved. I'll change theMark Dickinson2009-02-021-3/+3
* Issue #1717, continued: remove PyObject_Compare and Py_CmpToRich declarationsMark Dickinson2009-02-011-28/+9
* Issue #1717: remove the cmp builtin function, the C-API functionsMark Dickinson2009-02-011-100/+0
* Merged revisions 68560 via svnmerge fromAmaury Forgeot d'Arc2009-01-121-0/+14
* Merged revisions 68381 via svnmerge fromBenjamin Peterson2009-01-111-8/+13
* Recorded merge of revisions 68051 via svnmerge fromNick Coghlan2008-12-301-0/+11
* Merged revisions 67654,67676-67677,67681,67692,67725,67761,67784-67785,67787-...Benjamin Peterson2008-12-211-0/+3
* Issue #4296: Fix PyObject_RichCompareBool so that "x in [x]" evaluates toMark Dickinson2008-11-121-0/+9
* Removed bytesmeth declaration in OyObject_Bytes. It's not used any more and c...Christian Heimes2008-08-281-1/+1
* make bytes(o) respect __bytes__ #2415Benjamin Peterson2008-08-261-0/+39
* Rename PyUnicode_AsString -> _PyUnicode_AsString andMarc-André Lemburg2008-08-071-3/+3
* Manual forward port of 64962 - use PyObject_HashNotImplemented as a tp_hash l...Nick Coghlan2008-07-151-4/+9
* #2630: Implement PEP 3138.Georg Brandl2008-06-111-0/+27
* Renamed PyString to PyBytesChristian Heimes2008-05-261-6/+6
* Renamed PyBytes to PyByteArrayChristian Heimes2008-05-261-1/+1
* Merged revisions 60245-60277 via svnmerge fromChristian Heimes2008-01-251-0/+5
* Merged revisions 59921-59932 via svnmerge fromChristian Heimes2008-01-121-0/+4
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.Christian Heimes2007-12-191-23/+23
* Partial fix for bug #1306Christian Heimes2007-11-301-1/+8
* Found another memory leak in longrangeiter. And redo the previous correctionAmaury Forgeot d'Arc2007-11-151-3/+0
* Correct a memory leak: the range() object was not properly freed.Amaury Forgeot d'Arc2007-11-151-0/+3
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-061-131/+37
* Merged revisions 58221-58741 via svnmerge fromGuido van Rossum2007-11-011-0/+5
* Patch 1352 (continued in issue 1329) by Christian Heimes.Guido van Rossum2007-10-301-0/+3
* Merged revisions 58095-58132,58136-58148,58151-58197 via svnmerge fromThomas Wouters2007-09-191-0/+4
* Use unicode and remove support for some uses of str8.Neal Norwitz2007-08-261-13/+7
* Oops. The PyObject_Print() function was totally broken; the original codeGuido van Rossum2007-08-091-3/+19
* Kill all uses and definitions of tp_print under Objects/. (Others will follow.)Guido van Rossum2007-08-071-3/+1
* Merged revisions 56467-56482 via svnmerge fromMartin v. Löwis2007-07-211-34/+34
* Remove unused local variable.Thomas Heller2007-07-111-1/+0
* Make test_descr.py pass. Had to disable a few tests, remove referencesGuido van Rossum2007-07-111-5/+5
* Simplify error formatting.Walter Dörwald2007-06-111-10/+10
* Make identifiers str (not str8) objects throughout.Martin v. Löwis2007-06-101-76/+32
* Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirrorWalter Dörwald2007-05-181-15/+35
* Simplify PyObject_Unicode(NULL) by usingWalter Dörwald2007-05-111-8/+3
* It's ok for __repr__ to return unicode.Guido van Rossum2007-05-041-9/+2
* More coding by random modification.Guido van Rossum2007-05-041-5/+6
* Get rid of all #ifdef Py_USING_UNICODE (it is always present now).Guido van Rossum2007-05-031-18/+0
* Rough and dirty job -- allow concatenation of bytes and arbitraryGuido van Rossum2007-04-131-2/+1
* Check the keys of the locals dict -- they need not be a list.Georg Brandl2007-03-121-1/+12
* Patch #1591665: implement the __dir__() special function lookup in PyObject_Dir.Georg Brandl2007-03-101-126/+144
* Merged revisions 53451-53537 via svnmerge fromThomas Wouters2007-02-011-1/+1
* The opstrings table was backwards. Add an XXX comment.Guido van Rossum2006-12-191-1/+2
* - patch #1600346 submitted by Tomer FilibaJack Diederich2006-11-281-2/+2
* Get rid of more coerce cruft (really check in this time :-)Neal Norwitz2006-08-291-27/+0
* Get rid of most of the remaining uses of <>. There's still Tools/* thogh.Neal Norwitz2006-08-291-1/+1
* Restructure comparison dramatically. There is no longer a defaultGuido van Rossum2006-08-241-375/+177