From d13983e8e508eec597a2d3aa7aec7075cbce42cc Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade Date: Wed, 11 May 2022 09:18:45 +0300 Subject: [PATCH] gh-89336: Fix configparser.RawConfigParser.readfp typo (GH-92636) (cherry picked from commit 75e463430efcb5b20efa93f9a5d98ccd03d83a3d) Co-authored-by: Hugo van Kemenade --- Doc/whatsnew/3.11.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/whatsnew/3.11.rst b/Doc/whatsnew/3.11.rst index 40e68e64e04296..6518eea4c7ba55 100644 --- a/Doc/whatsnew/3.11.rst +++ b/Doc/whatsnew/3.11.rst @@ -1170,7 +1170,7 @@ Deprecated * the :class:`configparser.SafeConfigParser` class * the :attr:`configparser.ParsingError.filename` property - * the :meth:`configparser.ParsingError.readfp` method + * the :meth:`configparser.RawConfigParser.readfp` method (Contributed by Hugo van Kemenade in :issue:`45173`.)