Martin v. Löwis skrev:
Sheldon schrieb:
Can anyone tell me what this error mean:
#0 0x4008376e in PyType_IsSubtype () from /usr/lib/libpython2.3.so.1.0
It's not an error. It is just a frame from the backtrace.
To understand the crash better, one would need to see more frames from
the backtrace. Ideally, one would run the program in a debugger to
analyse it further.
Regards,
Martin
I ran the program in GDB and it crashed giving the following backtrace:
#0 0x4008376e in PyType_IsSubtype () from /usr/lib/libpython2.3.so.1.0
#1 0x4047730c in ?? () from
/usr/lib/python2.3/site-packages/Numeric/_numpy.so
#2 0x000000f2 in ?? ()
#3 0x08d9dd34 in ?? ()
#4 0x4046c780 in PyArray_Return () from
/usr/lib/python2.3/site-packages/Numeric/_numpy.so
#5 0x08d9dd44 in ?? ()
#6 0x40100300 in PyBaseString_Type () from
/usr/lib/libpython2.3.so.1.0
#7 0x08105718 in ?? ()
#8 0x4007490d in PyObject_Init () from /usr/lib/libpython2.3.so.1.0
#9 0x08105ae0 in ?? ()
Can you make head or tail of this?
/Sheldon