From c508270e5a8d835235333c26fe6ab931bd425b3b Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade Date: Tue, 10 May 2022 21:48:09 +0300 Subject: [PATCH] gh-89336: Fix configparser.RawConfigParser.readfp typo --- 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 fd7082e9fd74d2..7c5b5cd1fcc08a 100644 --- a/Doc/whatsnew/3.11.rst +++ b/Doc/whatsnew/3.11.rst @@ -1168,7 +1168,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`.)