[Zope] How to break up an external method over multiply source files

2005-04-19 Thread Lucas Hofman
I have an external method a.py (in $INSTANCE_HOME/Extensions) that becomes to big to be in one python file. I have put some functions in b.py (also in $INSTANCE_HOME/Extensions) and want to use them from a.py. However 'import b' in a.py does not work. How to get this to work? Lucas

Re: [Zope] How to break up an external method over multiply source files

2005-04-19 Thread Andreas Jung
--On Dienstag, 19. April 2005 11:25 Uhr +0200 Lucas Hofman [EMAIL PROTECTED] wrote: I have an external method a.py (in $INSTANCE_HOME/Extensions) that becomes to big to be in one python file. I have put some functions in b.py (also in $INSTANCE_HOME/Extensions) and want to use them from a.py.