Hi All! I got a strange error which looks to me more like a problem of python itself than of sympy. Before i report it i first want to post it anyhow here, just in case somebody has seen it already (still i could not found it in the discussions..). I also could not find it among to python bugs, but I have no experience there.
It is an 'SystemError', which comes up when trying to match. I am wiĆ³rking on XP propfessional, here is the session; i found is yesterday on 0.5.7, also upgrading to 0.5.8 did not change anything; i leave also my typos in there..: ---------------------------------------------------------------------------------------------------------------------- Python 2.5 (r25:51908, Sep 19 2006, 09:52:17) [MSC v.1310 32 bit (Intel)] on win32 Type "copyright", "credits" or "license()" for more information. **************************************************************** Personal firewall software may warn about the connection IDLE makes to its subprocess using this computer's internal loopback interface. This connection is not visible on any external interface and no data is sent to or received from the Internet. **************************************************************** IDLE 1.2 >>> from sympy import * >>> sympy Traceback (most recent call last): File "<pyshell#1>", line 1, in <module> sympy NameError: name 'sympy' is not defined >>> x,y =symbols('xy') >>> p=Wild('p') >>> q=Wild('q') >>> w=WildFunction('w',nofargs='1') >>> KeyboardInterrupt >>> ex=x**3*sin(y) >>> ex.match(p**q*w) Traceback (most recent call last): File "<pyshell#7>", line 1, in <module> ex.match(p**q*w) SystemError: NULL result without error in PyObject_Call >>> help(SystemError) Help on class SystemError in module exceptions: class SystemError(StandardError) | Internal error in the Python interpreter. | | Please report this to the Python maintainer, along with the traceback, | the Python version, and the hardware/OS platform and version. | (..) --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "sympy" group. To post to this group, send email to sympy@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/sympy?hl=en -~----------~----~----~----~------~----~------~--~---