From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2126) id 4FA973834E79; Mon, 6 Jun 2022 19:10:01 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 4FA973834E79 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Tom Tromey To: gdb-cvs@sourceware.org Subject: [binutils-gdb] Consolidate "Python API" sections in NEWS X-Act-Checkin: binutils-gdb X-Git-Author: Tom Tromey X-Git-Refname: refs/heads/master X-Git-Oldrev: a80f2680dbf07c713e3d58bc0906b7ed52f911e2 X-Git-Newrev: 691ade38bc45f4d4c89c0d6a3412bc160cf40a70 Message-Id: <20220606191001.4FA973834E79@sourceware.org> Date: Mon, 6 Jun 2022 19:10:01 +0000 (GMT) X-BeenThere: gdb-cvs@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Jun 2022 19:10:01 -0000 https://sourceware.org/git/gitweb.cgi?p=3Dbinutils-gdb.git;h=3D691ade38bc45= f4d4c89c0d6a3412bc160cf40a70 commit 691ade38bc45f4d4c89c0d6a3412bc160cf40a70 Author: Tom Tromey Date: Mon Jun 6 13:07:37 2022 -0600 Consolidate "Python API" sections in NEWS =20 I noticed that the gdb NEWS file had two "Python API" sections in "Changes since GDB 12". This patch consolidates the two. I chose to preserve the second one, first because it is longer, and second because I felt that user command changes should come before API changes. Diff: --- gdb/NEWS | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/gdb/NEWS b/gdb/NEWS index 960f90b4387..a85f59f56df 100644 --- a/gdb/NEWS +++ b/gdb/NEWS @@ -27,13 +27,6 @@ emit to indicate where a breakpoint should be placed to break in a funct= ion past its prologue. =20 -* Python API - - ** GDB will now reformat the doc string for gdb.Command and - gdb.Parameter sub-classes to remove unnecessary leading - whitespace from each line before using the string as the help - output. - * New commands =20 maintenance set ignore-prologue-end-flag on|off @@ -52,6 +45,11 @@ maintenance info line-table =20 * Python API =20 + ** GDB will now reformat the doc string for gdb.Command and + gdb.Parameter sub-classes to remove unnecessary leading + whitespace from each line before using the string as the help + output. + ** New function gdb.format_address(ADDRESS, PROGSPACE, ARCHITECTURE), that formats ADDRESS as 'address ', where symbol is looked up in PROGSPACE, and ARCHITECTURE is used to format address.