This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author facundobatista
Recipients facundobatista, georg.brandl, georg.brandl, kruegi, orsenthil, sjones
Date 2008-06-21.18:03:14
SpamBayes Score 4.5461995e-05
Marked as misclassified No
Message-id <1214071402.55.0.930406859032.issue754016@psf.upfronthosting.co.za>
In-reply-to
Content
Senthil, your patch is wrong, see:

>>> import urlparse
>>> urlparse.urlparse('1.2.3.4:80','http')
ParseResult(scheme='http', netloc='', path='1.2.3.4:80', params='',
query='', fragment='')

The netloc should be "1.2.3.4:80", note the composition of an URL:

  <scheme>://<netloc>/<path>;<params>?<query>#<fragment>

Please fix it and test it applying the patch to the test I'm submitting
here...
History
Date User Action Args
2008-06-21 18:03:23facundobatistasetspambayes_score: 4.5462e-05 -> 4.5461995e-05
recipients: + facundobatista, georg.brandl, birkenfeld, sjones, kruegi, orsenthil
2008-06-21 18:03:22facundobatistasetspambayes_score: 4.5462e-05 -> 4.5462e-05
messageid: <1214071402.55.0.930406859032.issue754016@psf.upfronthosting.co.za>
2008-06-21 18:03:19facundobatistalinkissue754016 messages
2008-06-21 18:03:18facundobatistacreate