Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

You can avid having to prefix functions with sage.all. all the time by using from sage.all import *. That should put all the standard sage bindings in your namespace, so that you can use Integer etc. as usual. This is essentially what the sage shell does to make the default sage bindings available.

You can avid avoid having to prefix functions with sage.all. all the time by using from sage.all import *. That should put all the standard sage bindings in your namespace, so that you can use Integer etc. as usual. This is essentially what the sage shell does to make the default sage bindings available.