From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 10572 invoked by alias); 22 Feb 2012 01:52:18 -0000 Received: (qmail 10555 invoked by uid 22791); 22 Feb 2012 01:52:17 -0000 X-SWARE-Spam-Status: No, hits=-1.8 required=5.0 tests=AWL,BAYES_00,T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from ausc60ps301.us.dell.com (HELO ausc60ps301.us.dell.com) (143.166.148.206) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 22 Feb 2012 01:52:04 +0000 X-Loopcount0: from 10.175.216.249 From: To: , CC: Date: Wed, 22 Feb 2012 01:52:00 -0000 Subject: RE: Python API iterate through the arguments of a frame Message-ID: <09787EF419216C41A903FD14EE5506DD0312CD1450@AUSX7MCPC103.AMER.DELL.COM> References: <3EDCC9ED-AD12-42B4-854E-3404A8EBCF70@epfl.ch> <87obsst5o4.fsf@fleche.redhat.com> In-Reply-To: Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-IsSubscribed: yes Mailing-List: contact gdb-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sourceware.org X-SW-Source: 2012-02/txt/msg00059.txt.bz2 >Thank you, that would be very useful. Is there a quick way to see the nam= es of all >available API functions, just in case there are more undocumente= d 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. I= f 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