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 | f8757fd356936c800435f3270fff7a5c5df6dcb4 (patch) | |
tree | cf3487a2bbbffef8cef9bc1b883d18c9b17a732c /Doc | |
parent | 987a02b5cfe57c4430f2cd72d20aaa0d513ec7c3 (diff) | |
download | cpython-f8757fd356936c800435f3270fff7a5c5df6dcb4.zip cpython-f8757fd356936c800435f3270fff7a5c5df6dcb4.tar.gz cpython-f8757fd356936c800435f3270fff7a5c5df6dcb4.tar.bz2 |
Closes #22586: clarify meaning of allow_fragments in urlparse.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/urlparse.rst | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Doc/library/urlparse.rst b/Doc/library/urlparse.rst index 1bc361d..87e08dd 100644 --- a/Doc/library/urlparse.rst +++ b/Doc/library/urlparse.rst @@ -83,8 +83,9 @@ The :mod:`urlparse` module defines the following functions: this argument is the empty string. If the *allow_fragments* argument is false, fragment identifiers are not - allowed, even if the URL's addressing scheme normally does support them. The - default value for this argument is :const:`True`. + recognized and parsed as part of the preceding component, even if the URL's + addressing scheme normally does support them. 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: |