summaryrefslogtreecommitdiff
path: root/Objects/object.c
Commit message (Expand)AuthorAgeFilesLines
* must clear an AttributeError if it is setBenjamin Peterson2011-05-231-2/+6
* handle old-style instancesBenjamin Peterson2011-05-231-3/+10
* correctly lookup __dir__Benjamin Peterson2011-05-231-3/+5
* Merged revisions 84344 via svnmerge fromAntoine Pitrou2010-08-281-48/+65
* Untabify C files. Will watch buildbots.Antoine Pitrou2010-05-091-1613/+1613
* Use a better NaN test in _Py_HashDouble as well.Mark Dickinson2010-04-051-3/+6
* Use a more robust infinity check in _Py_HashDouble.Mark Dickinson2010-04-051-3/+3
* Backported PyCapsule from 3.1, and converted most uses ofLarry Hastings2010-03-251-0/+4
* #6707 fix a crash with dir() on an uninitialized moduleBenjamin Peterson2009-08-151-3/+5
* Uninitialized file type would lead to __exit__ lookup failure when site.pyAntoine Pitrou2009-05-311-0/+3
* handle errors from _PyObject_LookupSpecial when __get__ failsBenjamin Peterson2009-05-251-0/+2
* this is now a bound methodBenjamin Peterson2009-05-081-1/+1
* add _PyObject_LookupSpecial to handle fetching special method lookupBenjamin Peterson2009-05-081-12/+3
* make errors consistentBenjamin Peterson2009-04-191-2/+2
* initialize weakref some weakref typesBenjamin Peterson2009-04-191-0/+6
* many more types to initialize (I had to expose some of them)Benjamin Peterson2009-04-181-1/+43
* initalize -> initializeBenjamin Peterson2009-04-181-4/+4
* try to initalize all builtin types with PyType_Ready to avoid problems like #...Benjamin Peterson2009-04-181-8/+68
* #5615: make it possible to configure --without-threads again.Georg Brandl2009-04-051-0/+6
* Issue #5341: Fix a variety of spelling errors.Mark Dickinson2009-02-211-1/+1
* Fix compiler warning (gcc)Antoine Pitrou2009-02-131-1/+1
* Issue #5186: Reduce hash collisions for objects with no __hash__ method byAntoine Pitrou2009-02-131-15/+7
* Issue #789290: make sure that hash(2**63) == hash(2.**63) on 64-bitMark Dickinson2009-02-081-1/+1
* #3720: Interpreter crashes when an evil iterator removes its own next function.Amaury Forgeot d'Arc2009-01-121-0/+14
* Issue #4850: Change COUNT_ALLOCS variables to Py_ssize_t.Martin v. Löwis2009-01-071-8/+13
* Issue #4701: implicitly call PyType_Ready from PyObject_HashNick Coghlan2008-12-301-0/+11
* #3632: the "pyo" macro from gdbinit can now run when the GIL is released.Amaury Forgeot d'Arc2008-12-151-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