From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from eggs.gnu.org (eggs.gnu.org [IPv6:2001:470:142:3::10]) by sourceware.org (Postfix) with ESMTPS id 42B613858D28 for ; Thu, 16 Mar 2023 19:54:23 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 42B613858D28 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=gnu.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=gnu.org Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pctg5-00016e-J3; Thu, 16 Mar 2023 15:54:21 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=References:Subject:In-Reply-To:To:From:Date: mime-version; bh=RnOuKNgmDZTC/Mb1M7VfyfdxEydcOsaRe94h/XbNzgk=; b=Y5b8ORxkW4ji SDusYEtKHyzJSdKJF03oDmCZgZO455299FCRW2xEmw5mm+r3Vv6hT/QrRdh/fcV80e9/dgDeOppWv 9kv4t8i73TzdCmiG/2fQGJUPCwMu4ZA340tzpK85pqgFx3G82atgaAOfwaFC2C0cB+bnhgGe23Auj Q13mlasoYq/suWnHftJgqYt7LHZm7IJATjVvSiSl0jFMZ3mfiul4NzTD8Ml+mcI6OgabAfgawht2X tmzkg/fq7+KHaprBd2/RXj8QswAjSlSqu/cJEnhIdxhntXZ2tc5oaXBH0k0/9Sq6d4DPRWsoxjoFq gCAUCBbALdIlQDfSuZc/Uw==; Received: from [87.69.77.57] (helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pctg5-0000x2-1u; Thu, 16 Mar 2023 15:54:21 -0400 Date: Thu, 16 Mar 2023 21:54:07 +0200 Message-Id: <83y1nwpj4w.fsf@gnu.org> From: Eli Zaretskii To: Andrew Burgess Cc: gdb-patches@sourceware.org In-Reply-To: <87lejwehew.fsf@redhat.com> (message from Andrew Burgess on Thu, 16 Mar 2023 17:26:47 +0000) Subject: Re: [PATCH 05/10] gdb/python: add some additional methods to gdb.PendingFrame References: <5bd7327ee61fd1634235cd4ffddbfbc91d392e03.1678460067.git.aburgess@redhat.com> <83y1o4y5nu.fsf@gnu.org> <87h6unfxge.fsf@redhat.com> <83lejzsd2x.fsf@gnu.org> <878rfwg481.fsf@redhat.com> <833564rbxa.fsf@gnu.org> <87lejwehew.fsf@redhat.com> X-Spam-Status: No, score=1.7 required=5.0 tests=BAYES_00,DKIMWL_WL_HIGH,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,RCVD_IN_BARRACUDACENTRAL,SPF_HELO_PASS,SPF_PASS,TXREP autolearn=no autolearn_force=no version=3.4.6 X-Spam-Level: * X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: > From: Andrew Burgess > Cc: gdb-patches@sourceware.org > Date: Thu, 16 Mar 2023 17:26:47 +0000 > > The updated NEW entry is: > > ** New methods added to the gdb.PendingFrame class. These methods > have the same behaviour as the corresponding methods on > gdb.Frame. The new methods are: > > - gdb.PendingFrame.name: Return the name for the frame's > function, or None. > - gdb.PendingFrame.is_valid: Return True if the pending frame > object is valid. > - gdb.PendingFrame.pc: Return the $pc register value for this > frame. > - gdb.PendingFrame.language: Return a string containing the > language for this frame, or None. > - gdb.PendingFrame.find_sal: Return a gdb.Symtab_and_line > object for the current location within the pending frame, or > None. > - gdb.PendingFrame.block: Return a gdb.Block for the current > pending frame, or None. > - gdb.PendingFrame.function: Return a gdb.Symbol for the > current pending frame, or None. > > The complete patch with this NEWS entry change is below for your > consideration. LGTM, thanks.