summaryrefslogtreecommitdiffstats
path: root/Objects/object.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #6477: Revert fbb97f6eb3b3 as it broke test_xpickle.Alexandre Vassalotti2013-12-011-2/+2
* Issue #6477: Added pickling support for singletons and their types.Alexandre Vassalotti2013-12-011-2/+2
* ensure the attribute name string is initalized before using it (closes #16839)Benjamin Peterson2013-01-021-1/+6
* initialize more global type objects (closes #16369)Benjamin Peterson2012-10-311-0/+12
* Issue #13992: The trashcan mechanism is now thread-safe. This eliminatesAntoine Pitrou2012-09-051-0/+37
* Issue #8767: Restore building with --disable-unicode.Martin v. Löwis2012-05-201-0/+2
* merge 2.6 with hash randomization fixBenjamin Peterson2012-02-211-0/+2
|\
| * - Issue #13703: oCERT-2011-003: add -R command-line option and PYTHONHASHSEEDBarry Warsaw2012-02-211-0/+2
| * Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-1605/+1605
| * 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
* | 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