summaryrefslogtreecommitdiffstats
path: root/Include/object.h
Commit message (Expand)AuthorAgeFilesLines
...
* Merged revisions 64722,64729,64753,64845-64846,64849,64871,64880-64882,64885,...Georg Brandl2008-07-161-2/+2
* Manual forward port of 64962 - use PyObject_HashNotImplemented as a tp_hash l...Nick Coghlan2008-07-151-0/+1
* Remove nb_reserved (nb_coerce), nb_hex, and nb_oct from PyNumberMethodsBenjamin Peterson2008-06-111-4/+0
* #2630: Implement PEP 3138.Georg Brandl2008-06-111-0/+1
* Merged revisions 63724,63726,63732,63744,63754-63755,63757-63758,63760,63775,...Georg Brandl2008-06-101-0/+1
* Remove locking from buffer protocol as-per discussion.Travis E. Oliphant2008-06-061-11/+0
* Renamed PyString to PyBytesChristian Heimes2008-05-261-1/+1
* Merged revisions 62021,62029,62035-62038,62043-62044,62052-62053 via svnmerge...Benjamin Peterson2008-03-311-1/+1
* Merged revisions 61038,61042-61045,61047,61050,61053,61055-61056,61061-61062,...Christian Heimes2008-02-281-0/+3
* Remove unused and non-PEP-related entry from PyBufferProcsTravis E. Oliphant2008-02-191-1/+0
* Merged revisions 60364-60378 via svnmerge fromChristian Heimes2008-01-271-0/+1
* Merged revisions 59921-59932 via svnmerge fromChristian Heimes2008-01-121-0/+8
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.Christian Heimes2007-12-191-12/+12
* #1535: rename __builtin__ module to builtins.Georg Brandl2007-12-021-2/+2
* Replace PyObject_Unicode with PyObject_Str everywhere, and remove theThomas Heller2007-11-151-1/+0
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-061-4/+2
* Eliminate use of PyBUF_CHARACTER flag which is no longer part of the buffer i...Travis E. Oliphant2007-10-131-10/+9
* Fix problems with memoryview object. There is still more to do to finish PEP...Travis E. Oliphant2007-10-121-5/+11
* Change PyBuffer to Py_buffer to be consistent with other non-object structure...Travis E. Oliphant2007-09-231-3/+3
* Remove more cruft leftover from nb_coerce. Rename nb_coerce toNeil Schemenauer2007-09-211-2/+1
* Fixing the spelling of "writeable" to "writable", particularly PyBUF_WRITEABLE.Sean Reifscheider2007-09-171-5/+7
* Remove the simple slicing API. All slicing is now done with slice objects.Thomas Wouters2007-08-301-2/+2
* Fix memory leak in arraymodule.c and respond to a few comments by nnorwitz.Travis E. Oliphant2007-08-201-2/+3
* Code review of the new buffer protocol. Mostly add questions that shouldNeal 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-10/+57
* Merged revisions 56467-56482 via svnmerge fromMartin v. Löwis2007-07-211-23/+27
* Merged revisions 55817-55961 via svnmerge fromGuido van Rossum2007-06-131-0/+1
* Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirrorWalter Dörwald2007-05-181-1/+2
* Get rid of all #ifdef Py_USING_UNICODE (it is always present now).Guido van Rossum2007-05-031-2/+0
* Merged revisions 53875-53911 via svnmerge fromThomas Wouters2007-02-251-1/+14
* Merged revisions 53451-53537 via svnmerge fromThomas Wouters2007-02-011-1/+1
* - patch #1600346 submitted by Tomer FilibaJack Diederich2006-11-281-1/+1
* 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-0/+1
* Change the way __hash__ is inherited; when __eq__ or __cmp__ is overriddenGuido van Rossum2006-08-211-0/+1
* Merge current trunk into p3yk. This includes the PyNumber_Index API change,Thomas Wouters2006-08-211-1/+1
* Get rid of most of the rest of coerce (slot is still there for now).Neal Norwitz2006-08-211-1/+0
* Completely get rid of PyClass and PyInstance.Guido van Rossum2006-08-171-6/+3
* Get rid of most of the flags (in tp_flags) that keep track of variousGuido van Rossum2006-07-271-45/+4
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-1/+40
* Get rid of remnants of integer divisionNeal Norwitz2006-03-241-3/+0
* Remove staticforward and statichereNeal Norwitz2006-03-221-15/+0
* Remove some old types for int based functions (Py_ssize_t is da thing now.)Neal Norwitz2006-03-171-9/+0
* Checking in the code for PEP 357.Guido van Rossum2006-03-071-1/+8
* Use Py_ssize_t for _Py_RefTotal.Neal Norwitz2006-03-041-1/+1
* Make ob_refcnt and tp_maxalloc (and friends) Py_ssize_t.Martin v. Löwis2006-03-011-4/+4
* Revert backwards-incompatible const changes.Martin v. Löwis2006-02-271-4/+4
* Bug #1086854: Rename PyHeapType members adding ht_ prefix.Georg Brandl2006-02-201-3/+3
* Use Py_ssize_t for field sizes and offsets.Martin v. Löwis2006-02-161-3/+3
* Merge ssize_t branch.Martin v. Löwis2006-02-151-17/+31