summaryrefslogtreecommitdiffstats
path: root/Objects/object.c
Commit message (Expand)AuthorAgeFilesLines
* Merged revisions 74457 via svnmerge fromBenjamin Peterson2009-08-151-3/+5
* Merged revisions 69846 via svnmerge fromJesus Cea2009-07-021-1/+1
* Merged revisions 71734,71738-71739 via svnmerge fromBenjamin Peterson2009-04-201-3/+51
* Merged revisions 71722,71725 via svnmerge fromBenjamin Peterson2009-04-181-8/+65
* Merged revisions 71058,71149-71150,71212,71214-71216,71222,71225,71234,71237-...Georg Brandl2009-04-051-0/+6
* Merged revisions 69433,69436 via svnmerge fromMark Dickinson2009-02-081-1/+1
* Merged revisions 68051 via svnmerge fromNick Coghlan2008-12-301-0/+11
* Merged revisions 67654,67676-67677,67681,67692,67725,67746,67748,67761,67784-...Benjamin Peterson2008-12-211-0/+3
* Issue 2235: __hash__ is once again inherited by default, but inheritance can ...Nick Coghlan2008-07-151-3/+8
* Issue 2517: Allow unicode messages in Exceptions again by correctly bypassing...Nick Coghlan2008-07-081-9/+31
* This reverts r63675 based on the discussion in this thread:Gregory P. Smith2008-06-091-29/+29
* Renamed PyString to PyBytesChristian Heimes2008-05-261-29/+29
* First step of the C API rename:Christian Heimes2008-05-261-1/+1
* Use PyErr_WarnPy3k throughoutBenjamin Peterson2008-04-271-4/+4
* Merged revisions 61750,61752,61754,61756,61760,61763,61768,61772,61775,61805,...Christian Heimes2008-03-261-0/+3
* Make Py3k warnings consistent w.r.t. punctuation; also respect theGeorg Brandl2008-03-251-5/+6
* #2346/#2347: add py3k warning for __methods__ and __members__. Patch by Jack ...Georg Brandl2008-03-211-0/+10
* Add py3k warnings for object, type, cell and dict comparisons. This should re...Steven Bethard2008-03-181-1/+11
* Fix test67.py from issue #1303614.Guido van Rossum2008-01-241-0/+5
* Re-apply patch #1700288 (first applied in r59931, rolled back in r59940)Amaury Forgeot d'Arc2008-01-141-0/+4
* Back out r59931 - test_ctypes fails with it.Georg Brandl2008-01-131-4/+0
* Patch #1700288: Method cache optimization, by Armin Rigo, ported toGeorg Brandl2008-01-121-0/+4
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFC...Christian Heimes2007-12-191-34/+34
* Backport of _abccoll.py by Benjamin Arangueren, issue 1383.Guido van Rossum2007-11-221-1/+1
* tuple.__repr__ did not consider a reference loop as it is not possible fromBrett Cannon2007-09-301-0/+5
* Add a bunch of GIL release/acquire points in tp_print implementations and forBrett Cannon2007-09-171-0/+4
* PEP 3123: Provide forward compatibility with Python 3.0, while keepingMartin v. Löwis2007-07-211-40/+40
* Add -3 option to the interpreter to warn about features that areNeal Norwitz2007-05-231-0/+1
* Remove warning: funcion declaration isn't a prototypeJeremy Hylton2007-03-161-2/+1
* Typo and grammar fixes.Georg Brandl2007-03-131-3/+3
* Backport from Py3k branch:Georg Brandl2007-03-121-96/+169
* Slightly revised version of patch #1538956:Marc-André Lemburg2006-08-141-17/+0
* Patch #1507676: improve exception messages in abstract.c, object.c and typeob...Georg Brandl2006-06-181-12/+18
* Correct some value converting strangenesses.Georg Brandl2006-05-291-1/+1
* Comment typo fixAndrew M. Kuchling2006-04-181-1/+1
* Remove types from type_list if they have no objectsMartin v. Löwis2006-04-181-6/+33
* spread the extern "C" { } magic pixie dust around. Python itself builds nowAnthony Baxter2006-04-131-0/+9
* Ignore the references to the dummy objects used as deleted keysArmin Rigo2006-04-121-1/+18
* _Py_PrintReferenceAddresses,_Py_PrintReferences:Tim Peters2006-04-111-7/+3
* Remove unnecessary casts in type object initializers.Georg Brandl2006-03-301-4/+4
* Fixed bug #1459029 - unicode reprs were double-escaped.Anthony Baxter2006-03-301-1/+1
* Heh -- used the right format for a refcount, but forgotTim Peters2006-03-231-1/+1
* _Py_NegativeRefcount(): print the full value of ob_refcnt.Tim Peters2006-03-231-3/+2
* Fix and test (manually w/xx module) passing NULLs to PyObject_Str() andNeal Norwitz2006-03-141-5/+7
* Fix bug found by Coverity: don't allow NULL argument to PyUnicode_CheckExactGeorg Brandl2006-03-131-2/+2
* Change int to Py_ssize_t in several places.Martin v. Löwis2006-03-071-2/+2
* Oops, forgot to include this in the last checkin.Neal Norwitz2006-03-041-1/+1
* Use %ld and casts to long for refcount printing, in absense of a universallyThomas Wouters2006-03-011-8/+18
* Revert backwards-incompatible const changes.Martin v. Löwis2006-02-271-2/+2
* Merge ssize_t branch.Martin v. Löwis2006-02-151-11/+12