• Home
  • Raw
  • Download

Lines Matching refs:meth

118   :meth:`Generator.__call__`, :meth:`Message.get_type`,
119 :meth:`Message.get_main_type`, :meth:`Message.get_subtype`.
142 :meth:`Message.add_payload` method, the :func:`Utils.dump_address_pair`
146 :meth:`Generator.__call__`, :meth:`Message.get_type`,
147 :meth:`Message.get_main_type`, :meth:`Message.get_subtype`, and the *strict*
172 :meth:`~email.message.Message.is_multipart` returned false,
173 :meth:`~email.message.Message.get_payload` was not a list object, but a
179 :meth:`~email.message.Message.is_multipart`, and
180 :meth:`~email.message.Message.get_payload` returns a list containing a single
185 :meth:`~email.message.Message.get_payload`, you should be fine. You just need
186 to make sure your code doesn't do a :meth:`~email.message.Message.set_payload`
191 and its :meth:`~email.parser.Parser.parse` and
192 :meth:`~email.parser.Parser.parsestr` methods grew a *headersonly* argument.
196 * :meth:`Generator.__call__` is deprecated; use :meth:`Generator.flatten
199 :meth:`~email.generator.Generator.clone` method.
246 * The method :meth:`asString` was renamed to
247 :meth:`~email.message.Message.as_string`.
249 * The method :meth:`ismultipart` was renamed to
250 :meth:`~email.message.Message.is_multipart`.
252 * The :meth:`~email.message.Message.get_payload` method has grown a *decode*
255 * The method :meth:`getall` was renamed to
256 :meth:`~email.message.Message.get_all`.
258 * The method :meth:`addheader` was renamed to
259 :meth:`~email.message.Message.add_header`.
261 * The method :meth:`gettype` was renamed to :meth:`get_type`.
263 * The method :meth:`getmaintype` was renamed to :meth:`get_main_type`.
265 * The method :meth:`getsubtype` was renamed to :meth:`get_subtype`.
267 * The method :meth:`getparams` was renamed to
268 :meth:`~email.message.Message.get_params`. Also, whereas :meth:`getparams`
269 returned a list of strings, :meth:`~email.message.Message.get_params` returns
273 * The method :meth:`getparam` was renamed to
274 :meth:`~email.message.Message.get_param`.
276 * The method :meth:`getcharsets` was renamed to
277 :meth:`~email.message.Message.get_charsets`.
279 * The method :meth:`getfilename` was renamed to
280 :meth:`~email.message.Message.get_filename`.
282 * The method :meth:`getboundary` was renamed to
283 :meth:`~email.message.Message.get_boundary`.
285 * The method :meth:`setboundary` was renamed to
286 :meth:`~email.message.Message.set_boundary`.
288 * The method :meth:`getdecodedpayload` was removed. To get similar
290 :meth:`~email.message.Message.get_payload` method.
292 * The method :meth:`getpayloadastext` was removed. Similar functionality is
296 * The method :meth:`getbodyastext` was removed. You can get similar
311 functionality previously available in the :meth:`Message.getpayloadastext`