Lines Matching refs:meth
71 :meth:`close` is called.
79 :meth:`close`.
92 This method is called to handle start tags for which either a :meth:`start_tag`
93 or :meth:`do_tag` method has been defined. The *tag* argument is the name of
117 This method is called to handle endtags for which an :meth:`end_tag` method has
120 support semantic interpretation of the end tag. If no :meth:`end_tag` method is
134 The base implementation uses :meth:`convert_charref` to convert the reference to
135 a string. If that method returns a string, it is passed to :meth:`handle_data`,
139 Use :meth:`convert_charref` instead of hard-coding the conversion.
147 :meth:`convert_codepoint` method. If *ref* is invalid or out of range, this
149 :meth:`handle_charref` implementation and by the attribute value parser.
166 passing it to :meth:`convert_entityref`. If a translation is returned, it calls
167 the method :meth:`handle_data` with the translation; otherwise, it calls the
172 Use :meth:`convert_entityref` instead of hard-coding the conversion.
182 ``None``. This method is called by the default :meth:`handle_entityref`
228 Refer to :meth:`handle_charref` to determine what is handled by default. It is
248 :meth:`do_tag`. The *attributes* argument has the same meaning as described for
249 :meth:`handle_starttag` above.
256 :meth:`start_tag` method is defined. The *attributes* argument has the same
257 meaning as described for :meth:`handle_starttag` above.
266 been found yet. Only tags processed by :meth:`start_tag` are pushed on this
267 stack. Definition of an :meth:`end_tag` method is optional for these tags. For
268 tags processed by :meth:`do_tag` or by :meth:`unknown_tag`, no :meth:`end_tag`
270 :meth:`start_tag` and :meth:`do_tag` methods exist for a tag, the
271 :meth:`start_tag` method takes precedence.