summaryrefslogtreecommitdiffstats
path: root/Objects/typeobject.c
Commit message (Expand)AuthorAgeFilesLines
...
* Get rid of more coerce cruft (really check in this time :-)Neal Norwitz2006-08-291-1/+0
* Restructure comparison dramatically. There is no longer a defaultGuido van Rossum2006-08-241-13/+27
* remove debugging turd.Thomas Wouters2006-08-211-4/+0
* Change the way __hash__ is inherited; when __eq__ or __cmp__ is overriddenGuido van Rossum2006-08-211-11/+47
* Merge current trunk into p3yk. This includes the PyNumber_Index API change,Thomas Wouters2006-08-211-25/+8
* Get rid of most of the rest of coerce (slot is still there for now).Neal Norwitz2006-08-211-88/+0
* Get rid of dict.has_key(). Boy this has a lot of repercussions!Guido van Rossum2006-08-181-1/+0
* Fix non-C89-compatible syntax.Guido van Rossum2006-08-171-2/+2
* Completely get rid of PyClass and PyInstance.Guido van Rossum2006-08-171-107/+30
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-111-15/+38
* Get rid of most of the flags (in tp_flags) that keep track of variousGuido van Rossum2006-07-271-63/+9
* Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.Thomas Wouters2006-05-271-5/+5
* Merge trunk up to 45598.Thomas Wouters2006-04-211-4/+4
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-129/+83
* Get rid of remnants of integer divisionNeal Norwitz2006-03-241-16/+5
* Fix three nits found by Coverity, adding null checks and comments.Guido van Rossum2006-03-101-3/+15
* Checking in the code for PEP 357.Guido van Rossum2006-03-071-0/+43
* Change int to Py_ssize_t in several places.Martin v. Löwis2006-03-071-2/+3
* Revert backwards-incompatible const changes.Martin v. Löwis2006-02-271-1/+1
* Bug #1086854: Rename PyHeapType members adding ht_ prefix.Georg Brandl2006-02-201-9/+9
* Use Py_ssize_t for counts and sizes.Martin v. Löwis2006-02-161-8/+9
* Support %zd in PyErr_Format and PyString_FromFormat.Martin v. Löwis2006-02-161-2/+1
* Merge ssize_t branch.Martin v. Löwis2006-02-151-77/+87
* Fix ref/memory leak introduced in rev 41845.Neal Norwitz2006-01-021-0/+2
* SF bug #1153075: "PyXxx_Check(x) trusts x->ob_type->tp_mro".Armin Rigo2005-12-291-0/+33
* SF patch #1390657:Armin Rigo2005-12-291-16/+15
* Add const to several API functions that take char *.Jeremy Hylton2005-12-101-6/+10
* Merge ast-branch to headJeremy Hylton2005-10-201-9/+3
* (pedronis, arigo)Armin Rigo2005-09-241-1/+1
* - On 64-bit platforms, when __len__() returns a value that cannot beGuido van Rossum2005-09-201-1/+11
* fix object.__divmod__.__doc__Anthony Baxter2005-06-031-2/+8
* Fixed a quite misleading comment: a "not" should not have been there.Armin Rigo2005-05-151-1/+1
* SF bug #1155938: Missing None check for __init__().Raymond Hettinger2005-03-031-0/+6
* A static swapped_op[] array was defined in 3 different C files, & I thinkTim Peters2004-09-231-4/+1
* Patch #980082: Missing INCREF in PyType_Ready.Martin v. Löwis2004-08-181-1/+3
* Repair the same thinko in two places about handling of _Py_RefTotal inMichael W. Hudson2004-08-031-4/+5
* Cosmetic spacing fix.Raymond Hettinger2004-06-251-1/+1
* Fix leak found by Eric Huss.Raymond Hettinger2004-06-251-1/+6
* Fix for bug #966623 - classes created with type() in an exec(, {}) don'tAnthony Baxter2004-06-111-0/+4
* Get rid of gcc warning.Hye-Shik Chang2004-03-251-1/+2
* Ensure super() lookup of descriptor from classmethod works (SF #743627)Phillip J. Eby2004-03-251-1/+8
* Fixed a bug in object.__reduce_ex__ (reduce_2) when using protocolJim Fulton2004-02-081-0/+1
* Improve argument checking speed.Raymond Hettinger2003-12-131-17/+44
* * Added a new method flag, METH_COEXIST.Raymond Hettinger2003-12-131-2/+3
* subtype_dealloc(): Simplified overly contorted retracking logic. WithTim Peters2003-11-131-6/+5
* subtype_dealloc(): A more complete fix for critical bug 840829 +Tim Peters2003-11-131-6/+19
* SF bug 840829: weakref callbacks and gc corrupt memory.Tim Peters2003-11-121-1/+6
* Fix a bunch of typos in documentation, docstrings and comments.Walter Dörwald2003-10-201-1/+1
* Simplify and speedup uses of Py_BuildValue():Raymond Hettinger2003-10-121-11/+10
* Use the simpler and faster PyArg_UnpackTuple() instead ofRaymond Hettinger2003-10-111-24/+24