Skip to content

Commit

Permalink
[doc] Add missing space in urllib.request.rst (pythonGH-19860)
Browse files Browse the repository at this point in the history
This is just a typo fix, should I still provide news file?
  • Loading branch information
imomaliev authored May 23, 2020
1 parent da51ba4 commit 8022eb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Doc/library/urllib.request.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1235,7 +1235,7 @@ Here is an example of doing a ``PUT`` request using :class:`Request`::

import urllib.request
DATA = b'some data'
req = urllib.request.Request(url='http://localhost:8080', data=DATA,method='PUT')
req = urllib.request.Request(url='http://localhost:8080', data=DATA, method='PUT')
with urllib.request.urlopen(req) as f:
pass
print(f.status)
Expand Down

0 comments on commit 8022eb4

Please sign in to comment.