summaryrefslogtreecommitdiff
path: root/Include/object.h
Commit message (Expand)AuthorAgeFilesLines
...
* | | Add API for static strings, primarily good for identifiers.Martin v. Löwis2011-10-091-0/+4
* | | Add Py_RETURN_NOTIMPLEMENTED macro. Fixes #12724.Brian Curtin2011-08-101-0/+4
|/ /
* | Issue #11135: Remove redundant doc field from PyType_Spec.Martin v. Löwis2011-02-111-1/+0
* | Issue #11067: Add PyType_GetFlags, to support PyUnicode_CheckMartin v. Löwis2011-02-051-0/+6
* | Remove buffer API from stable ABI for now, see #10181.Martin v. Löwis2011-01-061-1/+2
* | Merge branches/pep-0384.Martin v. Löwis2010-12-031-1/+47
* | Issue #10293: Remove obsolete field in the PyMemoryView structure,Antoine Pitrou2010-11-041-1/+0
* | make hashes always the size of pointers; introduce Py_hash_t #9778Benjamin Peterson2010-10-171-5/+5
* | Issue #1868: Eliminate subtle timing issues in thread-local objects byAntoine Pitrou2010-08-281-0/+8
* | Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-253/+253
|/
* Merged revisions 72461 via svnmerge fromBenjamin Peterson2009-05-081-0/+1
* Merged revisions 71229,71271 via svnmerge fromMatthias Klose2009-04-071-7/+9
* Merged revisions 71163 via svnmerge fromBenjamin Peterson2009-04-041-7/+5
* Merged revisions 71159 via svnmerge fromMatthias Klose2009-04-041-5/+7
* Change type of tp_reserved from cmpfunc to (void *); remove definitionMark Dickinson2009-02-021-2/+1
* Issue #1717: rename tp_compare to tp_reserved. I'll change theMark Dickinson2009-02-021-1/+1
* Issue #1717, continued: remove PyObject_Compare and Py_CmpToRich declarationsMark Dickinson2009-02-011-2/+0
* Issue #4910, patch 3/3: rename nb_long to nb_reservedMark Dickinson2009-01-171-1/+1
* Merged revisions 68560 via svnmerge fromAmaury Forgeot d'Arc2009-01-121-0/+1
* Issue #4580: slicing of memoryviews when itemsize != 1 is wrong.Antoine Pitrou2009-01-031-10/+12
* remove some more references to __cmp__ #1717Benjamin Peterson2008-10-161-3/+0
* Fix #3651 various memory leaks when using the buffer interfaceBenjamin Peterson2008-08-271-1/+1
* make bytes(o) respect __bytes__ #2415Benjamin Peterson2008-08-261-0/+1
* Merged revisions 65654 via svnmerge fromMartin v. Löwis2008-08-131-1/+2
* Rename PyUnicode_AsString -> _PyUnicode_AsString andMarc-André Lemburg2008-08-071-1/+1
* 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