summaryrefslogtreecommitdiffstats
path: root/Objects/object.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* Make subclasses of int, long, complex, float, and unicode perform typeBrett Cannon2005-04-261-25/+24
* Dima Dorfman's patch for coercion/comparison of C types (patch #995939), withArmin Rigo2004-12-231-16/+11
* Remove 'extern' declaration for _Py_SwappedOp.Brett Cannon2004-09-251-1/+1
* A static swapped_op[] array was defined in 3 different C files, & I thinkTim Peters2004-09-231-4/+4
* Move a comment back to its rightful location.Michael W. Hudson2004-09-141-2/+2
* SF bug #1004669: Type returned from .keys() is not checkedRaymond Hettinger2004-08-071-0/+5
* Remove unused macros in .c filesNeal Norwitz2004-07-081-2/+0
* Make weak references subclassable:Fred Drake2004-07-021-0/+3
* SF Bug #215126: Over restricted type checking on eval() functionRaymond Hettinger2004-07-021-1/+1
* Two new public API functions, Py_IncRef and Py_DecRef. Useful forThomas Heller2004-04-221-0/+12
* Fix typo in comment.Raymond Hettinger2004-03-211-1/+1