From: Michael Orlitzky Date: Fri, 26 Oct 2012 15:13:16 +0000 (-0400) Subject: Replace the load() call in interpolation.py with an import, which works in the daytime. X-Git-Url: http://gitweb.michael.orlitzky.com/?a=commitdiff_plain;h=c30ef331a9a1074edf55b38c021e8d09f23d3350;p=sage.d.git Replace the load() call in interpolation.py with an import, which works in the daytime. --- diff --git a/mjo/interpolation.py b/mjo/interpolation.py index 747c680..4cb5874 100644 --- a/mjo/interpolation.py +++ b/mjo/interpolation.py @@ -1,5 +1,5 @@ from sage.all import * -load('~/.sage/init.sage') +from misc import product def lagrange_coefficient(k, x, xs): """