From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 27539 invoked by alias); 16 Oct 2014 18:38:34 -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 27522 invoked by uid 89); 16 Oct 2014 18:38:34 -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,RCVD_IN_DNSWL_NONE,SPF_SOFTFAIL autolearn=no version=3.3.2 X-HELO: mtaout21.012.net.il Received: from mtaout21.012.net.il (HELO mtaout21.012.net.il) (80.179.55.169) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 16 Oct 2014 18:38:32 +0000 Received: from conversion-daemon.a-mtaout21.012.net.il by a-mtaout21.012.net.il (HyperSendmail v2007.08) id <0NDJ00F00VHMLF00@a-mtaout21.012.net.il> for gdb-patches@sourceware.org; Thu, 16 Oct 2014 21:38:28 +0300 (IDT) Received: from HOME-C4E4A596F7 ([87.69.4.28]) by a-mtaout21.012.net.il (HyperSendmail v2007.08) with ESMTPA id <0NDJ00F0ZVS3K240@a-mtaout21.012.net.il>; Thu, 16 Oct 2014 21:38:28 +0300 (IDT) Date: Thu, 16 Oct 2014 18:38:00 -0000 From: Eli Zaretskii Subject: Re: [PATCH] Small fixes to the Python API doc In-reply-to: <1413482796-3090-1-git-send-email-simon.marchi@ericsson.com> To: Simon Marchi Cc: gdb-patches@sourceware.org, simon.marchi@ericsson.com Reply-to: Eli Zaretskii Message-id: <83k33z3lnd.fsf@gnu.org> References: <1413482796-3090-1-git-send-email-simon.marchi@ericsson.com> X-IsSubscribed: yes X-SW-Source: 2014-10/txt/msg00437.txt.bz2 > From: Simon Marchi > CC: Simon Marchi > Date: Thu, 16 Oct 2014 14:06:36 -0400 > > First: > "Breakpoint.delete" is missing parenthesis. I was going to say it doesn't need them, since it doesn't accept any arguments, but then I saw that we already use those empty parens everywhere. So, reluctantly, OK for the parens. > @defvar Breakpoint.enabled > This attribute is @code{True} if the breakpoint is enabled, and > -@code{False} otherwise. This attribute is writable. > +@code{False} otherwise. You can use it to enable or disable the breakpoint. > +This attribute is writable. > @end defvar The order is wrong: first say that it's writable, then that it can be used to enable/disable. OK with that change. Thanks.