summaryrefslogtreecommitdiff
path: root/CHANGES.txt
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2009-10-29 23:07:48 +0000
committerChris McDonough <chrism@agendaless.com>2009-10-29 23:07:48 +0000
commit1646770c4eee27f37e53dcb50f8a271d5c278abf (patch)
tree9021b72a986148b17b4eb74c66ccacbe00be2b55 /CHANGES.txt
parentd8c776df0ff6a194be696c95d921caf2084194c6 (diff)
downloadpyramid-1646770c4eee27f37e53dcb50f8a271d5c278abf.tar.gz
pyramid-1646770c4eee27f37e53dcb50f8a271d5c278abf.tar.bz2
pyramid-1646770c4eee27f37e53dcb50f8a271d5c278abf.zip
- The ``repoze.bfg.request.Request`` class, which is a subclass of
``webob.Request`` now defines its own ``__setattr__``, ``__getattr__`` and ``__delattr__`` methods, which override the default WebOb behavior. The default WebOb behavior stores attributes of the request in ``self.environ['webob.adhoc_attrs']``, and retrieves them from that dictionary during a ``__getattr__``. This behavior was undesirable for speed and "expectation" reasons. Now attributes of the ``request`` are stored in ``request.__dict__`` (as you otherwise might expect from an object that did not override these methods). - The router no longer calls ``repoze.bfg.traversal._traverse`` and does its work "inline" (speed).
Diffstat (limited to 'CHANGES.txt')
-rw-r--r--CHANGES.txt17
1 files changed, 17 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 622880d82..c47693284 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -10,6 +10,23 @@ Bug Fixes
combination of a predicate value with an ``=`` sign and one without
(e.g. ``a`` vs. ``a=123``).
+Internal
+--------
+
+- The ``repoze.bfg.request.Request`` class, which is a subclass of
+ ``webob.Request`` now defines its own ``__setattr__``,
+ ``__getattr__`` and ``__delattr__`` methods, which override the
+ default WebOb behavior. The default WebOb behavior stores
+ attributes of the request in ``self.environ['webob.adhoc_attrs']``,
+ and retrieves them from that dictionary during a ``__getattr__``.
+ This behavior was undesirable for speed and "expectation" reasons.
+ Now attributes of the ``request`` are stored in ``request.__dict__``
+ (as you otherwise might expect from an object that did not override
+ these methods).
+
+- The router no longer calls ``repoze.bfg.traversal._traverse`` and
+ does its work "inline" (speed).
+
1.1a8 (2009-10-27)
==================