From c7c711b8ea45b18096ee25123a30a37965d220c9 2011-07-18 22:45:10
From: Brian E. Granger <ellisonbg@gmail.com>
Date: 2011-07-18 22:45:10
Subject: [PATCH] Updating sympy profile to match the exec_lines of isympy.

---

diff --git a/IPython/config/profile/sympy/ipython_config.py b/IPython/config/profile/sympy/ipython_config.py
index c5281b1..b31dae2 100644
--- a/IPython/config/profile/sympy/ipython_config.py
+++ b/IPython/config/profile/sympy/ipython_config.py
@@ -8,9 +8,9 @@ load_subconfig('ipython_config.py', profile='default')
 lines = """
 from __future__ import division
 from sympy import *
-x, y, z = symbols('x,y,z')
-k, m, n = symbols('k,m,n', integer=True)
-f, g, h = map(Function, 'fgh')
+x, y, z, t = symbols('x y z t')
+k, m, n = symbols('k m n', integer=True)
+f, g, h = symbols('f g h', cls=Function)
 """
 
 # You have to make sure that attributes that are containers already