diff options
| author | Chris McDonough <chrism@agendaless.com> | 2009-10-29 23:07:48 +0000 |
|---|---|---|
| committer | Chris McDonough <chrism@agendaless.com> | 2009-10-29 23:07:48 +0000 |
| commit | 1646770c4eee27f37e53dcb50f8a271d5c278abf (patch) | |
| tree | 9021b72a986148b17b4eb74c66ccacbe00be2b55 /CHANGES.txt | |
| parent | d8c776df0ff6a194be696c95d921caf2084194c6 (diff) | |
| download | pyramid-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.txt | 17 |
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) ================== |
