[Zope3-dev] __init__.py interfaces.py guidelines?

Jean-Marc Orliaguet jmo at ita.chalmers.se
Mon Nov 21 12:29:31 EST 2005


There is another place where there seems to be two different patterns too:

sometimes we have:

   import zope.schema
   name = zope.schema.TextLine(...)

and sometimes:

   from zope.schema import TextLine
   name = TextLine(...)

any reason to use one or the other (speed, verbosity, avoiding circular 
imports, ...) ?

/JM


More information about the Zope3-dev mailing list