[Python-checkins] cpython (3.4): Closes #22586: clarify meaning of allow_fragments in urlparse.

georg.brandl python-checkins at python.org
Sun Oct 12 16:14:25 CEST 2014


https://hg.python.org/cpython/rev/9eed2e7fa764
changeset:   92990:9eed2e7fa764
branch:      3.4
parent:      92987:64a8f20488c4
user:        Georg Brandl <georg at python.org>
date:        Sun Oct 12 16:13:32 2014 +0200
summary:
  Closes #22586: clarify meaning of allow_fragments in urlparse.

files:
  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
--- a/Doc/library/urllib.parse.rst
+++ b/Doc/library/urllib.parse.rst
@@ -81,7 +81,8 @@
    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:

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list