summaryrefslogtreecommitdiff
path: root/CHANGES.txt
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2009-01-22 08:03:37 +0000
committerChris McDonough <chrism@agendaless.com>2009-01-22 08:03:37 +0000
commit2bb9b76c01019f3c82776429c07d34bd1c439f2b (patch)
treefc670cf3479cd1ec47e875b4b707c28a3c15f036 /CHANGES.txt
parent9fb1153a2ca9b912f79ac963ef955bcd6058f491 (diff)
downloadpyramid-2bb9b76c01019f3c82776429c07d34bd1c439f2b.tar.gz
pyramid-2bb9b76c01019f3c82776429c07d34bd1c439f2b.tar.bz2
pyramid-2bb9b76c01019f3c82776429c07d34bd1c439f2b.zip
If no subscribers are registered via ``registerHandler`` or
``registerSubscriptionAdapter``, ``notify`` is a noop for speed.
Diffstat (limited to 'CHANGES.txt')
-rw-r--r--CHANGES.txt10
1 files changed, 7 insertions, 3 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 8c6be8eb8..d2c31903f 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -14,10 +14,14 @@ Implementation Changes
- Tease out an extra 4% performance boost by changing the Router;
instead of using imported ZCA APIs, use the same APIs directly
- against the registry that is an attribute of the Router. As a
- result, the registry used by BFG is now a subclass of
+ against the registry that is an attribute of the Router.
+
+- The registry used by BFG is now a subclass of
``zope.component.registry.Components`` (defined as
- ``repoze.bfg.registry.Registry``); it has a ``notify`` method.
+ ``repoze.bfg.registry.Registry``); it has a ``notify`` method, a
+ ``registerSubscriptionAdapter`` and a ``registerHandler`` method.
+ If no subscribers are registered via ``registerHandler`` or
+ ``registerSubscriptionAdapter``, ``notify`` is a noop for speed.
0.6.3 (2009-01-19)
==================