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 021EA3858D37 for ; Sat, 16 Sep 2023 10:53:29 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 021EA3858D37 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 1qhSvX-00085o-U6; Sat, 16 Sep 2023 06:53:28 -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=otYkmryaxpJa6LeAvgFWQ4xVfez+wETYV0joKk/bdJY=; b=TfOTShmDjQVK GZmb+RhEOBszJpg9Sohc7XvD5cp0tHdbzG8olT6RFjOVKYK9Q6brRp60hNwqMZZbHSOjLWsSXIyd4 wH69WJuHXUNKXG3EzQ6SrciYuLv027CuEs9QWkfSWrCIwaY7uc2tMql8qgOlkFt037BvNCYJXrO0B H/oYsWKo8tUCplL22n376lTVbcInG7/vwLxTIZNL8JTbXP6hN4Lb1EHvkozy2DT78XlWD769AiBen vRvXdxYQPqhv8Er7fW0obDEuQExrGsaNbFrQzyHHtK3xL8bHwTwHu6Dfx3ZO8WWi2Bm3zVwY69EHi yUwBNOPLJ67xg7A1CFS0Tw==; Date: Sat, 16 Sep 2023 13:53:23 +0300 Message-Id: <83cyyiie3g.fsf@gnu.org> From: Eli Zaretskii To: Andrew Burgess Cc: gdb-patches@sourceware.org In-Reply-To: <4161e22ba4f066bfe15534abc7f7eab9358f6f5a.1694858967.git.aburgess@redhat.com> (message from Andrew Burgess via Gdb-patches on Sat, 16 Sep 2023 11:18:02 +0100) Subject: Re: [PATCH 1/9] gdb/doc: extend the description for Progspace.filename References: <4161e22ba4f066bfe15534abc7f7eab9358f6f5a.1694858967.git.aburgess@redhat.com> X-Spam-Status: No, score=0.6 required=5.0 tests=BAYES_00,DKIMWL_WL_HIGH,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,SPF_HELO_PASS,SPF_PASS,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: > Date: Sat, 16 Sep 2023 11:18:02 +0100 > From: Andrew Burgess via Gdb-patches > > Extend the description for Progspace.filename in the documentation to > mention what the returned string is actually the filename > for (e.g. that it is the filename passed to the 'symbol-file' or > 'file' command). > > Also document that this attribute will be None if no symbol file is > currently loaded. > --- > gdb/doc/python.texi | 7 ++++++- > gdb/python/py-progspace.c | 2 +- > 2 files changed, 7 insertions(+), 2 deletions(-) The python.texi part is approved, thanks. Reviewed-By: Eli Zaretskii