diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2024-05-08 19:55:12 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-08 19:55:12 (GMT) |
commit | 8f31af68d0767d4bc56022ab7cc30b1c7bd6a676 (patch) | |
tree | 7fbd4aa771dd06ab93b87ae08b8cee029a3e1e5c /Doc/library/urllib.request.rst | |
parent | c33bba6eb3dca67f8cc85a1a24521107feeeed25 (diff) | |
download | cpython-8f31af68d0767d4bc56022ab7cc30b1c7bd6a676.zip cpython-8f31af68d0767d4bc56022ab7cc30b1c7bd6a676.tar.gz cpython-8f31af68d0767d4bc56022ab7cc30b1c7bd6a676.tar.bz2 |
[3.13] Format None, True, False and NotImplemented as literals (GH-118758) (GH-118792)
(cherry picked from commit 05c2fe1acda9ea5a57061642c36e8b73bb4fbba4)
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Diffstat (limited to 'Doc/library/urllib.request.rst')
-rw-r--r-- | Doc/library/urllib.request.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/urllib.request.rst b/Doc/library/urllib.request.rst index bd39f2c..754405e 100644 --- a/Doc/library/urllib.request.rst +++ b/Doc/library/urllib.request.rst @@ -218,7 +218,7 @@ The following classes are provided: An appropriate ``Content-Type`` header should be included if the *data* argument is present. If this header has not been provided and *data* - is not None, ``Content-Type: application/x-www-form-urlencoded`` will + is not ``None``, ``Content-Type: application/x-www-form-urlencoded`` will be added as a default. The next two arguments are only of interest for correct handling |