From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id p7XMK1pI2WK7rxcAWB0awg (envelope-from ) for ; Thu, 21 Jul 2022 08:36:42 -0400 Received: by simark.ca (Postfix, from userid 112) id A386A1E5EA; Thu, 21 Jul 2022 08:36:42 -0400 (EDT) X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on simark.ca X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,MAILING_LIST_MULTI, RDNS_DYNAMIC autolearn=ham autolearn_force=no version=3.4.6 Received: from sourceware.org (ip-8-43-85-97.sourceware.org [8.43.85.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPS id AA13A1E13B for ; Thu, 21 Jul 2022 08:36:41 -0400 (EDT) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 47254385BACA for ; Thu, 21 Jul 2022 12:36:40 +0000 (GMT) Received: from gnu.wildebeest.org (gnu.wildebeest.org [45.83.234.184]) by sourceware.org (Postfix) with ESMTPS id C19DE3857011 for ; Thu, 21 Jul 2022 12:36:28 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org C19DE3857011 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=klomp.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=klomp.org Received: from reform (213-10-231-91.fixed.kpn.net [213.10.231.91]) (using TLSv1.2 with cipher ADH-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by gnu.wildebeest.org (Postfix) with ESMTPSA id 87681300047C; Thu, 21 Jul 2022 14:36:24 +0200 (CEST) Received: by reform (Postfix, from userid 1000) id 365402E81645; Thu, 21 Jul 2022 14:36:23 +0200 (CEST) Date: Thu, 21 Jul 2022 14:36:23 +0200 From: Mark Wielaard To: Tom de Vries Subject: Re: [PATCH][gdb] Fix python selftest with python 3.11 Message-ID: References: <20220721111316.GA23728@delia.home> <20220721114239.GB7014@gnu.wildebeest.org> <716feba4-7ca1-dc46-12b3-e7a895956d8b@suse.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <716feba4-7ca1-dc46-12b3-e7a895956d8b@suse.de> 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: , Cc: gdb-patches@sourceware.org Errors-To: gdb-patches-bounces+public-inbox=simark.ca@sourceware.org Sender: "Gdb-patches" Hi Tom, On Thu, Jul 21, 2022 at 02:06:09PM +0200, Tom de Vries wrote: > > It seems the line number is really irrelevant here for where exactly > > the KeyboardInterrupt took place. So the patch looks good to me. > > > > Thanks for the review. > > > Note that there is a gdb-try-rawhide-x86_64 builder, so you can also > > test by pushing this to a git users/vries/try-xxx branch. > > I've tried that, and it went fine, so I've pushed this (after fixing a > trivial formatting issue, not reposting). I am afraid the trivial formatting fix accidentially introduced an extra space before KeyboardInterrupt: " KeyboardInterrupt\n" should be "KeyboardInterrupt\n" Cheers, Mark