@@ -73,7 +73,7 @@ A :class:`Cmd` instance has the following methods:
7373
7474 This method will return when the :meth: `postcmd ` method returns a true value.
7575 The *stop * argument to :meth: `postcmd ` is the return value from the command's
76- corresponding :meth: `do_\* ` method.
76+ corresponding :meth: `! do_\* ` method.
7777
7878 If completion is enabled, completing commands will be done automatically, and
7979 completing of commands args is done by calling :meth: `complete_foo ` with
@@ -88,7 +88,7 @@ A :class:`Cmd` instance has the following methods:
8888 :meth: `help_bar `, and if that is not present, prints the docstring of
8989 :meth: `do_bar `, if available. With no argument, :meth: `do_help ` lists all
9090 available help topics (that is, all commands with corresponding
91- :meth: `help_\* ` methods or commands that have docstrings), and also lists any
91+ :meth: `! help_\* ` methods or commands that have docstrings), and also lists any
9292 undocumented commands.
9393
9494
@@ -98,7 +98,7 @@ A :class:`Cmd` instance has the following methods:
9898 This may be overridden, but should not normally need to be; see the
9999 :meth: `precmd ` and :meth: `postcmd ` methods for useful execution hooks. The
100100 return value is a flag indicating whether interpretation of commands by the
101- interpreter should stop. If there is a :meth: `do_\* ` method for the command
101+ interpreter should stop. If there is a :meth: `! do_\* ` method for the command
102102 *str *, the return value of that method is returned, otherwise the return value
103103 from the :meth: `default ` method is returned.
104104
@@ -118,7 +118,7 @@ A :class:`Cmd` instance has the following methods:
118118.. method :: Cmd.completedefault(text, line, begidx, endidx)
119119
120120 Method called to complete an input line when no command-specific
121- :meth: `complete_\* ` method is available. By default, it returns an empty list.
121+ :meth: `! complete_\* ` method is available. By default, it returns an empty list.
122122
123123
124124.. method :: Cmd.columnize(list, displaywidth=80)
@@ -199,14 +199,14 @@ Instances of :class:`Cmd` subclasses have some public instance variables:
199199.. attribute :: Cmd.misc_header
200200
201201 The header to issue if the help output has a section for miscellaneous help
202- topics (that is, there are :meth: `help_\* ` methods without corresponding
203- :meth: `do_\* ` methods).
202+ topics (that is, there are :meth: `! help_\* ` methods without corresponding
203+ :meth: `! do_\* ` methods).
204204
205205
206206.. attribute :: Cmd.undoc_header
207207
208208 The header to issue if the help output has a section for undocumented commands
209- (that is, there are :meth: `do_\* ` methods without corresponding :meth: `help_\* `
209+ (that is, there are :meth: `! do_\* ` methods without corresponding :meth: `! help_\* `
210210 methods).
211211
212212
0 commit comments