From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 54711 invoked by alias); 15 Sep 2019 02:42:21 -0000 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 Received: (qmail 54700 invoked by uid 89); 15 Sep 2019 02:42:21 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-30.6 required=5.0 tests=AWL,BAYES_00,ENV_AND_HDR_SPF_MATCH,GIT_PATCH_0,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3,RCVD_IN_DNSWL_NONE,SPF_PASS,USER_IN_DEF_SPF_WL autolearn=ham version=3.3.1 spammy= X-HELO: mail-ot1-f65.google.com Received: from mail-ot1-f65.google.com (HELO mail-ot1-f65.google.com) (209.85.210.65) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 15 Sep 2019 02:42:19 +0000 Received: by mail-ot1-f65.google.com with SMTP id 41so28977777oti.12 for ; Sat, 14 Sep 2019 19:42:19 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20161025; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=ZmCyNNUa1qlfXC67TUNz1vng3A364GKoQokHzWC8r8c=; b=i0Uo6ehkWHXlF0vGc/gFat+PKwGw1yrKUbWgU6WwfOtTG/TXvbTMyMoV5ttK8r8ynI DSQCFckqzNNGc3WQwdefJjQa70nwhcS6VBof/44CPh97Lhkvi73O8tuCWaUo4qSkvq1J KduO1FtYWKLrq0HQJ4raf0r0UBH6C0wBTaWiX3lfy3ZYVFI/Id6DWQTZYcz+lnRlu1hc mWTCOiSO2e1MfdFKXf2JW63lJfsFYxni8aVBJJKjgxyb0VmW+PSxeRfRxsSpqokXweK9 gsp9mX+b/c21CuKxQ4N1NJ9Hz4zR+7yF9livuCCEVYd7jBdcxeTOgzxNWoz2BoEtWEtF M7Gg== MIME-Version: 1.0 References: <8336gzyph1.fsf@gnu.org> <20190914204320.196671-1-cbiesinger@google.com> <83muf6xp66.fsf@gnu.org> In-Reply-To: <83muf6xp66.fsf@gnu.org> From: "Christian Biesinger via gdb-patches" Reply-To: Christian Biesinger Date: Sun, 15 Sep 2019 02:42:00 -0000 Message-ID: Subject: Re: [PATCH] Add a NEWS entry that gdb can be compiled with py3 on Windows. To: Eli Zaretskii Cc: gdb-patches Content-Type: text/plain; charset="UTF-8" X-IsSubscribed: yes X-SW-Source: 2019-09/txt/msg00260.txt.bz2 On Sat, Sep 14, 2019 at 10:34 PM Eli Zaretskii wrote: > > > Date: Sat, 14 Sep 2019 15:43:20 -0500 > > From: "Christian Biesinger via gdb-patches" > > Cc: Christian Biesinger > > > > [Eli -- how about this one?] > > > > This was fixed in commit 272044897e178835f596c96740c5a1800ec6f9fb. > > > > 2019-09-11 Christian Biesinger > > > > * NEWS: Mention that gdb can now be compiled with Python 3 > > on Windows. > > --- > > gdb/NEWS | 2 ++ > > 1 file changed, 2 insertions(+) > > > > diff --git a/gdb/NEWS b/gdb/NEWS > > index d502f08984c..947b7435337 100644 > > --- a/gdb/NEWS > > +++ b/gdb/NEWS > > @@ -32,6 +32,8 @@ > > * GDB now shows the Ada task names at more places, e.g. in task switching > > messages. > > > > +* GDB can now be compiled with Python 3 on Windows. > > + > > Fine with me, thanks. Thanks, pushed as 6a062a93d70. Christian