Home
last modified time | relevance | path

Searched refs:unixfrom (Results 1 – 11 of 11) sorted by relevance

/third_party/python/Lib/email/
Dmessage.py137 def as_string(self, unixfrom=False, maxheaderlen=0, policy=None): argument
158 g.flatten(self, unixfrom=unixfrom)
166 def as_bytes(self, unixfrom=False, policy=None): argument
178 g.flatten(self, unixfrom=unixfrom)
188 def set_unixfrom(self, unixfrom): argument
189 self._unixfrom = unixfrom
954 def as_string(self, unixfrom=False, maxheaderlen=None, policy=None): argument
968 return super().as_string(unixfrom, maxheaderlen, policy)
Dgenerator.py72 def flatten(self, msg, unixfrom=False, linesep=None): argument
111 if unixfrom:
276 g.flatten(part, unixfrom=False, linesep=self._NL)
335 g.flatten(part, unixfrom=False, linesep=self._NL)
362 g.flatten(msg.get_payload(0), unixfrom=False, linesep=self._NL)
/third_party/python/Doc/library/
Demail.generator.rst81 .. method:: flatten(msg, unixfrom=False, linesep=None)
104 If *unixfrom* is ``True``, print the envelope header delimiter used by
180 .. method:: flatten(msg, unixfrom=False, linesep=None)
197 If *unixfrom* is ``True``, print the envelope header delimiter used by
277 ``unixfrom``, and that there are no :mod:`policy` settings calling for
Demail.compat32-message.rst67 .. method:: as_string(unixfrom=False, maxheaderlen=0, policy=None)
69 Return the entire message flattened as a string. When optional *unixfrom*
71 *unixfrom* defaults to ``False``. For backward compatibility reasons,
111 .. method:: as_bytes(unixfrom=False, policy=None)
114 *unixfrom* is true, the envelope header is included in the returned
115 string. *unixfrom* defaults to ``False``. The *policy* argument may be
163 .. method:: set_unixfrom(unixfrom)
165 Set the message's envelope header to *unixfrom*, which should be a string.
Demail.message.rst62 .. method:: as_string(unixfrom=False, maxheaderlen=None, policy=None)
65 *unixfrom* is true, the envelope header is included in the returned
66 string. *unixfrom* defaults to ``False``. For backward compatibility
104 .. method:: as_bytes(unixfrom=False, policy=None)
107 *unixfrom* is true, the envelope header is included in the returned
108 string. *unixfrom* defaults to ``False``. The *policy* argument may be
143 .. method:: set_unixfrom(unixfrom)
145 Set the message's envelope header to *unixfrom*, which should be a
/third_party/python/Lib/test/
Dtest_mailbox.py992 unixfrom = 'From foo@bar blah\n'
993 key0 = self._box.add(unixfrom + self._template % 0)
994 key1 = self._box.add(unixfrom + _sample_message)
1000 (unixfrom + self._template % 0).encode('ascii'))
1002 unixfrom.encode('ascii') + _bytes_sample_message)
1006 unixfrom = 'From foo@bar blah\n'
1007 key0 = self._box.add(unixfrom + self._template % 0)
1008 key1 = self._box.add(unixfrom + _sample_message)
1014 unixfrom + self._template % 0)
1016 (unixfrom + _sample_message).split('\n'))
/third_party/python/Lib/test/test_email/
Dtest_message.py785 self.assertEqual(m.as_string(unixfrom=True),
787 self.assertEqual(m.as_string(unixfrom=False), '\ntest')
Dtest_email.py301 fullrepr = msg.as_string(unixfrom=True)
355 fullrepr = msg.as_bytes(unixfrom=True)
2775 def _idempotent(self, msg, text, unixfrom=False): argument
2779 g.flatten(msg, unixfrom=unixfrom)
2868 self._idempotent(msg, text, unixfrom=True)
4088 email.generator.BytesGenerator(out).flatten(msg, unixfrom=True)
4244 def _idempotent(self, msg, data, unixfrom=False): argument
4247 g.flatten(msg, unixfrom=unixfrom, linesep=self.linesep)
/third_party/python/Lib/
Dmailbox.py790 self.get_bytes(key, from_)).as_string(unixfrom=from_)
1644 unixfrom = message.get_unixfrom()
1645 if unixfrom is not None and unixfrom.startswith('From '):
1646 self.set_from(unixfrom[5:])
/third_party/python/Misc/NEWS.d/
D3.10.0b4.rst255 Fix :meth:`~email.message.MIMEPart.as_string` to pass unixfrom properly.
/third_party/python/Doc/whatsnew/
D3.4.rst805 argument, but does accept the *unixfrom* and *policy* arguments. The