]> gitweb.michael.orlitzky.com - sage.d.git/blob - mjo/all.py
Clean up some imports and fix another test failure.
[sage.d.git] / mjo / all.py
1 """
2 Import all of the other code, so that the user doesn't have to do it
3 in his script. Instead, he can just `from mjo.all import *`.
4 """
5
6 # Sage doesn't load ~/.sage/init.sage during testing (sage -t), so we
7 # have to explicitly mangle our sitedir here so that "mjo.foo"
8 # resolves.
9 from os.path import abspath
10 from site import addsitedir
11 addsitedir(abspath('../'))
12
13 from mjo.cone.all import *
14 from mjo.interpolation import *
15 from mjo.misc import *
16 from mjo.orthogonal_polynomials import *
17 from mjo.plot import *
18 from mjo.symbol_sequence import *
19 from mjo.symbolic import *