##// END OF EJS Templates
Updating sympy profile to match the exec_lines of isympy.
Brian E. Granger -
Show More
@@ -8,9 +8,9 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('x,y,z')
11 x, y, z, t = symbols('x y z t')
12 k, m, n = symbols('k,m,n', integer=True)
12 k, m, n = symbols('k m n', integer=True)
13 f, g, h = map(Function, 'fgh')
13 f, g, h = symbols('f g h', cls=Function)
14 """
14 """
15
15
16 # You have to make sure that attributes that are containers already
16 # You have to make sure that attributes that are containers already
General Comments 0
You need to be logged in to leave comments. Login now