##// END OF EJS Templates
Beginning work on config system.
Beginning work on config system.

File last commit:

r2073:86e3ac62
r2073:86e3ac62
Show More
ipython_config_sympy.py
9 lines | 227 B | text/x-python | PythonLexer
from ipython_config import *
EXECUTE.extend([
'from __future__ import division'
'from sympy import *'
'x, y, z = symbols('xyz')'
'k, m, n = symbols('kmn', integer=True)'
'f, g, h = map(Function, 'fgh')'
])