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.

classification
Title: Use faster URL shortener for perf.py
Type: performance Stage: resolved
Components: Benchmarks Versions:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: alexandre.vassalotti Nosy List: alexandre.vassalotti, pitrou, python-dev, tshepang
Priority: normal Keywords: patch

Created on 2013-04-17 23:52 by alexandre.vassalotti, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
use_google_shortener.patch alexandre.vassalotti, 2013-04-17 23:52
Messages (2)
msg187215 - (view) Author: Alexandre Vassalotti (alexandre.vassalotti) * (Python committer) Date: 2013-04-17 23:52
As noted previously, TinyURL URL shortening API is rather slow and not always available. Each requests takes between 0.5 and 1.5 seconds.

We should change it to use Google URL Shortener which returns a response within 10 milliseconds and is much more available.
msg187452 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2013-04-20 20:00
New changeset 1488e1f55f61 by Alexandre Vassalotti in branch 'default':
Issue #17785: Use a faster URL shortener for perf.py
http://hg.python.org/benchmarks/rev/1488e1f55f61
History
Date User Action Args
2022-04-11 14:57:44adminsetgithub: 61985
2013-04-20 20:00:47alexandre.vassalottisetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2013-04-20 20:00:05python-devsetnosy: + python-dev
messages: + msg187452
2013-04-19 18:27:24tshepangsetnosy: + tshepang
2013-04-17 23:52:57alexandre.vassalotticreate