summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_memoryview.py
Commit message (Collapse)AuthorAgeFilesLines
* Merged revisions 68200 via svnmerge fromAntoine Pitrou2009-01-031-133/+207
| | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r68200 | antoine.pitrou | 2009-01-03 17:59:18 +0100 (sam., 03 janv. 2009) | 8 lines Issue #4580: slicing of memoryviews when itemsize != 1 is wrong. Also fix len() to return number of items rather than length in bytes. I'm sorry it was not possible for me to work on this without reindenting a bit some stuff around. The indentation in memoryobject.c is a mess, I'll open a separate bug for it. ........
* Merged revisions 67650 via svnmerge fromAntoine Pitrou2008-12-071-0/+9
| | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r67650 | antoine.pitrou | 2008-12-07 21:14:49 +0100 (dim., 07 déc. 2008) | 5 lines Issue #4569: Interpreter crash when mutating a memoryview with an item size larger than 1. (together with a bit of reindenting) ........
* kill memoryview.size in favor of len(view)Benjamin Peterson2008-09-101-1/+1
| | | | Reviewer: Antoine Pitrou #3827
* #3712: The memoryview object had a reference leak and didn't support cyclic ↵Antoine Pitrou2008-09-011-0/+32
| | | | | | garbage collection. Reviewed by Benjamin Peterson.
* Issue #2394: implement more of the memoryview API.Antoine Pitrou2008-08-191-2/+190
|
* #2621 rename test.test_support to test.supportBenjamin Peterson2008-05-201-2/+2
|
* Fixed memoryview constructor. It allowed arbitrary keyword arguments. The ↵Christian Heimes2007-11-081-0/+25
bug was found by mykhal from #python. I've also added a small test case in the new test_memoryview.py