This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Sentence fragment in urlparse documentation
Type: Stage:
Components: Documentation Versions: Python 2.5
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: doerwalter, whit537
Priority: normal Keywords:

Created on 2005-08-30 23:57 by whit537, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg26158 - (view) Author: Chad Whitacre (whit537) Date: 2005-08-30 23:57
The urlparse documentation contains this sentence fragment:

"This should generally be used instead of urlparse() if
the more recent URL syntax allowing parameters to be
applied to each segment of the path portion of the URL
(see RFC 2396)."[1]

From the context, I infer that the sentence should read
something like:

"This should generally be used instead of urlparse() if
you do not wish to support the more recent URL syntax
allowing parameters to be applied to each segment of
the path portion of the URL (see RFC 2396)."


-----

[1]
http://www.python.org/dev/doc/devel/lib/module-urlparse.html
msg26159 - (view) Author: Walter Dörwald (doerwalter) * (Python committer) Date: 2005-08-31 11:05
Logged In: YES 
user_id=89016

Checked in a different fix (by appending " is wanted" to the
sentence fragment).

Thanks for the report!
History
Date User Action Args
2022-04-11 14:56:12adminsetgithub: 42325
2005-08-30 23:57:09whit537create