summaryrefslogtreecommitdiff
path: root/CHANGES.txt
diff options
context:
space:
mode:
authorMichael Merickel <michael@merickel.org>2015-04-17 23:13:14 -0500
committerMichael Merickel <michael@merickel.org>2015-04-17 23:20:49 -0500
commit37f3ed08e55704012b5c3b7b9e77b684c28d81b2 (patch)
tree82e7d00582f72533488e10b964e18d3b615c0035 /CHANGES.txt
parent090a8c273e6cdb3699ddf0f2710dcfa3dac92236 (diff)
downloadpyramid-37f3ed08e55704012b5c3b7b9e77b684c28d81b2.tar.gz
pyramid-37f3ed08e55704012b5c3b7b9e77b684c28d81b2.tar.bz2
pyramid-37f3ed08e55704012b5c3b7b9e77b684c28d81b2.zip
default response_callback and finished_callback to an empty deque instead of None
fixes #1600
Diffstat (limited to 'CHANGES.txt')
-rw-r--r--CHANGES.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index a9e159275..87e9f1f3a 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -191,6 +191,10 @@ Bug Fixes
- Avoiding timing attacks against CSRF tokens.
See https://github.com/Pylons/pyramid/pull/1574
+- ``request.finished_callbacks`` and ``request.response_callbacks`` now
+ default to an iterable instead of ``None``. It may be checked for a length
+ of 0. This was the behavior in 1.5.
+
Deprecations
------------