Skip to content

Commit 8022eb4

Browse files
authored
[doc] Add missing space in urllib.request.rst (GH-19860)
This is just a typo fix, should I still provide news file?
1 parent da51ba4 commit 8022eb4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Doc/library/urllib.request.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1235,7 +1235,7 @@ Here is an example of doing a ``PUT`` request using :class:`Request`::
12351235

12361236
import urllib.request
12371237
DATA = b'some data'
1238-
req = urllib.request.Request(url='http://localhost:8080', data=DATA,method='PUT')
1238+
req = urllib.request.Request(url='http://localhost:8080', data=DATA, method='PUT')
12391239
with urllib.request.urlopen(req) as f:
12401240
pass
12411241
print(f.status)

0 commit comments

Comments
 (0)