summaryrefslogtreecommitdiff
path: root/CHANGES.txt
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2011-06-19 20:19:27 -0400
committerChris McDonough <chrism@plope.com>2011-06-19 20:19:27 -0400
commitd0a5f0654e0468f9d50a4c1b98f9d316253ad64d (patch)
tree705c0bb9e5401093274b5b1b4bdedd755537317e /CHANGES.txt
parentc8289eaadb144dbc743b40e61318ae39b6f504f2 (diff)
downloadpyramid-d0a5f0654e0468f9d50a4c1b98f9d316253ad64d.tar.gz
pyramid-d0a5f0654e0468f9d50a4c1b98f9d316253ad64d.tar.bz2
pyramid-d0a5f0654e0468f9d50a4c1b98f9d316253ad64d.zip
- Base exception response content type again on accept header.
- The ``pyramid.httpexceptions`` classes named ``HTTPFound``, ``HTTPMultipleChoices``, ``HTTPMovedPermanently``, ``HTTPSeeOther``, ``HTTPUseProxy``, and ``HTTPTemporaryRedirect`` now accept ``location`` as their first positional argument rather than ``detail``. This means that you can do, e.g. ``return pyramid.httpexceptions.HTTPFound('http://foo')`` rather than ``return pyramid.httpexceptions.HTTPFound(location='http//foo')`` (the latter will of course continue to work).
Diffstat (limited to 'CHANGES.txt')
-rw-r--r--CHANGES.txt9
1 files changed, 9 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 9a25a6b04..dd3673173 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -371,6 +371,15 @@ Backwards Incompatibilities
it is basically intended to directly mirror the ``webob.Response`` API,
which has many methods and attributes.
+- The ``pyramid.httpexceptions`` classes named ``HTTPFound``,
+ ``HTTPMultipleChoices``, ``HTTPMovedPermanently``, ``HTTPSeeOther``,
+ ``HTTPUseProxy``, and ``HTTPTemporaryRedirect`` now accept ``location`` as
+ their first positional argument rather than ``detail``. This means that
+ you can do, e.g. ``return pyramid.httpexceptions.HTTPFound('http://foo')``
+ rather than ``return
+ pyramid.httpexceptions.HTTPFound(location='http//foo')`` (the latter will
+ of course continue to work).
+
Dependencies
------------