Message27857
Logged In: YES
user_id=1299996
The problem I was having specifically was that the url had a
colon in the query string. Since the query string was being
parsed as part of the host, the text after the colon was
being treated as the port when urllib.splitport was called
later. The following is a simple testcase:
import urllib2
webpage = urllib2.urlopen("http://host.com?a=b:3b")
You will then get a "httplib.InvalidURL: nonnumeric port: '3b'" |
|
| Date |
User |
Action |
Args |
| 2007-08-23 14:38:42 | admin | link | issue1457264 messages |
| 2007-08-23 14:38:42 | admin | create | |
|