[issue8656] urllib2 mangles file://-scheme URLs

2010-05-07 Thread Senthil Kumaran
Senthil Kumaran added the comment: Fixed the change which resulted in Buildbots failure. Those should turn green now. -- ___ Python tracker ___ __

[issue8656] urllib2 mangles file://-scheme URLs

2010-05-07 Thread Senthil Kumaran
Senthil Kumaran added the comment: On Sat, May 8, 2010 at 10:04 AM, Jean-Paul Calderone wrote: > TypeError: cannot concatenate 'str' and 'NoneType' objects Okay, I see where the problem is. I shall quickly fix it. -- ___ Python tracker

[issue8656] urllib2 mangles file://-scheme URLs

2010-05-07 Thread Jean-Paul Calderone
Jean-Paul Calderone added the comment: Major buildbot failures caused by this change, eg: ERROR: test_file (test.test_urllib2net.OtherNetworkTests) -- Traceback (most recent call last): File "/home/buildbot/slave/py-build/2.

[issue8656] urllib2 mangles file://-scheme URLs

2010-05-07 Thread Senthil Kumaran
Senthil Kumaran added the comment: Fixed in r80953, r80954 , r80955 and r80956. -- assignee: -> orsenthil nosy: +orsenthil resolution: -> fixed stage: -> committed/rejected status: open -> closed type: -> behavior ___ Python tracker

[issue8656] urllib2 mangles file://-scheme URLs

2010-05-07 Thread Dave Abrahams
New submission from Dave Abrahams : $ touch /tmp/x.html $ python -c 'import urllib2;resp=urllib2.urlopen("file:///tmp/x.html");print resp.geturl()' file:/tmp/x.html note the missing // after the colon -- messages: 105250 nosy: dabrahams priority: normal severity: normal status: open ti