diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-10-19 13:43:42 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-10-19 13:43:42 (GMT) |
commit | a97cd2eb17e0dc829e02119ea6f04198a419ed20 (patch) | |
tree | ef03c46125b86e2cec7846b4d8fb4c071728067b /Doc/library/urllib.parse.rst | |
parent | ecf41da83e5db98734b19f205899168cc56da943 (diff) | |
download | cpython-a97cd2eb17e0dc829e02119ea6f04198a419ed20.zip cpython-a97cd2eb17e0dc829e02119ea6f04198a419ed20.tar.gz cpython-a97cd2eb17e0dc829e02119ea6f04198a419ed20.tar.bz2 |
Issue #19795: Mark up True and False as literal text instead of bold.
Diffstat (limited to 'Doc/library/urllib.parse.rst')
-rw-r--r-- | Doc/library/urllib.parse.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/urllib.parse.rst b/Doc/library/urllib.parse.rst index 007e4da..499b211 100644 --- a/Doc/library/urllib.parse.rst +++ b/Doc/library/urllib.parse.rst @@ -543,7 +543,7 @@ task isn't already covered by the URL parsing functions above. When a sequence of two-element tuples is used as the *query* argument, the first element of each tuple is a key and the second is a value. The value element in itself can be a sequence and in that case, if - the optional parameter *doseq* is evaluates to *True*, individual + the optional parameter *doseq* is evaluates to ``True``, individual ``key=value`` pairs separated by ``'&'`` are generated for each element of the value sequence for the key. The order of parameters in the encoded string will match the order of parameter tuples in the sequence. |