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 mastahyeti
Recipients mastahyeti
Date 2012-08-30.18:21:00
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1346350861.65.0.903560804414.issue15824@psf.upfronthosting.co.za>
In-reply-to
Content
TYPO!!!

After my patch, urlparse can be used as such:

    import urlparse

    url = urlparse.urlparse('http://www.example.com/foo/bar?hehe=haha')
    url.netloc = 'www.python.com'
    urlparse.urlunparse(url)


The difference being that the result doesn't need to be casted to a list in order to be mutated...
History
Date User Action Args
2012-08-30 18:21:01mastahyetisetrecipients: + mastahyeti
2012-08-30 18:21:01mastahyetisetmessageid: <1346350861.65.0.903560804414.issue15824@psf.upfronthosting.co.za>
2012-08-30 18:21:01mastahyetilinkissue15824 messages
2012-08-30 18:21:00mastahyeticreate