diff options
author | Doug Evans <dje@google.com> | 2015-04-24 11:16:12 -0700 |
---|---|---|
committer | Doug Evans <dje@google.com> | 2015-04-24 11:16:12 -0700 |
commit | 897c3d327e2d60d996252c0a5cb13da3f40e9b9f (patch) | |
tree | a1aaeca80963d07ae4d75a3c60659114f3bd2165 /gdb/doc/python.texi | |
parent | de13ef81f041f7f51687ef1873c74e853b97e73a (diff) | |
download | gdb-897c3d327e2d60d996252c0a5cb13da3f40e9b9f.zip gdb-897c3d327e2d60d996252c0a5cb13da3f40e9b9f.tar.gz gdb-897c3d327e2d60d996252c0a5cb13da3f40e9b9f.tar.bz2 |
* python.texi (Xmethods In Python): Fix name of method to call the xmethod.
gdb/doc/ChangeLog:
* python.texi (Xmethods In Python): Fix name of method to call the
xmethod.
Diffstat (limited to 'gdb/doc/python.texi')
-rw-r--r-- | gdb/doc/python.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/doc/python.texi b/gdb/doc/python.texi index 098d718..448fa8b2 100644 --- a/gdb/doc/python.texi +++ b/gdb/doc/python.texi @@ -2360,7 +2360,7 @@ xmethod worker is found to be equivalent to the winning C@t{++} method, then the xmethod worker is treated as a replacement for the C@t{++} method. @value{GDBN} uses the overall winner to invoke the method. If the winning xmethod worker is the overall winner, then -the corresponding xmethod is invoked via the @code{invoke} method +the corresponding xmethod is invoked via the @code{__call__} method of the worker object. If one wants to implement an xmethod as a replacement for an |