From 5d6ec5edb9ad0d4215a2a47a60e8d158114df350 Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Fri, 23 Sep 2022 18:32:12 -0400 Subject: [PATCH] [3.10] gh-96845: Add a note about the pending move of resources.abcs. --- Doc/library/importlib.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Doc/library/importlib.rst b/Doc/library/importlib.rst index 5088ed5291dc525..7cf2ed5988d4819 100644 --- a/Doc/library/importlib.rst +++ b/Doc/library/importlib.rst @@ -854,6 +854,8 @@ ABC hierarchy:: Read contents of self as text. + Note: In Python 3.11 and later, this class is found in ``importlib.resources.abc``. + .. class:: TraversableResources @@ -868,6 +870,8 @@ ABC hierarchy:: .. versionadded:: 3.9 + Note: In Python 3.11 and later, this class is found in ``importlib.resources.abc``. + :mod:`importlib.resources` -- Resources ---------------------------------------