From: Shantanu <12621235+hauntsaninja@users.noreply.github.com> Date: Tue, 9 May 2023 09:27:15 +0000 (-0700) Subject: [3.11] gh-102500: collections.abc.Buffer doesn't exist in 3.11 (#104317) X-Git-Tag: v3.11.4~97 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=15624b445e57859edb13eec64f0cd71198f0fc00;p=thirdparty%2FPython%2Fcpython.git [3.11] gh-102500: collections.abc.Buffer doesn't exist in 3.11 (#104317) --- diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst index de716b3f2227..2a53df4b746d 100644 --- a/Doc/library/typing.rst +++ b/Doc/library/typing.rst @@ -2094,7 +2094,7 @@ Corresponding to collections in :mod:`collections.abc` and :class:`memoryview` of byte sequences. .. deprecated-removed:: 3.9 3.14 - Prefer :class:`collections.abc.Buffer`, or a union like ``bytes | bytearray | memoryview``. + Prefer ``typing_extensions.Buffer``, or a union like ``bytes | bytearray | memoryview``. .. class:: Collection(Sized, Iterable[T_co], Container[T_co])