summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_memoryview.py
Commit message (Collapse)AuthorAgeFilesLines
* bpo-29902: Emit a Py3k deprecation warning when pickling or copying (#2823)Serhiy Storchaka2017-08-021-7/+13
| | | | | | some builtin and extension objects that don't support pickling explicitly and are pickled incorrectly by default (like memoryview or staticmethod).
* Comment out two tests that won't pass now after reverting the typeobject.cBarry Warsaw2016-01-111-5/+6
| | | | | change. Also, as per further discussion, we'll just remove the regressing code in typeobject.c
* Issue #22995: Instances of extension types with a state that aren'tSerhiy Storchaka2015-12-301-0/+15
| | | | | | subclasses of list or dict and haven't implemented any pickle-related methods (__reduce__, __reduce_ex__, __getnewargs__, __getnewargs_ex__, or __getstate__), can no longer be pickled. Including memoryview.
* Issue #19572: More silently skipped tests explicitly skipped.Zachary Ware2013-12-101-5/+5
|
* Merged revisions 88097 via svnmerge fromAntoine Pitrou2011-01-181-0/+11
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r88097 | antoine.pitrou | 2011-01-18 19:57:52 +0100 (mar., 18 janv. 2011) | 4 lines Issue #10451: memoryview objects could allow to mutate a readable buffer. Initial patch by Ross Lagerwall. ........
* Merged revisions 86596 via svnmerge fromEzio Melotti2010-11-211-25/+25
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86596 | ezio.melotti | 2010-11-20 21:04:17 +0200 (Sat, 20 Nov 2010) | 1 line #9424: Replace deprecated assert* methods in the Python test suite. ........
* Merged revisions 84408-84409 via svnmerge fromAntoine Pitrou2010-09-011-0/+9
| | | | | | | | | | | | | | | 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 ........
* use assert[Not]IsInstance where appropriateEzio Melotti2010-01-241-2/+2
|
* Issue #7142: Fix uses of unicode in memoryview objectsMark Dickinson2009-10-151-0/+7
|
* convert usage of fail* to assert*Benjamin Peterson2009-06-301-5/+5
|
* Issue 6329: Fix iteration for memoryviews.Raymond Hettinger2009-06-231-0/+6
|
* Issue #2396: backport the memoryview object.Antoine Pitrou2009-04-021-0/+328