diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-04-20 01:20:03 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-20 01:20:03 (GMT) |
commit | e08d32381d749bc4f3e4302e067076fa8c4e0661 (patch) | |
tree | 011d0d716589373c978f7ec7f18fdf39da9c5e62 /Doc/library/urllib.request.rst | |
parent | 68caef8f8e4c127c188a741fbebdf4cf077b0f93 (diff) | |
download | cpython-e08d32381d749bc4f3e4302e067076fa8c4e0661.zip cpython-e08d32381d749bc4f3e4302e067076fa8c4e0661.tar.gz cpython-e08d32381d749bc4f3e4302e067076fa8c4e0661.tar.bz2 |
gh-87497: Document that urllib.request sends headers in camel case (GH-24661) (#91517)
Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>
(cherry picked from commit 325d6f50357474c7d9fd2475be0e2481f7ae0476)
Co-authored-by: Alix Lourme <alix.lourme@gmail.com>
Diffstat (limited to 'Doc/library/urllib.request.rst')
-rw-r--r-- | Doc/library/urllib.request.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Doc/library/urllib.request.rst b/Doc/library/urllib.request.rst index 659a363..9573683 100644 --- a/Doc/library/urllib.request.rst +++ b/Doc/library/urllib.request.rst @@ -218,6 +218,7 @@ The following classes are provided: (X11; U; Linux i686) Gecko/20071127 Firefox/2.0.0.11"``, while :mod:`urllib`'s default user agent string is ``"Python-urllib/2.6"`` (on Python 2.6). + All header keys are sent in camel case. An appropriate ``Content-Type`` header should be included if the *data* argument is present. If this header has not been provided and *data* |