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 pr0gg3d
Recipients orsenthil, pr0gg3d, till
Date 2009-08-03.16:51:16
SpamBayes Score 0.12047193
Marked as misclassified No
Message-id <1249318277.95.0.252849461668.issue6557@psf.upfronthosting.co.za>
In-reply-to
Content
urllib2 does escape spaces (and other characters too):

In [20]: 
u=urllib2.urlopen("http://sourceforge.net/project/showfiles.php?
group_id=16847&package_id=13374")

In [21]: u.url
Out[21]: 'http://sourceforge.net/projects/xmlrpc-c/files/Xmlrpc-
c%20Super%20Stable/'

In [22]: u.read()[0:100]
Out[22]: '\n\n<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 
Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xh'
History
Date User Action Args
2009-08-03 16:51:18pr0gg3dsetrecipients: + pr0gg3d, orsenthil, till
2009-08-03 16:51:17pr0gg3dsetmessageid: <1249318277.95.0.252849461668.issue6557@psf.upfronthosting.co.za>
2009-08-03 16:51:16pr0gg3dlinkissue6557 messages
2009-08-03 16:51:16pr0gg3dcreate