summaryrefslogtreecommitdiff
path: root/CHANGES.txt
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2010-07-12 13:50:49 +0000
committerChris McDonough <chrism@agendaless.com>2010-07-12 13:50:49 +0000
commit0482bd06bcde5601ea2ab3b01b774e03f92160b7 (patch)
tree5b182307301e402a343977fb44828696dc119d54 /CHANGES.txt
parent9336d44d79232b021cc5f871aa43a384958e1920 (diff)
downloadpyramid-0482bd06bcde5601ea2ab3b01b774e03f92160b7.tar.gz
pyramid-0482bd06bcde5601ea2ab3b01b774e03f92160b7.tar.bz2
pyramid-0482bd06bcde5601ea2ab3b01b774e03f92160b7.zip
- New internal exception: ``repoze.bfg.exceptions.URLDecodeError``.
This URL is a subclass of the built-in Python exception named ``UnicodeDecodeError``. - When decoding a URL segment to Unicode fails, the exception raised is now ``repoze.bfg.exceptions.URLDecodeError`` instead of ``UnicodeDecodeError``. This makes it possible to register an exception view invoked specifically when ``repoze.bfg`` cannot decode a URL.
Diffstat (limited to 'CHANGES.txt')
-rw-r--r--CHANGES.txt13
1 files changed, 13 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 04f1f0726..b9de1f891 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,6 +1,19 @@
Next release
============
+Features
+--------
+
+- New internal exception: ``repoze.bfg.exceptions.URLDecodeError``.
+ This URL is a subclass of the built-in Python exception named
+ ``UnicodeDecodeError``.
+
+- When decoding a URL segment to Unicode fails, the exception raised
+ is now ``repoze.bfg.exceptions.URLDecodeError`` instead of
+ ``UnicodeDecodeError``. This makes it possible to register an
+ exception view invoked specifically when ``repoze.bfg`` cannot
+ decode a URL.
+
Bug Fixes
---------