diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2007-07-13 20:48:09 +0200 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2007-07-13 20:48:09 +0200 |
commit | d6e712a08056241a7c5d93da327544aa0ed39c67 (patch) | |
tree | 7dd20c4ac8b5a14dff6833a48d5ba63008203c8b | |
parent | 27e5307af0027344f0ffe5b39ebdcccca94c8308 (diff) |
add note about improving performance more
git-svn-id: http://arthurdejong.org/svn/webcheck/webcheck@344 86f53f14-5ff3-0310-afe5-9b438ce3f40c
-rw-r--r-- | myurllib.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/myurllib.py b/myurllib.py index fddcf49..815e948 100644 --- a/myurllib.py +++ b/myurllib.py @@ -48,6 +48,8 @@ def _normalize_escapes(url): if r in _okurlchars: url = url.replace(c, r) # TODO: uppercase any escaped codes left + # TODO: make this a better performing implementation as this + # function costs about 15% of all time during deserialisation # url encode any nonprintable or problematic characters # (but not reserved chars) url = ''.join( |