diff options
| author | Chris McDonough <chrism@agendaless.com> | 2009-01-20 19:59:23 +0000 |
|---|---|---|
| committer | Chris McDonough <chrism@agendaless.com> | 2009-01-20 19:59:23 +0000 |
| commit | 154741e2a6e6478fbb74d55d1a9e163d2d722709 (patch) | |
| tree | ac1630938e304f809e5f4ca799a393b694509e74 /CHANGES.txt | |
| parent | eca67ac2005bcac3b8d14d051e5e800ea36f42a8 (diff) | |
| download | pyramid-154741e2a6e6478fbb74d55d1a9e163d2d722709.tar.gz pyramid-154741e2a6e6478fbb74d55d1a9e163d2d722709.tar.bz2 pyramid-154741e2a6e6478fbb74d55d1a9e163d2d722709.zip | |
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 ed918d8f4..229264d7f 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,6 +1,16 @@ Next release ============ +Implementation Changes +---------------------- + +- Use "precooked" Request subclasses + (e.g. ``repoze.bfg.request.GETRequest``) that correspond to HTTP + request methods within ``router.py`` when constructing a request + object rather than using ``alsoProvides`` to attach the proper + interface to an unsubclassed ``webob.Request``. This pattern is + purely an optimization (e.g. preventing calls to ``alsoProvides`` + means the difference between 590 r/s and 690 r/s on a MacBook 2GHz). 0.6.3 (2009-01-19) ================== |
