Getting the real path of a zope product

To get the path of a zope product, one can use the following snippet:

from Globals import package_home
product_path = package_home(product_globals)

Comments