diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-10-07 23:02:43 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-07 23:02:43 (GMT) |
commit | 02394400f3e03b2c8be7154fd38981fa9e7d1ef0 (patch) | |
tree | 30b16c3d20488140fc3392b0868b3cb5faad83c7 | |
parent | 6f40e2fb930ff51bbc5a525f661dcc0b71b38a13 (diff) | |
download | cpython-02394400f3e03b2c8be7154fd38981fa9e7d1ef0.zip cpython-02394400f3e03b2c8be7154fd38981fa9e7d1ef0.tar.gz cpython-02394400f3e03b2c8be7154fd38981fa9e7d1ef0.tar.bz2 |
[3.10] gh-91708: Revert params note in urllib.parse.urlparse table (GH-96699) (#98053)
Revert params note in urllib.parse.urlparse table
(cherry picked from commit eed80458e8e776d15fa862da71dcce58c47e2ca7)
Co-authored-by: Stanley <46876382+slateny@users.noreply.github.com>
-rw-r--r-- | Doc/library/urllib.parse.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/library/urllib.parse.rst b/Doc/library/urllib.parse.rst index 1478b34..96b3965 100644 --- a/Doc/library/urllib.parse.rst +++ b/Doc/library/urllib.parse.rst @@ -113,7 +113,8 @@ or on combining URL components into a URL string. +------------------+-------+-------------------------+------------------------+ | :attr:`path` | 2 | Hierarchical path | empty string | +------------------+-------+-------------------------+------------------------+ - | :attr:`params` | 3 | No longer used | always an empty string | + | :attr:`params` | 3 | Parameters for last | empty string | + | | | path element | | +------------------+-------+-------------------------+------------------------+ | :attr:`query` | 4 | Query component | empty string | +------------------+-------+-------------------------+------------------------+ |