diff options
| author | Chris McDonough <chrism@plope.com> | 2012-01-05 06:32:38 -0500 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2012-01-05 06:32:38 -0500 |
| commit | 92dcb5f1a52d46fec7c043a1b5b4158f3d013c34 (patch) | |
| tree | 72ff58e0f8559d3f71845b1b1cc52fd70157f593 /CHANGES.txt | |
| parent | ad9807016fd28b7da424174fdb6ed9b93641f58f (diff) | |
| download | pyramid-92dcb5f1a52d46fec7c043a1b5b4158f3d013c34.tar.gz pyramid-92dcb5f1a52d46fec7c043a1b5b4158f3d013c34.tar.bz2 pyramid-92dcb5f1a52d46fec7c043a1b5b4158f3d013c34.zip | |
- Using a dynamic segment named ``traverse`` in a route pattern like this::
config.add_route('trav_route', 'traversal/{traverse:.*}')
Would cause a ``UnicodeDecodeError`` when the route was matched and the
matched portion of the URL contained any high-order characters. See also
https://github.com/Pylons/pyramid/issues/385 .
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 93be3eab3..6116da229 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -45,6 +45,14 @@ Bug Fixes URLDecodeError if there were any high-order characters in the traversal pattern or in the matched dynamic segments. +- Using a dynamic segment named ``traverse`` in a route pattern like this:: + + config.add_route('trav_route', 'traversal/{traverse:.*}') + + Would cause a ``UnicodeDecodeError`` when the route was matched and the + matched portion of the URL contained any high-order characters. See also + https://github.com/Pylons/pyramid/issues/385 . + Backwards Incompatibilities --------------------------- |
