ipython_config_sympy.py
9 lines
| 227 B
| text/x-python
|
PythonLexer
Brian Granger
|
r2073 | 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')' | ||||
]) | ||||