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 tseaver
Recipients ajaksu2, jepler, orsenthil, pitrou, rhettinger, tseaver
Date 2010-05-10.17:05:10
SpamBayes Score 0.00038339573
Marked as misclassified No
Message-id <1273511112.31.0.571386227803.issue1285086@psf.upfronthosting.co.za>
In-reply-to
Content
I can only reiterate that Zope apps can call 'urllib.quote' dozens,
hundreds, even thousands of times on a single request:  the
reason for the original bug report was that 'urllib.quote' was
showing up frequently on profiling output for such requests.
Short-circuiting the case for the empty string and the case that
the string being quoted actually contains only safe characters
together made 'urllib.quote' disappear from the profiler output.

Newer frameworks, such as 'repoze.bfg', avoid using
'urliib.quote' at all for just this reason.
History
Date User Action Args
2010-05-10 17:05:12tseaversetrecipients: + tseaver, jepler, rhettinger, orsenthil, pitrou, ajaksu2
2010-05-10 17:05:12tseaversetmessageid: <1273511112.31.0.571386227803.issue1285086@psf.upfronthosting.co.za>
2010-05-10 17:05:10tseaverlinkissue1285086 messages
2010-05-10 17:05:10tseavercreate