This is the mail archive of the gdb@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

RE: Python API iterate through the arguments of a frame


>Thank you, that would be very useful.  Is there a quick way to see the names of all >available API functions, just in case there are more undocumented ones, other than looking >into the  gdb/python/ directory and infer from the Python bindings (e.g., py-block.c)?

Standard Python approach: help(xyz) gives you the documentation for xyz.  If xyz is a
class or module, it does that recursively.  So:
  (gdb)  python help(gdb)
will give you all the documentation for everything inside the gdb module.

	paul


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]