8000 [3.8] fixes typos in http.client documentation (GH-18300) by miss-islington · Pull Request #18319 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

[3.8] fixes typos in http.client documentation (GH-18300) #18319

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 3, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fixes typos in http.client documentation (GH-18300)
(cherry picked from commit b94737a)

Co-authored-by: James Corbett <james.h.corbett@gmail.com>
  • Loading branch information
jameshcorbett authored and miss-islington committed Feb 3, 2020
commit 5b307ea7eefd2b568b604c07f13dd2cb7fbf5d2f
4 changes: 2 additions & 2 deletions Doc/library/http.client.rst
Original file line number Diff line number Diff line change
Expand Up @@ -563,8 +563,8 @@ Here is an example session that shows how to ``POST`` requests::
Client side ``HTTP PUT`` requests are very similar to ``POST`` requests. The
difference lies only the server side where HTTP server will allow resources to
be created via ``PUT`` request. It should be noted that custom HTTP methods
+are also handled in :class:`urllib.request.Request` by sending the appropriate
+method attribute.Here is an example session that shows how to do ``PUT``
are also handled in :class:`urllib.request.Request` by setting the appropriate
method attribute. Here is an example session that shows how to send a ``PUT``
request using http.client::

>>> # This creates an HTTP message
Expand Down
0