Comment #1 on issue 1259 by ondrej.certik: copy pickle tests fail on  
python2.4
http://code.google.com/p/sympy/issues/detail?id=1259

It happens in this part of the test_pickling.py:

#================== functions ===================
# XXX: These tests are not complete.
from sympy import functions

def test_functions():
     x = Symbol("x")
     for name, cls in vars(functions).iteritems():
         if hasattr(cls, "__class__") and not cls.__class__ is  
types.ModuleType and
not name[0]=="_":
             check(cls)
             try:
                 c = cls(x)
             except:
                 continue
             check(c)


Imho it should be rewritten to be explicit. The problem is that for some  
reason, a
"function" (I think just a Python function statement) is passed to check(),  
and then
it fails. So we will just test sin/cos and other things explicitly and  
things should
just work. I am working on that.

--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

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

Reply via email to