diff options
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/configparser.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/configparser.rst b/Doc/library/configparser.rst index fbc593b..49e348f 100644 --- a/Doc/library/configparser.rst +++ b/Doc/library/configparser.rst @@ -982,10 +982,10 @@ ConfigParser Objects *source*; the default is ``'<???>'``. .. versionadded:: 3.2 - Replaces :meth:`readfp`. - + Replaces :meth:`readfp`. + .. note:: - + Prior to Python 3.2, :meth:`readfp` consumed lines from the file-like argument by calling its :meth:`~file.readline` method. For existing code calling :meth:`readfp` with arguments which don't support iteration, |