[Zope] Zope needs this (and Dynamo has it)
'Martijn Faassen'
faassen@vet.uu.nl
Mon, 13 Mar 2000 13:20:05 +0100
Glyph Lefkowitz wrote:
>
> Okay; off-topic or not, this looks like a fun thread, and I couldn't help
> but put my 0.02 in =)
I'm off-topicing on. :)
> You can even be selective (and
> this can really be fun) with expressions like:
>
> '-- eggs3.py
> | import spam
> | FOO=spam.FOO
> | Spam=spam.Spam
> `--
> if you're heavily using FOO, but not BAR or BAZ in eggs ...
Python has a syntax for that:
import spam
from spam import FOO
But I suppose you knew that already? For any newbies that may be reading. :)
Regards,
Martijn