summaryrefslogtreecommitdiffstats
path: root/Objects/object.c
Commit message (Expand)AuthorAgeFilesLines
* Merged revisions 60245-60277 via svnmerge fromChristian Heimes2008-01-251-0/+5
* Merged revisions 59921-59932 via svnmerge fromChristian Heimes2008-01-121-0/+4
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.Christian Heimes2007-12-191-23/+23
* Partial fix for bug #1306Christian Heimes2007-11-301-1/+8
* Found another memory leak in longrangeiter. And redo the previous correctionAmaury Forgeot d'Arc2007-11-151-3/+0
* Correct a memory leak: the range() object was not properly freed.Amaury Forgeot d'Arc2007-11-151-0/+3
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-061-131/+37
* Merged revisions 58221-58741 via svnmerge fromGuido van Rossum2007-11-011-0/+5
* Patch 1352 (continued in issue 1329) by Christian Heimes.Guido van Rossum2007-10-301-0/+3
* Merged revisions 58095-58132,58136-58148,58151-58197 via svnmerge fromThomas Wouters2007-09-191-0/+4
* Use unicode and remove support for some uses of str8.Neal Norwitz2007-08-261-13/+7
* Oops. The PyObject_Print() function was totally broken; the original codeGuido van Rossum2007-08-091-3/+19
* Kill all uses and definitions of tp_print under Objects/. (Others will follow.)Guido van Rossum2007-08-071-3/+1
* Merged revisions 56467-56482 via svnmerge fromMartin v. Löwis2007-07-211-34/+34
* Remove unused local variable.Thomas Heller2007-07-111-1/+0
* Make test_descr.py pass. Had to disable a few tests, remove referencesGuido van Rossum2007-07-111-5/+5
* Simplify error formatting.Walter Dörwald2007-06-111-10/+10
* Make identifiers str (not str8) objects throughout.Martin v. Löwis2007-06-101-76/+32
* Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirrorWalter Dörwald2007-05-181-15/+35
* Simplify PyObject_Unicode(NULL) by usingWalter Dörwald2007-05-111-8/+3
* It's ok for __repr__ to return unicode.Guido van Rossum2007-05-041-9/+2
* More coding by random modification.Guido van Rossum2007-05-041-5/+6
* Get rid of all #ifdef Py_USING_UNICODE (it is always present now).Guido van Rossum2007-05-031-18/+0
* Rough and dirty job -- allow concatenation of bytes and arbitraryGuido van Rossum2007-04-131-2/+1
* Check the keys of the locals dict -- they need not be a list.Georg Brandl2007-03-121-1/+12
* Patch #1591665: implement the __dir__() special function lookup in PyObject_Dir.Georg Brandl2007-03-101-126/+144
* Merged revisions 53451-53537 via svnmerge fromThomas Wouters2007-02-011-1/+1
* The opstrings table was backwards. Add an XXX comment.Guido van Rossum2006-12-191-1/+2
* - patch #1600346 submitted by Tomer FilibaJack Diederich2006-11-281-2/+2
* Get rid of more coerce cruft (really check in this time :-)Neal Norwitz2006-08-291-27/+0
* Get rid of most of the remaining uses of <>. There's still Tools/* thogh.Neal Norwitz2006-08-291-1/+1
* Restructure comparison dramatically. There is no longer a defaultGuido van Rossum2006-08-241-375/+177
* Change the way __hash__ is inherited; when __eq__ or __cmp__ is overriddenGuido van Rossum2006-08-211-1/+8
* Merge current trunk into p3yk. This includes the PyNumber_Index API change,Thomas Wouters2006-08-211-17/+0
* Get rid of most of the rest of coerce (slot is still there for now).Neal Norwitz2006-08-211-19/+1
* Completely get rid of PyClass and PyInstance.Guido van Rossum2006-08-171-39/+11
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-111-12/+18
* Get rid of most of the flags (in tp_flags) that keep track of variousGuido van Rossum2006-07-271-16/+3
* Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svnThomas Wouters2006-06-081-1/+1
* Here is a bytes type. It's very minimal but it's a start.Guido van Rossum2006-04-221-0/+3
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-23/+71
* Fix and test (manually w/xx module) passing NULLs to PyObject_Str() andNeal Norwitz2006-03-141-5/+7
* Fix bug found by Coverity: don't allow NULL argument to PyUnicode_CheckExactGeorg Brandl2006-03-131-2/+2
* Change int to Py_ssize_t in several places.Martin v. Löwis2006-03-071-2/+2
* Oops, forgot to include this in the last checkin.Neal Norwitz2006-03-041-1/+1
* Use %ld and casts to long for refcount printing, in absense of a universallyThomas Wouters2006-03-011-8/+18
* Revert backwards-incompatible const changes.Martin v. Löwis2006-02-271-2/+2
* Merge ssize_t branch.Martin v. Löwis2006-02-151-11/+12
* Add const to several API functions that take char *.Jeremy Hylton2005-12-101-5/+5
* Change the %s format specifier for str objects so that it returns aNeil Schemenauer2005-08-121-9/+29