From 0381ea79ac2da03179c8512c581cac588b69cff9 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Mon, 9 Dec 2019 14:46:33 +0100 Subject: bpo-38916: Document array.array deprecation (GH-17523) array.array: Document that tostring() and fromstring() deprecated aliases will be removed in Python 3.9. --- Doc/library/array.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Doc/library/array.rst b/Doc/library/array.rst index 2ae2a07..6809c51 100644 --- a/Doc/library/array.rst +++ b/Doc/library/array.rst @@ -173,6 +173,8 @@ The following data items and methods are also supported: Deprecated alias for :meth:`frombytes`. + .. deprecated-removed:: 3.2 3.9 + .. method:: array.fromunicode(s) @@ -235,6 +237,8 @@ The following data items and methods are also supported: Deprecated alias for :meth:`tobytes`. + .. deprecated-removed:: 3.2 3.9 + .. method:: array.tounicode() -- cgit v0.12