diff options
| author | Chris McDonough <chrism@agendaless.com> | 2009-01-26 17:17:22 +0000 |
|---|---|---|
| committer | Chris McDonough <chrism@agendaless.com> | 2009-01-26 17:17:22 +0000 |
| commit | e6e0ea3f041e0273cdac86da663a4a273e1beebb (patch) | |
| tree | 66df434db2d1fe2bbe1e8439721789d4f8cf7297 /CHANGES.txt | |
| parent | 13437c304ddb8812244c8e2131888efa68297d73 (diff) | |
| download | pyramid-e6e0ea3f041e0273cdac86da663a4a273e1beebb.tar.gz pyramid-e6e0ea3f041e0273cdac86da663a4a273e1beebb.tar.bz2 pyramid-e6e0ea3f041e0273cdac86da663a4a273e1beebb.zip | |
- Added a ``traversal_path`` API to the traversal module; see the
"traversal" API chapter in the docs. This was a function previously
known as ``split_path`` that was not an API but people were using it
anyway. Unlike ``split_path`` it now returns a tuple instead of a
list (as its values are cached).
Diffstat (limited to 'CHANGES.txt')
| -rw-r--r-- | CHANGES.txt | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index 2f996a932..784e57b81 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -9,7 +9,13 @@ Features invoked due to lack of permission. See the "ZCML Hooks" chapter in the docs for more information. -- Added Routes ZCML directive attribute explanations. +- Added Routes ZCML directive attribute explanations in documentation. + +- Added a ``traversal_path`` API to the traversal module; see the + "traversal" API chapter in the docs. This was a function previously + known as ``split_path`` that was not an API but people were using it + anyway. Unlike ``split_path`` it now returns a tuple instead of a + list (as its values are cached). Behavior Changes ---------------- @@ -66,6 +72,9 @@ Implementation Changes - Use a homegrown Unauthorized error instead of ``webob.exc.Unauthorized`` (the latter is slow). +- the ``repoze.bfg.lru.lru_cached`` decorator now uses functools.wraps + in order to make documentation of LRU-cached functions possible. + - Various speed micro-tweaks. Bug Fixes |
