##// END OF EJS Templates
Don't warn the user if the default config file is missing....
Don't warn the user if the default config file is missing. We still warn if a custom config file is missing though.

File last commit:

r2252:3ddcb2dc
r2257:4b2d3098
Show More
ipython_config_sympy.py
9 lines | 237 B | text/x-python | PythonLexer
/ IPython / config / profile / ipython_config_sympy.py
Brian Granger
Beginning work on config system.
r2073 from ipython_config import *
Brian Granger
Work on startup related things....
r2252 Global.exec_lines.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')"
Brian Granger
Beginning work on config system.
r2073 ])