aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhil Muldoon <pmuldoon@redhat.com>2011-03-16 09:49:44 +0000
committerPhil Muldoon <pmuldoon@redhat.com>2011-03-16 09:49:44 +0000
commit9a6f1302f0f4e4d12ce8fb7197d4905480eeecaa (patch)
treec6538e1be125e6ab704889db6b18d7393e25d780
parent02458de2c96369f3a78b8077663e44f693f4a19f (diff)
downloadgdb-9a6f1302f0f4e4d12ce8fb7197d4905480eeecaa.zip
gdb-9a6f1302f0f4e4d12ce8fb7197d4905480eeecaa.tar.gz
gdb-9a6f1302f0f4e4d12ce8fb7197d4905480eeecaa.tar.bz2
2011-03-16 Phil Muldoon <pmuldoon@redhat.com>
* NEWS: Add Parameter sub-classing description.
-rw-r--r--gdb/ChangeLog4
-rw-r--r--gdb/NEWS5
2 files changed, 9 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 67bd507..fa0d69b 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,7 @@
+2011-03-16 Phil Muldoon <pmuldoon@redhat.com>
+
+ * NEWS: Add Parameter sub-classing description.
+
2011-03-16 Kai Tietz <ktietz@redhat.com>
* MAINTAINERS: Update my e-mail address.
diff --git a/gdb/NEWS b/gdb/NEWS
index c602fbe..e231d5b 100644
--- a/gdb/NEWS
+++ b/gdb/NEWS
@@ -38,6 +38,11 @@
* Python scripting
+ ** Parameters can now be be sub-classed in Python, and in particular
+ you may implement the get_set_doc and get_show_doc functions.
+ This improves how Parameter set/show documentation is processed
+ and allows for more dynamic content.
+
** Breakpoints can now be sub-classed in Python, and in particular
you may implement a 'stop' function that is executed each time
the inferior reaches that breakpoint.