[Zope] manage_clone - Pleeeease help !!!

Shane Hathaway shane@digicool.com
Tue, 20 Mar 2001 11:34:41 -0500


Casey Duncan wrote:
> Acquisition might get in your way here, so to make sure it doesn't you
> might want to use Folder.aq_explicit[variable] instead.

Actually that's not necessary.  The only reason you can use
"Folder[itemname]" is because ObjectManager provides the __getitem__
interface.  __getitem__ only retrieves from the folder itself.  (Note
that __getitem__ and __getattr__ are distinct.)

Shane