On Mon, Aug 25, 2008 at 2:50 PM, Philippe Saade <[EMAIL PROTECTED]> wrote: >> > > Thanks for your help. > > I tried with your import. > It didn't work immediately because i had in fact used ^ instead of ** > in a computation with vectors. > > I changed it it it worked fine. > A tried more selective imports but it goes to far for me today. > > So i'll keep with from sage.all import *
Do no do selective imports... Sage absolutely will not work that way, since the order of module imports is critically important. You must import sage.all. This isn't documented and goes somewhat contrary to other Python libraries. It should I think be added to the FAQ at least, and the developer's guide. -- William --~--~---------~--~----~------------~-------~--~----~ 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/sage-support URLs: http://www.sagemath.org -~----------~----~----~----~------~----~------~--~---
