summaryrefslogtreecommitdiff
path: root/CHANGES.txt
diff options
context:
space:
mode:
Diffstat (limited to 'CHANGES.txt')
-rw-r--r--CHANGES.txt10
1 files changed, 10 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index d329c260d..7d469551a 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -211,6 +211,16 @@ Behavior Changes
the perspective of the downstream application (for example, ``SCRIPT_NAME``
will now never possess a trailing slash).
+- Previously, ``pyramid.request.Request`` inherited from
+ ``webob.request.Request`` and implemented ``__getattr__``, ``__setattr__``
+ and ``__delattr__`` itself in order to overidde "adhoc attr" WebOb behavior
+ where attributes of the request are stored in the environ. Now,
+ ``pyramid.request.Request`` object inherits from (the more recent)
+ ``webob.request.BaseRequest`` instead of ``webob.request.Request``, which
+ provides the same behavior. ``pyramid.request.Request`` no longer
+ implements its own ``__getattr__``, ``__setattr__`` or ``__delattr__`` as a
+ result.
+
Dependencies
------------