[issue14826] urlopen URL with unescaped space

2019-04-10 Thread miss-islington
miss-islington added the comment: New changeset 9d2ccf173e2e8ff069153f603d2e5b1ea757e734 by Miss Islington (bot) in branch '3.7': bpo-14826: document that URLopener quotes fullurl. (GH-12758) https://github.com/python/cpython/commit/9d2ccf173e2e8ff069153f603d2e5b1ea757e734 -- nosy:

[issue14826] urlopen URL with unescaped space

2019-04-10 Thread miss-islington
Change by miss-islington : -- pull_requests: +12690 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue14826] urlopen URL with unescaped space

2019-04-10 Thread miss-islington
Change by miss-islington : -- pull_requests: +12689 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue14826] urlopen URL with unescaped space

2019-04-10 Thread Gregory P. Smith
Gregory P. Smith added the comment: New changeset 2fb2bc81c3f40d73945c6102569495140e1182c7 by Gregory P. Smith in branch 'master': bpo-14826: document that URLopener quotes fullurl. (GH-12758) https://github.com/python/cpython/commit/2fb2bc81c3f40d73945c6102569495140e1182c7 --

[issue14826] urlopen URL with unescaped space

2019-04-10 Thread Gregory P. Smith
Gregory P. Smith added the comment: urllib.request.URLopener() and FancyURLopener() automatically quote() URLs for the user. Those APIs are marked deprecated since 3.3 but have no timeline for removal. urllib.request.urlopen() does not use those, so URLs passed in are not auto-quoted.

[issue14826] urlopen URL with unescaped space

2019-04-10 Thread Gregory P. Smith
Change by Gregory P. Smith : -- pull_requests: +12687 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue14826] urlopen URL with unescaped space

2019-04-09 Thread Gregory P. Smith
Change by Gregory P. Smith : -- pull_requests: +12682 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list mailing

[issue14826] urlopen URL with unescaped space

2016-06-21 Thread Martin Panter
Martin Panter added the comment: I think this should be treated as a feature, not a bug, since as Christian said, the documentation currently does not support this case. -- title: urllib2.urlopen fails to load URL -> urlopen URL with unescaped space type: -> enhancement versions: