summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorJelle Zijlstra <jelle.zijlstra@gmail.com>2022-11-01 04:10:18 (GMT)
committerGitHub <noreply@github.com>2022-11-01 04:10:18 (GMT)
commit5cf317ade1e1b26ee02621ed84d29a73181631dc (patch)
tree077cd8c371f0541c547bdf952b1bb6231583cc86 /Misc
parent7640ede177682a06f03694478d64c819e39e03d9 (diff)
downloadcpython-5cf317ade1e1b26ee02621ed84d29a73181631dc.zip
cpython-5cf317ade1e1b26ee02621ed84d29a73181631dc.tar.gz
cpython-5cf317ade1e1b26ee02621ed84d29a73181631dc.tar.bz2
gh-98658: Add __class_getitem__ to array.array (#98661)
Closes #98658
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2022-10-25-07-00-31.gh-issue-98658.nGABW9.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2022-10-25-07-00-31.gh-issue-98658.nGABW9.rst b/Misc/NEWS.d/next/Library/2022-10-25-07-00-31.gh-issue-98658.nGABW9.rst
new file mode 100644
index 0000000..8909d49
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2022-10-25-07-00-31.gh-issue-98658.nGABW9.rst
@@ -0,0 +1,2 @@
+The :class:`array.array` class now supports subscripting, making it a
+:term:`generic type`.