summaryrefslogtreecommitdiff
path: root/Objects/memoryobject.c
Commit message (Expand)AuthorAgeFilesLines
...
* | Issue #14181: Allow memoryview construction from an object that uses theStefan Krah2012-03-051-3/+0
* | - Issue #10181: New memoryview implementation fixes multiple ownershipStefan Krah2012-02-251-563/+2302
* | Issue #13411: memoryview objects are now hashable when the underlying object ...Antoine Pitrou2011-11-211-1/+33
* | Replace Py_NotImplemented returns with the macro form Py_RETURN_NOTIMPLEMENTED.Brian Curtin2011-08-101-2/+1
* | Issue #11286: Raise a ValueError from calling PyMemoryView_FromBuffer withAntoine Pitrou2011-02-241-0/+5
|/
* Issue #10451: memoryview objects could allow to mutate a readable buffer.Antoine Pitrou2011-01-181-3/+0
* Merge branches/pep-0384.Martin v. Löwis2010-12-031-2/+2
* Issue #10293: Remove obsolete field in the PyMemoryView structure,Antoine Pitrou2010-11-041-44/+1
* deuglifyBenjamin Peterson2010-11-031-2/+3
* Issue #9757: memoryview objects get a release() method to release theAntoine Pitrou2010-09-091-10/+75
* Fix a compilation warningAntoine Pitrou2010-09-011-1/+1
* Issue #9737: Fix a crash when trying to delete a slice or an item fromAntoine Pitrou2010-09-011-0/+5
* Issue #3101: Helper functions _add_one_to_C() and _add_one_to_F() becomeAntoine Pitrou2010-09-011-5/+2
* Issue #2443: Added a new macro, Py_VA_COPY, which is equivalent to C99Alexander Belopolsky2010-08-111-4/+4
* Issue #7616: Fix copying of overlapping memoryview slices with the IntelAntoine Pitrou2010-07-111-11/+3
* Merged revisions 77916 via svnmerge fromAntoine Pitrou2010-02-021-7/+5
* Slightly improve buffer-related error message.Georg Brandl2009-08-041-1/+1
* Issue 6329: Fix iteration for memoryviews.Raymond Hettinger2009-06-231-32/+51
* remove memoryview.__str__ #5182Benjamin Peterson2009-02-081-17/+1
* Issue #1717: rename tp_compare to tp_reserved. I'll change theMark Dickinson2009-02-021-1/+1
* Issue #4822: fix messy indentation in memoryobject.c/.h, before we may backpo...Antoine Pitrou2009-01-031-432/+431
* Issue #4580: slicing of memoryviews when itemsize != 1 is wrong.Antoine Pitrou2009-01-031-68/+63
* Issue #4569: Interpreter crash when mutating a memoryview with an item size l...Antoine Pitrou2008-12-071-93/+105
* kill memoryview.size in favor of len(view)Benjamin Peterson2008-09-101-7/+0
* #3712: The memoryview object had a reference leak and didn't support cyclic g...Antoine Pitrou2008-09-011-34/+66
* Issue #2394: implement more of the memoryview API.Antoine Pitrou2008-08-191-22/+220
* #3560: cleanup C memoryview APIAntoine Pitrou2008-08-191-3/+3
* Merged revisions 65654 via svnmerge fromMartin v. Löwis2008-08-131-15/+18
* #2538: bytes objects can only provide read-only buffersAntoine Pitrou2008-08-021-5/+5
* Merged revisions 64114 via svnmerge fromAmaury Forgeot d'Arc2008-06-181-1/+4
* Remove locking from buffer protocol as-per discussion.Travis E. Oliphant2008-06-061-3/+0
* Renamed PyBytes to PyByteArrayChristian Heimes2008-05-261-6/+6
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-021-4/+4
* Fixed memoryview constructor. It allowed arbitrary keyword arguments. The bug...Christian Heimes2007-11-081-3/+8
* Fix some Py_ssize_t warnings on Win64 that were probably bugsNeal Norwitz2007-10-261-2/+2
* Fix problems with memoryview object. There is still more to do to finish PEP...Travis E. Oliphant2007-10-121-7/+19
* Delete bufferobject.[ch].Guido van Rossum2007-10-081-1/+4
* At least one of the buildbots was complaining about newview being usedNeal Norwitz2007-10-071-3/+2
* Whitespace and line lengrth cleanup.Guido van Rossum2007-09-251-47/+50
* Change PyBuffer to Py_buffer to be consistent with other non-object structure...Travis E. Oliphant2007-09-231-13/+72
* Fixing the spelling of "writeable" to "writable", particularly PyBUF_WRITEABLE.Sean Reifscheider2007-09-171-3/+3
* SF #1777057, fix memoryview('test') so it works in debug mode too.Neal Norwitz2007-08-191-30/+18
* Code review of the new buffer protocol. Mostly add questions that shouldNeal Norwitz2007-08-191-16/+13
* Merged in py3k-buffer branch to main line. All objects now use the buffer pr...Travis E. Oliphant2007-08-181-0/+540