From: Hugo van Kemenade Date: Wed, 11 May 2022 06:18:45 +0000 (+0300) Subject: gh-89336: Fix configparser.RawConfigParser.readfp typo (GH-92636) X-Git-Tag: v3.12.0a1~1585 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=75e463430efcb5b20efa93f9a5d98ccd03d83a3d;p=thirdparty%2FPython%2Fcpython.git gh-89336: Fix configparser.RawConfigParser.readfp typo (GH-92636) --- diff --git a/Doc/whatsnew/3.11.rst b/Doc/whatsnew/3.11.rst index 40e68e64e042..6518eea4c7ba 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`.)