diff options
| author | Chris McDonough <chrism@plope.com> | 2011-04-27 16:20:47 -0400 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2011-04-27 16:20:47 -0400 |
| commit | bca03fcb8df46485d722156da4f2f7685f234ab8 (patch) | |
| tree | 72b2cd319b6004f76d9268fbe4990bce513bea53 /CHANGES.txt | |
| parent | 7e655f50decd44ae9118700e5d00d668bab6788c (diff) | |
| download | pyramid-bca03fcb8df46485d722156da4f2f7685f234ab8.tar.gz pyramid-bca03fcb8df46485d722156da4f2f7685f234ab8.tar.bz2 pyramid-bca03fcb8df46485d722156da4f2f7685f234ab8.zip | |
- 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.
Diffstat (limited to 'CHANGES.txt')
| -rw-r--r-- | CHANGES.txt | 10 |
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 ------------ |
