##// END OF EJS Templates
Fix sympy profile to work with sympy 0.7....
Jens Hedegaard Nielsen -
Show More
@@ -8,8 +8,8 b" load_subconfig('ipython_config.py', profile='default')"
8 lines = """
8 lines = """
9 from __future__ import division
9 from __future__ import division
10 from sympy import *
10 from sympy import *
11 x, y, z = symbols('xyz')
11 x, y, z = symbols('x,y,z')
12 k, m, n = symbols('kmn', integer=True)
12 k, m, n = symbols('k,m,n', integer=True)
13 f, g, h = map(Function, 'fgh')
13 f, g, h = map(Function, 'fgh')
14 """
14 """
15
15
General Comments 0
You need to be logged in to leave comments. Login now