Commit 3cb2b752 authored by Laurence Rowe's avatar Laurence Rowe

Add aq_explicit to IAcquisitionWrapper.

parent 755b136a
...@@ -4,6 +4,7 @@ Changelog ...@@ -4,6 +4,7 @@ Changelog
2.13.6 (unreleased) 2.13.6 (unreleased)
------------------- -------------------
- Add ``aq_explicit`` to ``IAcquisitionWrapper``.
2.13.5 (2010-09-29) 2.13.5 (2010-09-29)
------------------- -------------------
......
...@@ -118,7 +118,7 @@ selected objects that smell like private objects. ...@@ -118,7 +118,7 @@ selected objects that smell like private objects.
Sometimes, you want to dynamically make an implicitly acquiring object Sometimes, you want to dynamically make an implicitly acquiring object
acquire explicitly. You can do this by getting the object's acquire explicitly. You can do this by getting the object's
aq_explicit attribute. This attribute provides the object with an aq_explicit attribute. This attribute provides the object with an
explicit wrapper that places the original implicit wrapper. explicit wrapper that replaces the original implicit wrapper.
Filtered Acquisition Filtered Acquisition
==================== ====================
......
...@@ -62,3 +62,7 @@ class IAcquisitionWrapper(Interface): ...@@ -62,3 +62,7 @@ class IAcquisitionWrapper(Interface):
aq_chain = Attribute( aq_chain = Attribute(
"""Get a list of objects in the acquisition environment.""" """Get a list of objects in the acquisition environment."""
) )
aq_explicit = Attribute(
"""Get the object with an explicit acquisition wrapper."""
)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment