From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 18562 invoked by alias); 20 May 2016 05:46:04 -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 18542 invoked by uid 89); 20 May 2016 05:46:03 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=AWL,BAYES_00,RP_MATCHES_RCVD,SPF_PASS autolearn=ham version=3.3.2 spammy=HX-HELO:eggs.gnu.org, Hx-spam-relays-external:208.118.235.92, H*RU:208.118.235.92, news X-HELO: eggs.gnu.org Received: from eggs.gnu.org (HELO eggs.gnu.org) (208.118.235.92) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-SHA encrypted) ESMTPS; Fri, 20 May 2016 05:45:54 +0000 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1b3dFq-0007u5-CN for gdb-patches@sourceware.org; Fri, 20 May 2016 01:45:52 -0400 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:44187) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b3dFq-0007ts-9R; Fri, 20 May 2016 01:45:46 -0400 Received: from 84.94.185.246.cable.012.net.il ([84.94.185.246]:2551 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_128_CBC_SHA1:128) (Exim 4.82) (envelope-from ) id 1b3dFo-0005BH-ID; Fri, 20 May 2016 01:45:45 -0400 Date: Fri, 20 May 2016 05:46:00 -0000 Message-Id: <83twht8epa.fsf@gnu.org> From: Eli Zaretskii To: Tom Tromey CC: gdb-patches@sourceware.org In-reply-to: <1463695563-4130-4-git-send-email-tom@tromey.com> (message from Tom Tromey on Thu, 19 May 2016 16:06:03 -0600) Subject: Re: [RFA 3/3] PR python/17698 - add Breakpoint.pending Reply-to: Eli Zaretskii References: <1463695563-4130-1-git-send-email-tom@tromey.com> <1463695563-4130-4-git-send-email-tom@tromey.com> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e X-IsSubscribed: yes X-SW-Source: 2016-05/txt/msg00353.txt.bz2 > From: Tom Tromey > Cc: Tom Tromey > Date: Thu, 19 May 2016 16:06:03 -0600 > > This patch adds a "pending" attribute to gdb.Breakpoint. > > Built and regtested on x86-64 Fedora 23. > > 2016-05-19 Tom Tromey > > PR python/17698: > * NEWS: Update. > * python/py-breakpoint.c (bppy_get_pending): New function. > (breakpoint_object_getset): Add entry for "pending". > * breakpoint.h (pending_breakpoint_p): Declare. > * breakpoint.c (pending_breakpoint_p): New function. > > 2016-05-19 Tom Tromey > > PR python/17698: > * python.texi (Breakpoints In Python): Document > Breakpoint.pending. > > 2016-05-19 Tom Tromey > > PR python/17698: > * gdb.python/py-breakpoint.exp (test_bkpt_basic): Add "pending" > test. > (test_watchpoints): Likewise. > (test_bkpt_pending): New proc. OK for the documentation parts. Thanks.