[issue16932] urlparse fails at parsing "www.python.org:80/"

2019-10-18 Thread Senthil Kumaran
Senthil Kumaran added the comment: New changeset 0f3187c1ce3b3ace60f6c1691dfa3d4e744f0384 by Senthil Kumaran in branch '3.8': [3.8] bpo-27657: Fix urlparse() with numeric paths (GH-661) (#16839) https://github.com/python/cpython/commit/0f3187c1ce3b3ace60f6c1691dfa3d4e744f0384 -- __

[issue16932] urlparse fails at parsing "www.python.org:80/"

2019-10-18 Thread Senthil Kumaran
Change by Senthil Kumaran : -- pull_requests: +16390 pull_request: https://github.com/python/cpython/pull/16839 ___ Python tracker ___ _

[issue16932] urlparse fails at parsing "www.python.org:80/"

2019-10-18 Thread miss-islington
miss-islington added the comment: New changeset 82b5f6b16e051f8a2ac6e87ba86b082fa1c4a77f by Miss Islington (bot) in branch '3.7': bpo-27657: Fix urlparse() with numeric paths (GH-661) https://github.com/python/cpython/commit/82b5f6b16e051f8a2ac6e87ba86b082fa1c4a77f -- nosy: +miss-is

[issue16932] urlparse fails at parsing "www.python.org:80/"

2019-10-18 Thread miss-islington
Change by miss-islington : -- pull_requests: +16384 pull_request: https://github.com/python/cpython/pull/16837 ___ Python tracker ___ __

[issue16932] urlparse fails at parsing "www.python.org:80/"

2019-10-18 Thread Senthil Kumaran
Senthil Kumaran added the comment: New changeset 5a88d50ff013a64fbdb25b877c87644a9034c969 by Senthil Kumaran (Tim Graham) in branch 'master': bpo-27657: Fix urlparse() with numeric paths (#661) https://github.com/python/cpython/commit/5a88d50ff013a64fbdb25b877c87644a9034c969 -- ___

[issue16932] urlparse fails at parsing "www.python.org:80/"

2017-03-13 Thread Tim Graham
Changes by Tim Graham : -- pull_requests: +542 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyt

[issue16932] urlparse fails at parsing "www.python.org:80/"

2013-02-26 Thread Senthil Kumaran
Senthil Kumaran added the comment: I have fixed the docs issue. Thanks for the report and following up. -- assignee: -> orsenthil keywords: -buildbot resolution: -> fixed stage: needs patch -> committed/rejected status: open -> closed type: -> behavior __

[issue16932] urlparse fails at parsing "www.python.org:80/"

2013-02-26 Thread Roundup Robot
Roundup Robot added the comment: New changeset 33895c474b4d by Senthil Kumaran in branch '2.7': Fix issue16932: Fix the urlparse example. Remote :port when scheme is not specified to demonstrate correct behavior http://hg.python.org/cpython/rev/33895c474b4d New changeset 5442a77b925c by Senthil

[issue16932] urlparse fails at parsing "www.python.org:80/"

2013-02-26 Thread Senthil Kumaran
Senthil Kumaran added the comment: I am noticing this one late. Sorry for that. I agree that this is docs issue and I would like to fix it in this way. Give the doc example as: >>> urlparse('www.cwi.nl/%7Eguido/Python.html') ParseResult(scheme='', netloc='', path='www.cwi.nl/%7Eguido/Python.htm

[issue16932] urlparse fails at parsing "www.python.org:80/"

2013-01-14 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue16932] urlparse fails at parsing "www.python.org:80/"

2013-01-11 Thread Georg Brandl
Georg Brandl added the comment: Hmm, you're right. The behavior has been like this at least since Python 2.5: Python 2.5.4 (r254:67916, Dec 16 2012, 20:33:12) [GCC 4.6.3] on linux3 Type "help", "copyright", "credits" or "license" for more information. >>> from urlparse import urlparse >>> urlp

[issue16932] urlparse fails at parsing "www.python.org:80/"

2013-01-11 Thread Sandro Tosi
Sandro Tosi added the comment: The documentation reports this example: >>> urlparse('www.cwi.nl:80/%7Eguido/Python.html') ParseResult(scheme='', netloc='', path='www.cwi.nl:80/%7Eguido/Python.html', params='', query='', fragment='') but when executing it returns: $ ./python -V Pytho

[issue16932] urlparse fails at parsing "www.python.org:80/"

2013-01-11 Thread Georg Brandl
Georg Brandl added the comment: This is not a bug: urlparse is there to parse URLs, and URLs start with an URL scheme such as "http:". There is no way for a generic URL parser to know that "python.org:80/" is supposed to be "http://python.org:80/";. -- nosy: +georg.brandl resolution:

[issue16932] urlparse fails at parsing "www.python.org:80/"

2013-01-11 Thread Sandro Tosi
Sandro Tosi added the comment: Adding Senthil as per expert list -- nosy: +orsenthil ___ Python tracker ___ ___ Python-bugs-list maili

[issue16932] urlparse fails at parsing "www.python.org:80/"

2013-01-11 Thread Sandro Tosi
New submission from Sandro Tosi: Hello, as reported at http://mail.python.org/pipermail/docs/2013-January/012375.html urlparse fails to parse URLs without a schema and with a url path, as opposed to what's documented at http://docs.python.org/2/library/urlparse.html?highlight=urlparse#urlparse