Facundo Batista <[EMAIL PROTECTED]> added the comment: 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... Added file: http://bugs.python.org/file10686/test_urlparse.diff _______________________________________ Python tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue754016> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com