diff options
| -rw-r--r-- | CHANGES.txt | 2 | ||||
| -rw-r--r-- | repoze/bfg/zcml.py | 4 |
2 files changed, 2 insertions, 4 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index e9877ae35..4adab96d4 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -64,6 +64,8 @@ Internals - The ``repoze.bfg.view.MultiView`` class has been moved to ``repoze.bfg.configuration.MultiView``. +- The ``repoze.bfg.zcml.Uncacheable`` class has been removed. + Backwards Incompatibilites -------------------------- diff --git a/repoze/bfg/zcml.py b/repoze/bfg/zcml.py index 7df36f460..3c312a66e 100644 --- a/repoze/bfg/zcml.py +++ b/repoze/bfg/zcml.py @@ -502,10 +502,6 @@ def scan(_context, package, martian=martian): config.scan(package, _info=_context.info, martian=martian) _context.action(discriminator=None, callable=register) -class Uncacheable(object): - """ Include in discriminators of actions which are not cacheable; - this class only exists for backwards compatibility (<0.8.1)""" - def zcml_configure(name, package): """ Given a ZCML filename as ``name`` and a Python package as ``package`` which the filename should be relative to, load the |
