Skip to content

Commit d5d3ada

Browse files
miss-islingtonvgianeAA-Turner
authored
[3.14] gh-135468: Improve BaseHandler.http_error_default() parameter descriptions (GH-136797) (#136825)
Co-authored-by: Valerio Gianella <49408327+valeriogianella@users.noreply.github.com> Co-authored-by: Adam Turner <9087854+aa-turner@users.noreply.github.com>
1 parent 72b6794 commit d5d3ada

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

Doc/library/urllib.request.rst

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -832,10 +832,13 @@ The following attribute and methods should only be used by classes derived from
832832
errors. It will be called automatically by the :class:`OpenerDirector` getting
833833
the error, and should not normally be called in other circumstances.
834834

835-
*req* will be a :class:`Request` object, *fp* will be a file-like object with
836-
the HTTP error body, *code* will be the three-digit code of the error, *msg*
837-
will be the user-visible explanation of the code and *hdrs* will be a mapping
838-
object with the headers of the error.
835+
:class:`OpenerDirector` will call this method with five positional arguments:
836+
837+
1. a :class:`Request` object,
838+
#. a file-like object with the HTTP error body,
839+
#. the three-digit code of the error, as a string,
840+
#. the user-visible explanation of the code, as as string, and
841+
#. the headers of the error, as a mapping object.
839842

840843
Return values and exceptions raised should be the same as those of
841844
:func:`urlopen`.

0 commit comments

Comments
 (0)