From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 17531 invoked by alias); 20 May 2016 05:45:41 -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 17119 invoked by uid 89); 20 May 2016 05:45:10 -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 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:00 +0000 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1b3dEy-0007lp-8D for gdb-patches@sourceware.org; Fri, 20 May 2016 01:44:57 -0400 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:44179) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b3dEg-0007d2-DX; Fri, 20 May 2016 01:44:34 -0400 Received: from 84.94.185.246.cable.012.net.il ([84.94.185.246]:2549 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_128_CBC_SHA1:128) (Exim 4.82) (envelope-from ) id 1b3dEf-0004zK-KI; Fri, 20 May 2016 01:44:34 -0400 Date: Fri, 20 May 2016 05:45:00 -0000 Message-Id: <83wpmp8er9.fsf@gnu.org> From: Eli Zaretskii To: Tom Tromey CC: gdb-patches@sourceware.org, tom@tromey.com In-reply-to: <1463695563-4130-2-git-send-email-tom@tromey.com> (message from Tom Tromey on Thu, 19 May 2016 16:06:01 -0600) Subject: Re: [RFA 1/3] Rearrange Python breakpoint node in documentation Reply-to: Eli Zaretskii References: <1463695563-4130-1-git-send-email-tom@tromey.com> <1463695563-4130-2-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/msg00352.txt.bz2 > From: Tom Tromey > Cc: Tom Tromey > Date: Thu, 19 May 2016 16:06:01 -0600 > > I noticed that the Python breakpoint documentation was ordered a bit > oddly. It documented the constructor; then the stop method; then the > watchpoint constants (used for the constructor); then various other > methods and attributes; then the other constants used by the > constructor; and then finally some more methods and attributes. > > This patch rearranges the node a little to move the constants to just > after the constructor and before the other methods and attributes. OK, thanks.