aboutsummaryrefslogtreecommitdiff
path: root/gdb/doc/python.texi
diff options
context:
space:
mode:
authorJustin Lebar <jlebar@google.com>2014-09-03 16:40:22 -0700
committerDoug Evans <dje@google.com>2014-09-03 16:40:22 -0700
commit1a6a384be101ba422f6d3deba014dabe38cdb7a1 (patch)
tree887fd1dc4a7179a3af09c5f26b4b7557b51dac52 /gdb/doc/python.texi
parent5f3b99cfed3803f0b099152f54aac7cb90a2b926 (diff)
downloadgdb-1a6a384be101ba422f6d3deba014dabe38cdb7a1.zip
gdb-1a6a384be101ba422f6d3deba014dabe38cdb7a1.tar.gz
gdb-1a6a384be101ba422f6d3deba014dabe38cdb7a1.tar.bz2
Improve Type.template_argument docs in Python API.
gdb/doc/ChangeLog: * python.texi (Types In Python): Type.template_argument(n) returns a gdb.Value or a gdb.Type and throws an exception if n is out of range.
Diffstat (limited to 'gdb/doc/python.texi')
-rw-r--r--gdb/doc/python.texi9
1 files changed, 5 insertions, 4 deletions
diff --git a/gdb/doc/python.texi b/gdb/doc/python.texi
index 3cb6bf8..9f44948 100644
--- a/gdb/doc/python.texi
+++ b/gdb/doc/python.texi
@@ -1048,11 +1048,12 @@ exception.
@defun Type.template_argument (n @r{[}, block@r{]})
If this @code{gdb.Type} is an instantiation of a template, this will
-return a new @code{gdb.Type} which represents the type of the
-@var{n}th template argument.
+return a new @code{gdb.Value} or @code{gdb.Type} which represents the
+value of the @var{n}th template argument (indexed starting at 0).
-If this @code{gdb.Type} is not a template type, this will throw an
-exception. Ordinarily, only C@t{++} code will have template types.
+If this @code{gdb.Type} is not a template type, or if the type has fewer
+than @var{n} template arguments, this will throw an exception.
+Ordinarily, only C@t{++} code will have template types.
If @var{block} is given, then @var{name} is looked up in that scope.
Otherwise, it is searched for globally.