On Thu, May 12, 2011 at 1:59 PM, Aaron Meurer <[email protected]> wrote:
[...]
> prerequisites for SymPy (like Python itself if you are on Windows).
> If there were a nice GUI that was friendly, like easy access to docs,
> automatic sympification (so no one gets caught by 1/2 problems),

Just curious about this part --- do you have some idea how to do it?
For example, Sage uses a preparser to IPython, so if you write:

sage: 1/2
1/2

you get something like ours Integer(1)/Integer(2), i.e. in isympy:

>>> 1/2
0.5
>>> Integer(1)/Integer(2)
1/2

so is your idea to have this in isympy, or on what level should this
preparsing be done?

Ondrej

-- 
You received this message because you are subscribed to the Google Groups 
"sympy" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/sympy?hl=en.

Reply via email to