From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 16215 invoked by alias); 10 Apr 2012 17:16:47 -0000 Received: (qmail 16202 invoked by uid 22791); 10 Apr 2012 17:16:44 -0000 X-SWARE-Spam-Status: No, hits=-5.3 required=5.0 tests=AWL,BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,KHOP_RCVD_TRUST,KHOP_THREADED,RCVD_IN_DNSWL_LOW,RCVD_IN_HOSTKARMA_YE,T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from mail-vb0-f41.google.com (HELO mail-vb0-f41.google.com) (209.85.212.41) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 10 Apr 2012 17:16:31 +0000 Received: by vbbey12 with SMTP id ey12so34032vbb.0 for ; Tue, 10 Apr 2012 10:16:31 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding:x-system-of-record :x-gm-message-state; bh=/RQLofO1n5Qn1cMH2LiXCoTqTb5U/hHHNAu0yS+VRKY=; b=BHFvkfvS3VKnAw6SNEg4B4TRbfCV+pXBecBvJ8DNn+wwuJqEWVNnP42j2duUXSC7TA Vzru4MZt0o0CGLaEK0oZTAgdv5EZY9GZtkgSUDgUNJ4pAe72Nce05P0v2UXU/W2Qpeiv ZIyIPDa9tk9eca589C18nMBh2RzH8xGgv7flBKjQqkg8+w2Ru/p0VnGt0knHP2xddVfh 1Ih6w+BlXkj/sCTZsknemU/3kTgTlGGIEsPOV3INCz6g6TP3JQpZDCdZwGWCBRcX+eiX iuRElYpRCiSdmZDKbquvxZdqHIL++1GTDtnTn/5jer+vEGzlOLNbvPEPLfvFcrFv+cyl HoeA== Received: by 10.220.188.12 with SMTP id cy12mr6079961vcb.69.1334078191122; Tue, 10 Apr 2012 10:16:31 -0700 (PDT) MIME-Version: 1.0 Received: by 10.220.188.12 with SMTP id cy12mr6079956vcb.69.1334078190993; Tue, 10 Apr 2012 10:16:30 -0700 (PDT) Received: by 10.220.73.14 with HTTP; Tue, 10 Apr 2012 10:16:30 -0700 (PDT) In-Reply-To: References: <837gyu17am.fsf@gnu.org> <83haxet7vh.fsf@gnu.org> <83sjgpjdnm.fsf@gnu.org> Date: Tue, 10 Apr 2012 17:21:00 -0000 Message-ID: Subject: Re: [patch 2/2] New 'explore' command Python implementation (with docs) From: Doug Evans To: Siva Chandra Cc: gdb-patches@sourceware.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-System-Of-Record: true X-Gm-Message-State: ALoCoQndR97jDC97xTm0UCfwPsyFo/15kJPy6d2FpB+c+kpG+08IQB9j8WNrumdu3e6wEjbErnW6D7ZUAxt7k2nrO5Sz+ei7DIo7bBjJnDQqvbkROcqWlsdUPV4RaUWVjsaDJKnpkslfYghHrYptG7zx2r+DiXRgJQ== X-IsSubscribed: yes Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2012-04/txt/msg00186.txt.bz2 Hi. Thanks for persevering! LGTM I think all the doc issues are resolved, right Eli? On Mon, Apr 9, 2012 at 11:37 AM, Siva Chandra wrot= e: > > > Is there sufficient interest in this? > > On Mon, Apr 2, 2012 at 11:28 AM, Siva Chandra wr= ote: >> Thanks Eli, I have fixed it. The complete patch is attached. >> >> Code ChangeLog: >> >> 2012-04-02 =A0Siva Chandra Reddy =A0 >> >> =A0 =A0 =A0 =A0New command 'explore' which helps explore values and type= s in >> =A0 =A0 =A0 =A0scope. >> =A0 =A0 =A0 =A0* NEWS: Add an entry about the new 'explore' command. >> =A0 =A0 =A0 =A0* data-directory/Makefile.in: Add gdb/command/explore.py >> =A0 =A0 =A0 =A0* python/lib/gdb/command/explore.py: Implemention of the = 'explore' >> =A0 =A0 =A0 =A0command using the GDB Python API. >> >> Docs ChangeLog: >> >> 2012-04-02 =A0Siva Chandra Reddy =A0 >> >> =A0 =A0 =A0 =A0* gdb.texinfo (Examining Data): Document the 'explore' co= mmand. >> >> Testsuite ChangeLog: >> >> 2012-04-02 =A0Siva Chandra Reddy =A0 >> >> =A0 =A0 =A0 =A0* gdb.python/Makefile.in: Add py-explore to EXECUTABLES. >> =A0 =A0 =A0 =A0* gdb.python/py-explore.c: C program used for testing the= new >> =A0 =A0 =A0 =A0'explore' command on C constructs. >> =A0 =A0 =A0 =A0* gdb.python/py-explore.cc: C++ program used for testing = the new >> =A0 =A0 =A0 =A0'explore' command on C++ constructs. >> =A0 =A0 =A0 =A0* gdb-python/py-explore.exp: Tests for the new 'explore' >> =A0 =A0 =A0 =A0command on C constructs. >> =A0 =A0 =A0 =A0* gdb-python/py-explore-cc.exp: Tests for the new 'explor= e' >> =A0 =A0 =A0 =A0command on C++ constructs. >> >> Thanks, >> Siva Chandra