On Tue, Dec 15, 2009 at 12:48 AM, Julio Oliveira <[email protected]> wrote: > Hello all, > > Yet about the file symbol.py : > > At the end of the file, the package Atom is imported again from basic. > > Why is that? Is it necessary to reevaluate this package or just some "good > code practice" thing?
It's a workaround to handle circular imports, that also works in python 3.0. If you know some better way, let us know. Previously we injected the symbols from the other modules, but that stopped working in python 3.0. Ondrej -- You received this message because you are subscribed to the Google Groups "sympy" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/sympy?hl=en.
