@@ -83,7 +83,7 @@ A :class:`Cmd` instance has the following methods:
8383
8484 This method will return when the :meth: `postcmd ` method returns a true value.
8585 The *stop * argument to :meth: `postcmd ` is the return value from the command's
86- corresponding :meth: `do_\* ` method.
86+ corresponding :meth: `! do_\* ` method.
8787
8888 If completion is enabled, completing commands will be done automatically, and
8989 completing of commands args is done by calling :meth: `complete_foo ` with
@@ -98,7 +98,7 @@ A :class:`Cmd` instance has the following methods:
9898 :meth: `help_bar `, and if that is not present, prints the docstring of
9999 :meth: `do_bar `, if available. With no argument, :meth: `do_help ` lists all
100100 available help topics (that is, all commands with corresponding
101- :meth: `help_\* ` methods or commands that have docstrings), and also lists any
101+ :meth: `! help_\* ` methods or commands that have docstrings), and also lists any
102102 undocumented commands.
103103
104104
@@ -108,7 +108,7 @@ A :class:`Cmd` instance has the following methods:
108108 This may be overridden, but should not normally need to be; see the
109109 :meth: `precmd ` and :meth: `postcmd ` methods for useful execution hooks. The
110110 return value is a flag indicating whether interpretation of commands by the
111- interpreter should stop. If there is a :meth: `do_\* ` method for the command
111+ interpreter should stop. If there is a :meth: `! do_\* ` method for the command
112112 *str *, the return value of that method is returned, otherwise the return value
113113 from the :meth: `default ` method is returned.
114114
@@ -128,7 +128,7 @@ A :class:`Cmd` instance has the following methods:
128128.. method :: Cmd.completedefault(text, line, begidx, endidx)
129129
130130 Method called to complete an input line when no command-specific
131- :meth: `complete_\* ` method is available. By default, it returns an empty list.
131+ :meth: `! complete_\* ` method is available. By default, it returns an empty list.
132132
133133
134134.. method :: Cmd.columnize(list, displaywidth=80)
@@ -209,14 +209,14 @@ Instances of :class:`Cmd` subclasses have some public instance variables:
209209.. attribute :: Cmd.misc_header
210210
211211 The header to issue if the help output has a section for miscellaneous help
212- topics (that is, there are :meth: `help_\* ` methods without corresponding
213- :meth: `do_\* ` methods).
212+ topics (that is, there are :meth: `! help_\* ` methods without corresponding
213+ :meth: `! do_\* ` methods).
214214
215215
216216.. attribute :: Cmd.undoc_header
217217
218218 The header to issue if the help output has a section for undocumented commands
219- (that is, there are :meth: `do_\* ` methods without corresponding :meth: `help_\* `
219+ (that is, there are :meth: `! do_\* ` methods without corresponding :meth: `! help_\* `
220220 methods).
221221
222222
0 commit comments