]> gitweb.michael.orlitzky.com - sage.d.git/blob - init.sage
eja: rename operator_inner_product -> operator_trace inner_product.
[sage.d.git] / init.sage
1 import os
2 import site
3
4 # Add '~/src/sage.d' and '~/src/sage.d.git' to our path.
5 site.addsitedir( os.path.expanduser('~/src/sage.d') )
6 site.addsitedir( os.path.expanduser('~/src/sage.d.git') )
7
8 from mjo.all import *
9
10 # Tell ipython we don't want its stupid "GUI" completion list.
11 %config TerminalInteractiveShell.display_completions = 'readlinelike'