[issue17831] urllib.URLopener.open breaks ActiveDirectory user

2015-04-16 Thread R. David Murray
Changes by R. David Murray rdmur...@bitdance.com: -- resolution: - not a bug stage: - resolved status: open - closed type: - behavior ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17831

[issue17831] urllib.URLopener.open breaks ActiveDirectory user

2015-04-16 Thread Howard Haimovitch
Howard Haimovitch added the comment: tested with David: two tests were made one using IE and the other using Firefox. Both were treated properly by the URL.lib library. Browsers do not preserve the backslash character. IE turns it into a forward slash and Firefox turns it into %5c. So urlliv is

[issue17831] urllib.URLopener.open breaks ActiveDirectory user

2013-04-24 Thread Nataly Glazyrina
New submission from Nataly Glazyrina: When I try to open file from ftp by path like 'ftp://domain\user:passw...@my.path' line 'fullurl = quote(fullurl, safe=%/:=?~#+!$,;'@()*[]|)' changes 'domain\user' to 'domain%5Cuser' and brokes username. As a result - error 530 on login to ftp.

[issue17831] urllib.URLopener.open breaks ActiveDirectory user

2013-04-24 Thread Nataly Glazyrina
Changes by Nataly Glazyrina stevep...@gmail.com: -- components: +Library (Lib) versions: +Python 2.7 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17831 ___

[issue17831] urllib.URLopener.open breaks ActiveDirectory user

2013-04-24 Thread Senthil Kumaran
Senthil Kumaran added the comment: Can you give the full snippet that you are trying. I assume you are using urllib2? Also If you give the same URL to your other clients like browser, does the resolution happen properly? -- nosy: +orsenthil ___