[Zope] Getting a methods parent (in a product)

Jens Vagelpohl jens at dataflake.org
Fri Jul 22 13:52:16 EDT 2005


On 22 Jul 2005, at 18:48, Jan-Ole Esleben wrote:

> Hi!
>
> How can I get a Product instance's _actual_ parent when one of its
> methods is called? (In other ways: how can I find out, from an
> instance, where that instance is located without falling prey to
> acquisition in Zope 2?)

from Acquisition import aq_inner, aq_parent

parent = aq_parent(aq_inner(self))

This will return the true container the instance is set in, not just  
the acquisition parent.

jens



More information about the Zope mailing list