[Python-checkins] bpo-46586: Fix more erroneous doc links to builtins (#31429)

JelleZijlstra webhook-mailer at python.org
Mon May 2 18:32:54 EDT 2022


https://github.com/python/cpython/commit/cc6ae4f4835f9e76a34f24cd1f666c1cc0fecfa3
commit: cc6ae4f4835f9e76a34f24cd1f666c1cc0fecfa3
branch: main
author: Meer Suri <46469858+meersuri at users.noreply.github.com>
committer: JelleZijlstra <jelle.zijlstra at gmail.com>
date: 2022-05-02T16:32:44-06:00
summary:

bpo-46586: Fix more erroneous doc links to builtins (#31429)

Co-authored-by: Jelle Zijlstra <jelle.zijlstra at gmail.com>
Co-authored-by: Éric <merwok at netwok.org>

files:
M Doc/library/fileinput.rst
M Doc/library/urllib.request.rst
M Doc/library/zipfile.rst

diff --git a/Doc/library/fileinput.rst b/Doc/library/fileinput.rst
index 2a2c1b3c2b921..4bc868759f202 100644
--- a/Doc/library/fileinput.rst
+++ b/Doc/library/fileinput.rst
@@ -224,5 +224,5 @@ The two following opening hooks are provided by this module:
       Added the optional *errors* parameter.
 
    .. deprecated:: 3.10
-      This function is deprecated since :func:`input` and :class:`FileInput`
+      This function is deprecated since :func:`fileinput.input` and :class:`FileInput`
       now have *encoding* and *errors* parameters.
diff --git a/Doc/library/urllib.request.rst b/Doc/library/urllib.request.rst
index 3823981b37c40..491ef022a1fad 100644
--- a/Doc/library/urllib.request.rst
+++ b/Doc/library/urllib.request.rst
@@ -739,7 +739,7 @@ The following attribute and methods should only be used by classes derived from
 
    This method, if implemented, will be called by the parent
    :class:`OpenerDirector`.  It should return a file-like object as described in
-   the return value of the :meth:`open` of :class:`OpenerDirector`, or ``None``.
+   the return value of the :meth:`~OpenerDirector.open` method of :class:`OpenerDirector`, or ``None``.
    It should raise :exc:`~urllib.error.URLError`, unless a truly exceptional
    thing happens (for example, :exc:`MemoryError` should not be mapped to
    :exc:`URLError`).
diff --git a/Doc/library/zipfile.rst b/Doc/library/zipfile.rst
index d6a1fce49c545..19e128ce02f54 100644
--- a/Doc/library/zipfile.rst
+++ b/Doc/library/zipfile.rst
@@ -311,7 +311,7 @@ ZipFile Objects
       compressed text files in :term:`universal newlines` mode.
 
    .. versionchanged:: 3.6
-      :meth:`open` can now be used to write files into the archive with the
+      :meth:`ZipFile.open` can now be used to write files into the archive with the
       ``mode='w'`` option.
 
    .. versionchanged:: 3.6



More information about the Python-checkins mailing list