I don't think so, but there was some discussion on this at https://github.com/ipython/ipython/pull/2301. That pull request implemented the basic API that we will want to use in IPython. There is also a guide to AST at http://greentreesnakes.readthedocs.org/en/latest/.
All the relevant code is in sympy/interactive/session.py. The more complicated one is the one that defines undefined variables. There are lots of subtleties involved with that one. Aaron Meurer On Sun, Oct 6, 2013 at 10:49 AM, Sergey Kirpichev <[email protected]> wrote: > On Wed, Sep 4, 2013 at 7:53 PM, Aaron Meurer <[email protected]> wrote: >> I think it would be better to implement the new IPython transformers. >> Then, people could add a very short IPython profile and start with >> something like ipython --profile sympy. This already has to use IPython, it >> might as well use the IPython configuration system. >> >> I can point you in the right direction if you want to implement this. > > Yes, that's a good idea anyway. Is there any issue? > > (Sorry for late answer.) > >> On Sep 4, 2013, at 3:34 AM, Sergey Kirpichev <[email protected]> wrote: >> On Wednesday, September 4, 2013 3:51:36 AM UTC+4, Aaron Meurer wrote: >>> >>> Of course, you're free to add "alias isympy="isympy -I" to your bash >>> profile. >>> >> May be it's a good idea to add a config file for isympy (sympy-bot-like)? > > -- > You received this message because you are subscribed to the Google Groups > "sympy" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at http://groups.google.com/group/sympy. > For more options, visit https://groups.google.com/groups/opt_out. -- You received this message because you are subscribed to the Google Groups "sympy" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/sympy. For more options, visit https://groups.google.com/groups/opt_out.
