Hello all,
First of all I'm a newbie and want to start contributing to sympy. While using init_session on live shell I'm getting:
Python console for SymPy 0.7.6 (Python 2.7.5-32-bit) (ground types:
python)
These commands were executed:
>>> from __future__ import division
>>> from sympy import *
>>> 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)
>>> init_printing()
Documentation can be found at
http://www.sympy.org
>>>
Traceback (most recent call last):
File "<string>", line 1, in <module>
File
"/base/data/home/apps/s~sympy-live-hrd/45.380685391411058699/sympy/sympy/interactive/session.py",
line 491, in init_session
sys.exit('Exiting ...')
SystemExit: Exiting ...
I can't understand whether Traceback is a part of command executed, in case it is, want to know about it.