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 EB17B3858D38 for ; Fri, 14 Oct 2022 17:45:55 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org EB17B3858D38 Received: from fencepost.gnu.org ([2001:470:142:3::e]:54530) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1ojOkt-0000yE-Jy; Fri, 14 Oct 2022 13:45:55 -0400 Received: from [87.69.77.57] (port=2678 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 1ojOkm-0005uG-8z; Fri, 14 Oct 2022 13:45:49 -0400 Date: Fri, 14 Oct 2022 20:45:35 +0300 Message-Id: <83y1ti70zk.fsf@gnu.org> From: Eli Zaretskii To: Tom Tromey Cc: gdb-patches@sourceware.org In-Reply-To: <20221014163950.920834-1-tromey@adacore.com> (message from Tom Tromey via Gdb-patches on Fri, 14 Oct 2022 10:39:50 -0600) Subject: Re: [PATCH] Add missing TYPE_CODE_* constants to Python References: <20221014163950.920834-1-tromey@adacore.com> X-Spam-Status: No, score=1.9 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 X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Oct 2022 17:45:57 -0000 > Date: Fri, 14 Oct 2022 10:39:50 -0600 > From: Tom Tromey via Gdb-patches > Cc: Tom Tromey > > A user noticed that TYPE_CODE_FIXED_POINT was not exported by the gdb > Python layer. This patch fixes the bug, and prevents future > occurences of this type of bug. > --- > gdb/doc/guile.texi | 13 +++++ > gdb/doc/python.texi | 13 +++++ > gdb/gdbtypes.h | 114 +------------------------------------ > gdb/guile/scm-type.c | 35 ++---------- > gdb/python/py-type.c | 37 +++--------- > gdb/type-codes.def | 131 +++++++++++++++++++++++++++++++++++++++++++ > 6 files changed, 173 insertions(+), 170 deletions(-) > create mode 100644 gdb/type-codes.def OK for the documentation parts, thanks.