summaryrefslogtreecommitdiffstats
path: root/Objects/typeobject.c
Commit message (Expand)AuthorAgeFilesLines
...
* Implementation of PEP 3101, Advanced String Formatting.Eric Smith2007-08-251-0/+41
* Remove _PyObject_DelNeal Norwitz2007-08-191-1/+1
* Merged in py3k-buffer branch to main line. All objects now use the buffer pr...Travis E. Oliphant2007-08-181-4/+2
* Kill all uses and definitions of tp_print under Objects/. (Others will follow.)Guido van Rossum2007-08-071-3/+0
* Fix an obvious bug caused by a switch to Unicode.Guido van Rossum2007-08-041-1/+2
* Add a default __prepare__() method to 'type', so it can be calledGuido van Rossum2007-08-021-0/+10
* Merged revisions 56467-56482 via svnmerge fromMartin v. Löwis2007-07-211-109/+106
* Revert a wrong commit.Thomas Heller2007-07-111-14/+7
* Must create heaptypes with unicode names.Thomas Heller2007-07-111-7/+14
* Make test_descr.py pass. Had to disable a few tests, remove referencesGuido van Rossum2007-07-111-0/+5
* Merged revisions 55817-55961 via svnmerge fromGuido van Rossum2007-06-131-11/+73
* Discard unused function.Guido van Rossum2007-06-131-34/+0
* Simplify error formatting and type_repr().Walter Dörwald2007-06-111-8/+4
* Check unicode identifier directly instead of convertingWalter Dörwald2007-06-111-4/+4
* __module__ is a unicode string now:Walter Dörwald2007-06-111-5/+2
* Expect unicode in class_name.Martin v. Löwis2007-06-101-3/+3
* Make identifiers str (not str8) objects throughout.Martin v. Löwis2007-06-101-45/+44
* Merged revisions 55407-55513 via svnmerge fromGuido van Rossum2007-05-221-1/+1
* Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirrorWalter Dörwald2007-05-181-9/+15
* Merged revisions 55325-55327 via svnmerge fromGuido van Rossum2007-05-141-4/+85
* Get rid of all #ifdef Py_USING_UNICODE (it is always present now).Guido van Rossum2007-05-031-4/+0
* Merged revisions 53952-54987 via svnmerge fromGuido van Rossum2007-04-271-138/+306
* PEP 3114: rename .next() to .__next__() and add next() builtin.Georg Brandl2007-04-211-3/+3
* Fix refcounting bug reported by Amaury Forgeot d'Arc.Guido van Rossum2007-03-291-1/+2
* By default, != returns the opposite of ==, unless the latter returnsGuido van Rossum2007-03-271-1/+16
* Merged revisions 53875-53911 via svnmerge fromThomas Wouters2007-02-251-1/+19
* Merged revisions 53623-53858 via svnmerge fromThomas Wouters2007-02-231-1/+7
* - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone;Guido van Rossum2007-02-111-1/+5
* Merged revisions 53451-53537 via svnmerge fromThomas Wouters2007-02-011-0/+11
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-131-15/+8
* - patch #1600346 submitted by Tomer FilibaJack Diederich2006-11-281-9/+16
* 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