On Thu, 28 Aug 2008 08:35:07 -0700, jimgardener wrote:

> moduleA.py
> --------------------
> import moduleB
>
> […]
> 
> moduleB.py
> ------------------
> import moduleA
> 
> […]

Don't do that.  Circular imports are a code smell.  If two modules are 
coupled that tight it's usually a sign that you want just one module or 
factoring out something into a third module that is imported by both old 
modules.

Ciao,
        Marc 'BlackJack' Rintsch
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to