summaryrefslogtreecommitdiff
path: root/Lib/test/test_memoryview.py
Commit message (Expand)AuthorAgeFilesLines
* bpo-33176: Add a toreadonly() method to memoryviews. (GH-6466)Antoine Pitrou2018-04-141-0/+11
* Issue #22995: Instances of extension types with a state that aren'tSerhiy Storchaka2015-12-251-0/+13
* Iaaue #25598: Fix memory_hex from #9951 for non-contiguous buffers.Stefan Krah2015-11-101-0/+7
* Issue #15944: memoryview: Allow arbitrary formats when casting to bytes.Stefan Krah2015-08-081-0/+21
* Issue #21741: Update 147 test modules to use test discovery.Zachary Ware2015-04-131-4/+1
* Issue #22668: Merge from 3.4.Stefan Krah2015-01-291-1/+3
|\
| * Issue #22668: Remove endianness assumption in test.Stefan Krah2015-01-291-3/+5
* | Whitespace.Stefan Krah2015-01-291-2/+2
|/
* Issue #22668: Ensure that format strings survive slicing after casting.Stefan Krah2015-01-291-0/+19
* Issue 19572: More silently skipped tests explicitly skipped.Zachary Ware2013-12-081-7/+7
|\
| * Issue 19572: More silently skipped tests explicitly skipped.Zachary Ware2013-12-081-7/+7
* | Close #19078: memoryview now supports reversedNick Coghlan2013-10-021-0/+9
|/
* Fix out-of-date comment in test_memoryview.Stefan Krah2012-08-191-1/+2
* Issue #14930: Make memoryview objects weakrefable.Richard Oudkerk2012-05-281-0/+15
* - Issue #10181: New memoryview implementation fixes multiple ownershipStefan Krah2012-02-251-12/+38
* Issue #13411: memoryview objects are now hashable when the underlying object ...Antoine Pitrou2011-11-211-0/+27
* Issue #10451: memoryview objects could allow to mutate a readable buffer.Antoine Pitrou2011-01-181-0/+12
* #10273: Rename assertRegexpMatches and assertRaisesRegexp to assertRegex and ...Ezio Melotti2010-12-011-1/+1
* #9424: Replace deprecated assert* methods in the Python test suite.Ezio Melotti2010-11-201-25/+25
* Issue #9757: memoryview objects get a release() method to release theAntoine Pitrou2010-09-091-0/+45
* Issue #9737: Fix a crash when trying to delete a slice or an item fromAntoine Pitrou2010-09-011-0/+9
* Issue #8990: array.fromstring() and array.tostring() get renamed toAntoine Pitrou2010-09-011-1/+1
* Merged revisions 77727 via svnmerge fromEzio Melotti2010-01-241-2/+2
* convert old fail* assertions to assert*Benjamin Peterson2009-06-301-5/+5
* Issue 6329: Fix iteration for memoryviews.Raymond Hettinger2009-06-231-0/+6
* Issue #4580: slicing of memoryviews when itemsize != 1 is wrong.Antoine Pitrou2009-01-031-133/+207
* Issue #4569: Interpreter crash when mutating a memoryview with an item size l...Antoine Pitrou2008-12-071-0/+9
* kill memoryview.size in favor of len(view)Benjamin Peterson2008-09-101-1/+1
* #3712: The memoryview object had a reference leak and didn't support cyclic g...Antoine Pitrou2008-09-011-0/+32
* 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 bug...Christian Heimes2007-11-081-0/+25