summaryrefslogtreecommitdiffstats
path: root/Objects/object.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* Add const to several API functions that take char *.Jeremy Hylton2005-12-101-5/+5
* Change the %s format specifier for str objects so that it returns aNeil Schemenauer2005-08-121-9/+29
* Make subclasses of int, long, complex, float, and unicode perform typeBrett Cannon2005-04-261-25/+24
* Dima Dorfman's patch for coercion/comparison of C types (patch #995939), withArmin Rigo2004-12-231-16/+11
* Remove 'extern' declaration for _Py_SwappedOp.Brett Cannon2004-09-251-1/+1
* A static swapped_op[] array was defined in 3 different C files, & I thinkTim Peters2004-09-231-4/+4
* Move a comment back to its rightful location.Michael W. Hudson2004-09-141-2/+2
* SF bug #1004669: Type returned from .keys() is not checkedRaymond Hettinger2004-08-071-0/+5