From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 17102 invoked by alias); 11 Jul 2014 13:49:44 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 17059 invoked by uid 89); 11 Jul 2014 13:49:41 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.4 required=5.0 tests=AWL,BAYES_00,RP_MATCHES_RCVD,SPF_HELO_PASS,SPF_PASS autolearn=ham version=3.3.2 X-Spam-User: qpsmtpd, 2 recipients X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Fri, 11 Jul 2014 13:49:39 +0000 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id s6BDnZ9w025139 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK); Fri, 11 Jul 2014 09:49:36 -0400 Received: from localhost (vpn1-4-50.ams2.redhat.com [10.36.4.50]) by int-mx11.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id s6BDnYZI003299; Fri, 11 Jul 2014 09:49:34 -0400 Date: Fri, 11 Jul 2014 13:49:00 -0000 From: Jonathan Wakely To: Samuel Bronson Cc: libstdc++@gcc.gnu.org, GCC Patches , GDB Patches , Tom Tromey , Matthias Klose Subject: Re: [PATCH v3 3/3] Port libstdc++ pretty-printers to Python 2 + Python 3 Message-ID: <20140711134933.GB4871@redhat.com> References: <1400701554-18062-1-git-send-email-naesten@gmail.com> <1405046899-32639-1-git-send-email-naesten@gmail.com> <1405046899-32639-4-git-send-email-naesten@gmail.com> <8761j4imol.fsf@naesten.mooo.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline In-Reply-To: <8761j4imol.fsf@naesten.mooo.com> User-Agent: Mutt/1.5.23 (2014-03-12) X-SW-Source: 2014-07/txt/msg00820.txt.bz2 On 10/07/14 22:48 -0400, Samuel Bronson wrote: > PR libstdc++/58962 > * python/libstdcxx/v6/printers.py: Port to Python 2+3 > (imap): New compat function. > (izip): Likewise. > (Iterator): New mixin to allow writing iterators in Python 3 style > regardless of which version we're running on. > [Python3] (long) New compat alias for "int". > * testsuite/lib/gdb-test.exp: Port to Python 2+3 (print syntax) Thanks, I've committed this with a few tiny changes to the comments (s/compatability/compatibility/ and the comment about your GDB PR). I'm not planning to backport this myself, but if the patch applies cleanly or if someone else does the work then I have no objections to it going on the release branches (after the branch reopens post-4.9.1 of course). Thanks very much for doing this.