Hi,

I have this code

from sympy import *
 i = Idx('i')
 A = Indexed('A', i)
 A.free_symbols
 
 for a in A.free_symbols:
      print(type(a))

It seems that the behavior has changed. With a previous version of SymPy, 
all the types are Symbol which is what I expected. 

But in the master branch, the type of Idx in free_symbols are Idx and not 
Symbol.

Is it an issue ?

Thanks,
Loic

-- 
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 sympy+unsubscr...@googlegroups.com.
To post to this group, send email to sympy@googlegroups.com.
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/b515022e-009a-47a5-8c11-dc9dccffffec%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to