I had some scripts in Python to help me debugging with GDB that used the function gdb.parse_and_eval
(still documented) to get the inferior values from the arguments passed to a scripted command, and now the module doesn't seem to have any trace of that function. Doing python import gdb; print dir(gdb)
from GDB clearly shows that this function is missing.
I wrote the scripts some time ago for the GDB 6.8 in the archer branch, and now I cannot find any information about if it's been deprecated or what happened in GDB 7.
Any information about it?
Thanks!