[Zope] Help! How do I get my namespace in Python??

Andrew Wilcox circle@gwi.net
Tue, 14 Dec 1999 15:35:03 -0500


I have a Python method in a product, which in turn calls a DTML Method.

    def test(self, REQUEST=None):
        return self.myDTMLMethod(REQUEST)

But the DTML Method doesn't have access to the namespace!

I see I can pass in a mapping to the DTML Method, but how do I get the
namespace in Python?

Thanks!

Andrew