summaryrefslogtreecommitdiffstats
path: root/Objects/typeobject.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #1950: Fixed misusage of PyUnicode_AsString().Alexandre Vassalotti2008-05-031-7/+14
* Bug #2565: The repr() of type objects now calls them 'class',Martin v. Löwis2008-04-071-8/+2
* Merged revisions 61038,61042-61045,61047,61050,61053,61055-61056,61061-61062,...Christian Heimes2008-02-281-0/+98
* Merged revisions 60364-60378 via svnmerge fromChristian Heimes2008-01-271-0/+18
* Merged revisions 60350-60363 via svnmerge fromChristian Heimes2008-01-271-5/+5
* Merged revisions 59921-59932 via svnmerge fromChristian Heimes2008-01-121-6/+204
* Simplifed argument parsing in object.__format__, added test case.Eric Smith2008-01-111-5/+1
* Issue #1393: object_richcompare() returns NotImplemented instead ofGuido van Rossum2008-01-061-1/+4
* Merge changes from 59576 from trunk to p3yk branch; these were skippedGuido van Rossum2008-01-011-13/+16
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.Christian Heimes2007-12-191-103/+103
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-021-7/+7
* #1535: rename __builtin__ module to builtins.Georg Brandl2007-12-021-3/+3
* Replace PyObject_Unicode with PyObject_Str everywhere, and remove theThomas Heller2007-11-151-1/+1
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-061-2/+2
* Fixes for issue 1752184, ensuring type objects are always createdGuido van Rossum2007-11-021-3/+12
* Merged revisions 57778-58052 via svnmerge fromThomas Wouters2007-09-081-9/+0
* Remove the simple slicing API. All slicing is now done with slice objects.Thomas Wouters2007-08-301-79/+0
* Fix #1753395.Georg Brandl2007-08-301-16/+4
* Use unicode and remove support for some uses of str8.Neal Norwitz2007-08-261-14/+10
* Use unicode and remove support for some uses of str8.Neal Norwitz2007-08-261-27/+17
* Use unicodeNeal Norwitz2007-08-251-10/+25
* 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