diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-09-01 21:16:10 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-09-01 21:16:10 (GMT) |
commit | f43f65b69f9190ed7300b8d0334d8f44b657b9fd (patch) | |
tree | e3d58d85a0736b9b29a352d49b137d6c586cf9b8 /Lib/test/test_memoryview.py | |
parent | 38164c3b04b1388829ef7a062438c8511f69f8fb (diff) | |
download | cpython-f43f65b69f9190ed7300b8d0334d8f44b657b9fd.zip cpython-f43f65b69f9190ed7300b8d0334d8f44b657b9fd.tar.gz cpython-f43f65b69f9190ed7300b8d0334d8f44b657b9fd.tar.bz2 |
Merged revisions 84408-84409 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r84408 | antoine.pitrou | 2010-09-01 23:14:16 +0200 (mer., 01 sept. 2010) | 4 lines
Issue #9737: Fix a crash when trying to delete a slice or an item from
a memoryview object.
........
r84409 | antoine.pitrou | 2010-09-01 23:14:46 +0200 (mer., 01 sept. 2010) | 3 lines
Fix a compilation warning
........
Diffstat (limited to 'Lib/test/test_memoryview.py')
-rw-r--r-- | Lib/test/test_memoryview.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Lib/test/test_memoryview.py b/Lib/test/test_memoryview.py index abda678..3f82307 100644 --- a/Lib/test/test_memoryview.py +++ b/Lib/test/test_memoryview.py @@ -111,6 +111,15 @@ class AbstractMemoryTests: m = None self.assertEquals(sys.getrefcount(b), oldrefcount) + def test_delitem(self): + for tp in self._types: + b = tp(self._source) + m = self._view(b) + with self.assertRaises(TypeError): + del m[1] + with self.assertRaises(TypeError): + del m[1:4] + def test_tobytes(self): for tp in self._types: m = self._view(tp(self._source)) |