[issue2244] urllib and urllib2 decode userinfo multiple times

2010-11-20 Thread Senthil Kumaran
Senthil Kumaran added the comment: back-ported to release27-maint in r86554. -- status: open -> closed ___ Python tracker ___ ___ Pyth

[issue2244] urllib and urllib2 decode userinfo multiple times

2010-11-18 Thread Senthil Kumaran
Senthil Kumaran added the comment: Fixed in r86520 (py3k) and r86522 (release31-maint). unquote happens at the first level inside Request class, _parse method. Shall port to py2.7. -- nosy: -BreamoreBoy resolution: -> fixed stage: patch review -> committed/rejected

[issue2244] urllib and urllib2 decode userinfo multiple times

2010-11-15 Thread Jessica McKellar
Jessica McKellar added the comment: I can confirm that the combination of urllib_issue_updated.diff and urllib_ftptests_doubleencode.patch apply cleanly against py3k, that the added tests exercise the described bug, and that the full test suite passes after applying the patches. The patches

[issue2244] urllib and urllib2 decode userinfo multiple times

2010-07-31 Thread R. David Murray
Changes by R. David Murray : -- stage: unit test needed -> patch review type: resource usage -> behavior ___ Python tracker ___ ___ Pyt

[issue2244] urllib and urllib2 decode userinfo multiple times

2010-07-31 Thread Theodore Turocy
Theodore Turocy added the comment: I am attaching a patch against py3k which adds some tests to demonstrate the original bug when issuing a Request() to a ftp:// URL. To do this, the tests add checks for user and passwd. The previous version of checks asserted that the .user and .passwd of t

[issue2244] urllib and urllib2 decode userinfo multiple times

2010-07-31 Thread David Stanek
Changes by David Stanek : -- nosy: +dstanek ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

[issue2244] urllib and urllib2 decode userinfo multiple times

2010-07-20 Thread Senthil Kumaran
Senthil Kumaran added the comment: Thanks Ray Allen. Usually the patch against the py3k branch is enough, it will be ported to other branches. -- ___ Python tracker ___

[issue2244] urllib and urllib2 decode userinfo multiple times

2010-07-20 Thread Ray.Allen
Ray.Allen added the comment: This bug exists on py3k also, so I worked out a patch for py3k, too. -- Added file: http://bugs.python.org/file18084/urllib_issue_updated.diff ___ Python tracker ___

[issue2244] urllib and urllib2 decode userinfo multiple times

2010-07-20 Thread Ray.Allen
Changes by Ray.Allen : Removed file: http://bugs.python.org/file18082/urllib_issue_updated.patch ___ Python tracker ___ ___ Python-bugs-list ma

[issue2244] urllib and urllib2 decode userinfo multiple times

2010-07-20 Thread Ray.Allen
Changes by Ray.Allen : Added file: http://bugs.python.org/file18083/urllib_issue_updated.patch ___ Python tracker ___ ___ Python-bugs-list mail

[issue2244] urllib and urllib2 decode userinfo multiple times

2010-07-20 Thread Ray.Allen
Ray.Allen added the comment: By confirming the "%2525" case, I guess this is really a bug. But the patch cause test_urllib2.py failed. I modified the patch to fix it. -- nosy: +ysj.ray Added file: http://bugs.python.org/file18082/urllib_issue_updated.patch

[issue2244] urllib and urllib2 decode userinfo multiple times

2010-07-19 Thread Mark Lawrence
Mark Lawrence added the comment: Re-assigned as per maintainers list. -- assignee: fdrake -> orsenthil nosy: +BreamoreBoy versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6, Python 3.0 ___ Python tracker ___

[issue2244] urllib and urllib2 decode userinfo multiple times

2009-04-22 Thread Daniel Diniz
Changes by Daniel Diniz : -- keywords: +easy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue2244] urllib and urllib2 decode userinfo multiple times

2009-02-12 Thread Daniel Diniz
Changes by Daniel Diniz : -- nosy: +jjlee ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org

[issue2244] urllib and urllib2 decode userinfo multiple times

2009-02-12 Thread Daniel Diniz
Changes by Daniel Diniz : -- nosy: +orsenthil stage: -> test needed versions: +Python 3.0 -Python 2.5 ___ Python tracker ___ ___ Pytho

[issue2244] urllib and urllib2 decode userinfo multiple times

2008-03-20 Thread Sean Reifschneider
Sean Reifschneider <[EMAIL PROTECTED]> added the comment: Fred: You most recently touched the code impacted by this test, does this sound reasonable? -- assignee: -> fdrake nosy: +fdrake, jafo priority: -> normal type: behavior -> resource usage versions: +Python 2.6 _

[issue2244] urllib and urllib2 decode userinfo multiple times

2008-03-06 Thread Carl Meyer
New submission from Carl Meyer: Both urllib and urllib2 call urllib.unquote() multiple times on data in the userinfo section of an FTP URL. One call occurs at the end of the urllib.splituser() function. In urllib, the other call appears in URLOpener.open_ftp(). In urllib2, the other two occur