Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Add __class_getitem__ to memoryview
  • Loading branch information
brianschubert committed Oct 26, 2024
commit 2a260d50ab11d93c8adcc5cef2636013dc7d742f
3 changes: 3 additions & 0 deletions Doc/whatsnew/3.14.rst
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,9 @@ Other language changes
:mod:`copyable <copy>`.
(Contributed by Serhiy Storchaka in :gh:`125767`.)

* The :class:`memoryview` type now supports subscripting, making it a
:term:`generic type`. (Contributed by Brian Schubert in :gh:`126012`.)
Comment thread
brianschubert marked this conversation as resolved.
Outdated


New modules
===========
Expand Down
2 changes: 1 addition & 1 deletion Lib/test/test_genericalias.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@

class BaseTest(unittest.TestCase):
"""Test basics."""
generic_types = [type, tuple, list, dict, set, frozenset, enumerate,
generic_types = [type, tuple, list, dict, set, frozenset, enumerate, memoryview,
defaultdict, deque,
SequenceMatcher,
dircmp,
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
The :class:`memoryview` type now supports subscripting, making it a
Comment thread
brianschubert marked this conversation as resolved.
Outdated
:term:`generic type`.
1 change: 1 addition & 0 deletions Objects/memoryobject.c
Original file line number Diff line number Diff line change
Expand Up @@ -3286,6 +3286,7 @@ static PyMethodDef memory_methods[] = {
MEMORYVIEW__FROM_FLAGS_METHODDEF
{"__enter__", memory_enter, METH_NOARGS, NULL},
{"__exit__", memory_exit, METH_VARARGS, memory_exit_doc},
{"__class_getitem__", Py_GenericAlias, METH_O|METH_CLASS, PyDoc_STR("See PEP 585")},
{NULL, NULL}
};

Expand Down