From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Wed, 11 May 2022 17:38:30 +0000 (-0700) Subject: [3.11] gh-89336: Fix configparser.RawConfigParser.readfp typo (GH-92636) (GH-92662) X-Git-Tag: v3.11.0b2~113 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a2c8180a9a0061ffe021da2bf1983278195ce240;p=thirdparty%2FPython%2Fcpython.git [3.11] gh-89336: Fix configparser.RawConfigParser.readfp typo (GH-92636) (GH-92662) (cherry picked from commit 75e463430efcb5b20efa93f9a5d98ccd03d83a3d) Co-authored-by: Hugo van Kemenade Automerge-Triggered-By: GH:serhiy-storchaka --- 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`.)