From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 71038 invoked by alias); 19 Jan 2016 16:08:13 -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 71025 invoked by uid 89); 19 Jan 2016 16:08:12 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.2 required=5.0 tests=BAYES_00,SPF_HELO_PASS,SPF_SOFTFAIL autolearn=no version=3.3.2 spammy=H*UA:Webmail X-HELO: simark.ca Received: from simark.ca (HELO simark.ca) (158.69.221.121) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 19 Jan 2016 16:08:11 +0000 Received: by simark.ca (Postfix, from userid 112) id DD4071EB30; Tue, 19 Jan 2016 11:08:09 -0500 (EST) Received: from simark.ca (localhost [127.0.0.1]) by simark.ca (Postfix) with ESMTP id 5AC2F1E052; Tue, 19 Jan 2016 11:08:09 -0500 (EST) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Date: Tue, 19 Jan 2016 16:08:00 -0000 From: Simon Marchi To: Pedro Alves Cc: gdb-patches@sourceware.org Subject: Re: [PATCH 2/2] Fix enum flag with Python 3 In-Reply-To: <569E181A.80403@redhat.com> References: <1453177390-13881-1-git-send-email-simon.marchi@polymtl.ca> <1453177390-13881-2-git-send-email-simon.marchi@polymtl.ca> <569E181A.80403@redhat.com> Message-ID: <64edd78ba7cb850779bcdea71da80504@simark.ca> X-Sender: simon.marchi@polymtl.ca User-Agent: Roundcube Webmail/1.1.3 X-SW-Source: 2016-01/txt/msg00436.txt.bz2 On 2016-01-19 06:03, Pedro Alves wrote: > On 01/19/2016 04:23 AM, Simon Marchi wrote: > >> gdb/ChangeLog: >> >> * python/lib/gdb/printing.py (_EnumInstance.to_string): Explicitly >> convert gdb.Value to integer type using int(). > > LGTM. Thanks, pushed!