https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=225584
--- Comment #32 from [email protected] --- (In reply to Konstantin Belousov from comment #31) Its not there ? (gdb) frame 7 #7 0x0000000800b55b5b in call_function (pp_stack=0x7fffde3f3148, oparg=0) at Python/ceval.c:4341 4341 C_TRACE(x, (*meth)(self,NULL)); (gdb) list 4336 PCALL(PCALL_CFUNCTION); 4337 if (flags & (METH_NOARGS | METH_O)) { 4338 PyCFunction meth = PyCFunction_GET_FUNCTION(func); 4339 PyObject *self = PyCFunction_GET_SELF(func); 4340 if (flags & METH_NOARGS && na == 0) { 4341 C_TRACE(x, (*meth)(self,NULL)); 4342 } 4343 else if (flags & METH_O && na == 1) { 4344 PyObject *arg = EXT_POP(*pp_stack); 4345 C_TRACE(x, (*meth)(self,arg)); (gdb) print local_fp No symbol "local_fp" in current context. (gdb) print *local_fp No symbol "local_fp" in current context. (gdb) -- You are receiving this mail because: You are the assignee for the bug. _______________________________________________ [email protected] mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-bugs To unsubscribe, send any mail to "[email protected]"
