diff options
author | Tom Tromey <tromey@redhat.com> | 2012-01-19 16:54:03 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2012-01-19 16:54:03 +0000 |
commit | 508972892cea7de8a6472c7f64984e7e3799cc1c (patch) | |
tree | 6b99b976b0c62db99a6f0babd3cc172096fd63c7 /gdb/NEWS | |
parent | 1afc203311b1cd4dfc50a6aede9cab6163d08717 (diff) | |
download | gdb-508972892cea7de8a6472c7f64984e7e3799cc1c.zip gdb-508972892cea7de8a6472c7f64984e7e3799cc1c.tar.gz gdb-508972892cea7de8a6472c7f64984e7e3799cc1c.tar.bz2 |
* NEWS: Combine the two Python sections.
Diffstat (limited to 'gdb/NEWS')
-rw-r--r-- | gdb/NEWS | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -7,6 +7,9 @@ ** The "maint set python print-stack on|off" is now deleted. + ** A new class, gdb.printing.FlagEnumerationPrinter, can be used to + apply "flag enum"-style pretty-printing to any enum. + * GDBserver now supports stdio connections. E.g. (gdb) target remote | ssh myhost gdbserver - hello @@ -20,11 +23,6 @@ (gdb) print (enum E) 3 $1 = (ONE | TWO) -* Python scripting - - ** A new class, gdb.printing.FlagEnumerationPrinter, can be used to - apply "flag enum"-style pretty-printing to any enum. - * The filename part of a linespec will now match trailing components of a source file name. For example, "break gcc/expr.c:1000" will now set a breakpoint in build/gcc/expr.c, but not |