summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBénédikt Tran <10796600+picnixz@users.noreply.github.com>2024-12-10 10:12:33 (GMT)
committerGitHub <noreply@github.com>2024-12-10 10:12:33 (GMT)
commit4331832db02ff4a7598dcdd99cae31087173dce0 (patch)
tree1a0b95b73e42dc9bb23babc36130acddabb942cb /Misc
parent050d59bd1765de417bf4ec8b5c3cbdac65695f5e (diff)
downloadcpython-4331832db02ff4a7598dcdd99cae31087173dce0.zip
cpython-4331832db02ff4a7598dcdd99cae31087173dce0.tar.gz
cpython-4331832db02ff4a7598dcdd99cae31087173dce0.tar.bz2
gh-125420: implement `Sequence.count` API on `memoryview` objects (#125443)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core_and_Builtins/2024-10-14-12-34-51.gh-issue-125420.jABXoZ.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core_and_Builtins/2024-10-14-12-34-51.gh-issue-125420.jABXoZ.rst b/Misc/NEWS.d/next/Core_and_Builtins/2024-10-14-12-34-51.gh-issue-125420.jABXoZ.rst
new file mode 100644
index 0000000..ef12080
--- /dev/null
+++ b/Misc/NEWS.d/next/Core_and_Builtins/2024-10-14-12-34-51.gh-issue-125420.jABXoZ.rst
@@ -0,0 +1,2 @@
+Add :meth:`memoryview.count` to :class:`memoryview` objects. Patch by
+Bénédikt Tran.