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 orsenthil
Recipients ajaksu2, barry, fijall, flox, jepler, orsenthil, pitrou, rhettinger, serhiy.storchaka, tseaver
Date 2013-02-14.07:00:12
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <CAPOVWOTO=oir_-Ew6tCwMhjdahLrOtPoXHG0ZvMFL6tx97Wzjg@mail.gmail.com>
In-reply-to <CAPOVWOT_-87A7O9rhUnxHFfZqEEABsgrfJ-Csj+kkc5uKXyu1w@mail.gmail.com>
Content
I wrongly minutes. Here is actual data of execution speeds.  There is
magnitude of difference (almost 130x faster). Measured on  macbook pro
with 2 cores and 4 Gig mem.

Before Patch:

$ ./python.exe -m timeit -s "import urllib.parse; x='a%20' * 100000"
"urllib.parse.unquote(x)"
10 loops, best of 3: 26.8 sec per loop

After Patch:

$ ./python.exe -m timeit -s "import urllib.parse; x='a%20' * 100000"
"urllib.parse.unquote(x)"
10 loops, best of 3: 205 msec per loop
History
Date User Action Args
2013-02-14 07:00:13orsenthilsetrecipients: + orsenthil, barry, jepler, rhettinger, tseaver, pitrou, ajaksu2, flox, fijall, serhiy.storchaka
2013-02-14 07:00:12orsenthillinkissue1285086 messages
2013-02-14 07:00:12orsenthilcreate