From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 11993 invoked by alias); 24 May 2016 08:58:29 -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 11978 invoked by uid 89); 24 May 2016 08:58:29 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.5 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 spammy=HX-Received:10.66.232.226 X-HELO: mail-pa0-f50.google.com Received: from mail-pa0-f50.google.com (HELO mail-pa0-f50.google.com) (209.85.220.50) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Tue, 24 May 2016 08:58:19 +0000 Received: by mail-pa0-f50.google.com with SMTP id qo8so4850634pab.1 for ; Tue, 24 May 2016 01:58:18 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:references:date:in-reply-to :message-id:user-agent:mime-version:content-transfer-encoding; bh=nosE461qX6WcWxQzBB4l6PWSxVGKZy03tHjcSqybf/E=; b=EnaBJNccyUaqcZ5JzJR9loGexU3aOXRt2fn31OEh8kmwANER//e0gGdyN3g3Jwv9u0 C2y+V+cjr4cxpwwMTB5E/+Wd26SqCPMthRydAyG4BT7p4JAic3RAVxSq19j8Czfbnqr6 Edhj52WmoY7zNOF146fS/CR0VjmbXy3M+CZ2cu6FexKfVh6EHl1cjnjvAkV2hVFRVNsT EY3j5Tep1vrQx+UljVtZPnRzxvpErdXvBvAlmBJQhm9iwnhv1DEALhbvUf+R5m5aZrJZ D9ak+rc4BJvf9rvYquHCShhJpCMDxkKp9JRCRkxYmpFNS80rA8LpZX84kBfsmQmtt0Zn zLpA== X-Gm-Message-State: ALyK8tLAJkEJtwj0gJW0n/s0PXd0pPWiDvCpwGkJtlGlFmyA2WzlWNHDZmiU09Uu2KXwpw== X-Received: by 10.66.232.226 with SMTP id tr2mr5110133pac.44.1464080297242; Tue, 24 May 2016 01:58:17 -0700 (PDT) Received: from E107787-LIN (gcc113.osuosl.org. [140.211.9.71]) by smtp.gmail.com with ESMTPSA id v75sm52388518pfa.94.2016.05.24.01.58.15 (version=TLS1_2 cipher=AES128-SHA bits=128/128); Tue, 24 May 2016 01:58:16 -0700 (PDT) From: Yao Qi To: Tom Tromey Cc: gdb-patches@sourceware.org Subject: Re: [RFA v2 2/2] Fix PR python/17386 - add __index__ method to gdb.Value References: <1464024313-11932-1-git-send-email-tom@tromey.com> <1464024313-11932-3-git-send-email-tom@tromey.com> Date: Tue, 24 May 2016 08:58:00 -0000 In-Reply-To: <1464024313-11932-3-git-send-email-tom@tromey.com> (Tom Tromey's message of "Mon, 23 May 2016 11:25:13 -0600") Message-ID: <8660u36deq.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-IsSubscribed: yes X-SW-Source: 2016-05/txt/msg00413.txt.bz2 Tom Tromey writes: > 2016-05-23 Tom Tromey > > PR python/17386: > * python/py-value.c (value_object_as_number): Add > nb_inplace_floor_divide, nb_inplace_true_divide, nb_index. > > 2016-05-23 Tom Tromey > > PR python/17386: > * gdb.python/py-value.exp (test_value_numeric_ops): Add tests that > use value as an index. Looks good to me with the trailing comma fixed. --=20 Yao (=E9=BD=90=E5=B0=A7)