diff options
author | Georg Brandl <georg@python.org> | 2014-10-12 14:13:32 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2014-10-12 14:13:32 (GMT) |
commit | 62b08136d759e0da4b9a7fa6189ce1059d7b5150 (patch) | |
tree | f83b80386965ad964e9ecf856d8291a7c051d9df /Doc/library | |
parent | 53664343368a61a2986d3bee3b9b0888376f51c6 (diff) | |
download | cpython-62b08136d759e0da4b9a7fa6189ce1059d7b5150.zip cpython-62b08136d759e0da4b9a7fa6189ce1059d7b5150.tar.gz cpython-62b08136d759e0da4b9a7fa6189ce1059d7b5150.tar.bz2 |
Closes #22586: clarify meaning of allow_fragments in urlparse.
Diffstat (limited to 'Doc/library')
-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 b951420..42aa4be 100644 --- a/Doc/library/urllib.parse.rst +++ b/Doc/library/urllib.parse.rst @@ -81,7 +81,8 @@ or on combining URL components into a URL string. this argument is the empty string. If the *allow_fragments* argument is false, fragment identifiers are not - allowed. The default value for this argument is :const:`True`. + recognized and parsed as part of the preceding component. The default value + for this argument is :const:`True`. The return value is actually an instance of a subclass of :class:`tuple`. This class has the following additional read-only convenience attributes: |