Message5869

Author amak
Recipients amak, jheiselman
Date 2010-07-02.17:39:44
SpamBayes Score 0.031474546
Marked as misclassified No
Message-id <1278092385.08.0.504078304563.issue1626@psf.upfronthosting.co.za>
In-reply-to
Content
Works for me.

Jython 2.5.1 (Release_2_5_1:6813, Sep 26 2009, 13:47:54)
[Java HotSpot(TM) Client VM (Sun Microsystems Inc.)] on java1.5.0_21
Type "help", "copyright", "credits" or "license" for more information.
>>> import urllib
>>> urllib.urlretrieve("http://build.chromium.org/buildbot/snapshots/chromium-rel-xp/50594/chrome-win32.zip", "chrome.zip")
('chrome.zip', <httplib.HTTPMessage instance at 0x1>)
>>>

Results in a local file named "chrome.zip", 23,999,591 bytes long.

What does the following print on your system?

import urllib
url = "http://build.chromium.org/buildbot/snapshots/chromium-rel-xp/50594/chrome-win32.zip"
print urllib.splittype(url)

On mine, it prints

('http', '//build.chromium.org/buildbot/snapshots/chromium-rel-xp/50594/chrome-win32.zip')
History
Date User Action Args
2010-07-02 17:39:45amaksetmessageid: <1278092385.08.0.504078304563.issue1626@psf.upfronthosting.co.za>
2010-07-02 17:39:45amaksetrecipients: + amak, jheiselman
2010-07-02 17:39:45amaklinkissue1626 messages
2010-07-02 17:39:44amakcreate