I am developing a ios application that has sympy embedded in it. I have the basics working but I have noticed that when I send a command over to the sympy engine numbers are not converted to sympy objects. Normally when I use sympy I use it with an interactive shell such as isympy. When I type in a command such as 1+2 and check the type coming back I get <class 'sympy.core.numbers.Integer'> ; however, in embedded sympy I get a python object <class 'int'> . I know I can use sympify to convert to symby objects but this does not work for all input. Isympy handles conversion to sympy objects and applies sympify when needed. Is there a way to get this logic in an embedded system (i.e. load isympy or selective functions). Thanks for your help
-- 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 https://groups.google.com/group/sympy. To view this discussion on the web visit https://groups.google.com/d/msgid/sympy/b9896531-1b7e-4a49-8f26-116cdec68dd2%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
