I am working on the issue #3548<http://code.google.com/p/sympy/issues/detail?id=3548>. Here's the PR: https://github.com/sympy/sympy/pull/1746
Problem: A travis doctest is failing. Here: https://travis-ci.org/sympy/sympy/jobs/4682832/#L2987 Now, here's what is happening: I open up the python interpreter. After setting the path so that my working directory will be imported, I do this: >>> from sympy import * >>> O sympy.series.order.Order Clearly, O is present in the namespace. Also, I tried doing this as well: >>> somedict = {} >>> exec "from sympy import *" in somedict >>> somedict['O'] sympy.series.order.Order As you can see, the key 'O' is present in somedict. But, this same code is being executed in sympy.abc but, using pdb, I discovered that the key 'O' was not present in the dictionary. So, if someone can help me out here, that't be a great help. Thanks -- Prasoon Shukla -- 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?hl=en. For more options, visit https://groups.google.com/groups/opt_out.
