diff options
author | Tom Tromey <tromey@redhat.com> | 2009-11-23 21:47:22 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2009-11-23 21:47:22 +0000 |
commit | 7a6973ad42f7f525439fd006942060139d2acbd3 (patch) | |
tree | 80e8789cabbceed78c75ecd9fd30c1ae343db07b /gdb/doc | |
parent | 930636d2544900b8a01f4c919c6f1d6f5c350807 (diff) | |
download | gdb-7a6973ad42f7f525439fd006942060139d2acbd3.zip gdb-7a6973ad42f7f525439fd006942060139d2acbd3.tar.gz gdb-7a6973ad42f7f525439fd006942060139d2acbd3.tar.bz2 |
PR python/10782:
* gdb.texinfo (Types In Python): Document Type.pointer.
Diffstat (limited to 'gdb/doc')
-rw-r--r-- | gdb/doc/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/doc/gdb.texinfo | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index 76a0175..8571bc9 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,3 +1,8 @@ +2009-11-23 Tom Tromey <tromey@redhat.com> + + PR python/10782: + * gdb.texinfo (Types In Python): Document Type.pointer. + 2009-11-23 Paul Pluzhnikov <ppluzhnikov@google.com> * gdb.texinfo (Machine Code): Adjust. diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index bf76aa1..c1ccfc7 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -19640,6 +19640,11 @@ Return a new @code{gdb.Type} object which represents a reference to this type. @end defmethod +@defmethod Type pointer +Return a new @code{gdb.Type} object which represents a pointer to this +type. +@end defmethod + @defmethod Type strip_typedefs Return a new @code{gdb.Type} that represents the real type, after removing all layers of typedefs. |