From e2b6e2fcafa1505b2a9dddf1e1cf467f1f0eb321 Mon Sep 17 00:00:00 2001 From: Thomas A Caswell Date: Tue, 21 Jun 2022 16:04:03 -0400 Subject: [PATCH] DOC: correct bytesarray -> bytearray in comments (GH-92410) (cherry picked from commit 0709586744ec58dd60492e16b08fff6dc1149a0a) Co-authored-by: Thomas A Caswell --- Modules/_hashopenssl.c | 2 +- Modules/_operator.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Modules/_hashopenssl.c b/Modules/_hashopenssl.c index 75063fa15369ac..35addf49e96c63 100644 --- a/Modules/_hashopenssl.c +++ b/Modules/_hashopenssl.c @@ -2002,7 +2002,7 @@ _hashlib_compare_digest_impl(PyObject *module, PyObject *a, PyObject *b) PyUnicode_GET_LENGTH(a), PyUnicode_GET_LENGTH(b)); } - /* fallback to buffer interface for bytes, bytesarray and other */ + /* fallback to buffer interface for bytes, bytearray and other */ else { Py_buffer view_a; Py_buffer view_b; diff --git a/Modules/_operator.c b/Modules/_operator.c index f051513fc793a0..0b132e20e55de1 100644 --- a/Modules/_operator.c +++ b/Modules/_operator.c @@ -839,7 +839,7 @@ _operator__compare_digest_impl(PyObject *module, PyObject *a, PyObject *b) PyUnicode_GET_LENGTH(a), PyUnicode_GET_LENGTH(b)); } - /* fallback to buffer interface for bytes, bytesarray and other */ + /* fallback to buffer interface for bytes, bytearray and other */ else { Py_buffer view_a; Py_buffer view_b;