diff options
| author | Chris McDonough <chrism@agendaless.com> | 2008-12-18 07:28:17 +0000 |
|---|---|---|
| committer | Chris McDonough <chrism@agendaless.com> | 2008-12-18 07:28:17 +0000 |
| commit | 38e09dc89a36f801f3892ae99fa784344ca8cfe8 (patch) | |
| tree | 78bddbcd10c684da7ad418037a9a1172aeb4e7da /CHANGES.txt | |
| parent | 5b72fa1f90b297b2ace6b722482d2e1f046d60fe (diff) | |
| download | pyramid-38e09dc89a36f801f3892ae99fa784344ca8cfe8.tar.gz pyramid-38e09dc89a36f801f3892ae99fa784344ca8cfe8.tar.bz2 pyramid-38e09dc89a36f801f3892ae99fa784344ca8cfe8.zip | |
- Speed up ``traversal.model_url`` execution by using a custom url
quoting function instead of Python's ``urllib.quote``, by caching
URL path segment quoting and encoding results, and by disusing
Python's ``urlparse.urljoin`` in favor of a simple string
concatenation.
Diffstat (limited to 'CHANGES.txt')
| -rw-r--r-- | CHANGES.txt | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index 9edbd433c..4cca670d3 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,11 @@ +Next release + + - Speed up ``traversal.model_url`` execution by using a custom url + quoting function instead of Python's ``urllib.quote``, by caching + URL path segment quoting and encoding results, and by disusing + Python's ``urlparse.urljoin`` in favor of a simple string + concatenation. + 0.5.5 (12/17/2008) Backwards Incompatibilities |
