Searched refs:rfc822 (Results 1 – 25 of 66) sorted by relevance
123
/external/python/cpython2/Lib/email/test/data/ |
D | msg_43.txt | 45 Final-Recipient: rfc822; xxxxxxx@dot.ca.gov 51 Final-Recipient: rfc822; xxxxxxxxxxxxx@dot.ca.gov 57 Final-Recipient: rfc822; xxxxxxxxxx@dot.ca.gov 63 Final-Recipient: rfc822; xxxxxxxx@dot.ca.gov 69 Final-Recipient: rfc822; xxxxxxxxxx@dot.ca.gov 75 Final-Recipient: rfc822; xxxxxx@dot.ca.gov 81 Final-Recipient: rfc822; xxxxxxxxxx@dot.ca.gov 87 Final-Recipient: rfc822; xxxxxx@dot.ca.gov 93 Final-Recipient: rfc822; xxxxxx@dot.ca.gov 99 Final-Recipient: rfc822; xxxxxxxxxxxxxxxx@dot.ca.gov [all …]
|
D | msg_28.txt | 6 Content-Type: message/rfc822 16 Content-Type: message/rfc822
|
D | msg_11.txt | 1 Content-Type: message/rfc822
|
D | msg_42.txt | 12 Content-Type: message/rfc822
|
D | msg_05.txt | 21 Content-Type: message/rfc822
|
D | msg_46.txt | 11 Content-Type: message/rfc822
|
D | msg_06.txt | 4 Content-Type: message/rfc822
|
/external/python/cpython3/Lib/test/test_email/data/ |
D | msg_43.txt | 45 Final-Recipient: rfc822; xxxxxxx@dot.ca.gov 51 Final-Recipient: rfc822; xxxxxxxxxxxxx@dot.ca.gov 57 Final-Recipient: rfc822; xxxxxxxxxx@dot.ca.gov 63 Final-Recipient: rfc822; xxxxxxxx@dot.ca.gov 69 Final-Recipient: rfc822; xxxxxxxxxx@dot.ca.gov 75 Final-Recipient: rfc822; xxxxxx@dot.ca.gov 81 Final-Recipient: rfc822; xxxxxxxxxx@dot.ca.gov 87 Final-Recipient: rfc822; xxxxxx@dot.ca.gov 93 Final-Recipient: rfc822; xxxxxx@dot.ca.gov 99 Final-Recipient: rfc822; xxxxxxxxxxxxxxxx@dot.ca.gov [all …]
|
D | msg_28.txt | 6 Content-Type: message/rfc822 16 Content-Type: message/rfc822
|
D | msg_11.txt | 1 Content-Type: message/rfc822
|
D | msg_42.txt | 12 Content-Type: message/rfc822
|
D | msg_05.txt | 21 Content-Type: message/rfc822
|
D | msg_46.txt | 11 Content-Type: message/rfc822
|
D | msg_06.txt | 4 Content-Type: message/rfc822
|
/external/python/cpython2/Lib/test/ |
D | test_rfc822.py | 4 rfc822 = test_support.import_module("rfc822", deprecated=True) variable 14 return rfc822.Message(StringIO(msg)) 190 m = rfc822.Message(StringIO( 239 eq(rfc822.parseaddr('<>'), ('', '')) 240 eq(rfc822.parseaddr('aperson@dom.ain'), ('', 'aperson@dom.ain')) 241 eq(rfc822.parseaddr('bperson@dom.ain (Bea A. Person)'), 243 eq(rfc822.parseaddr('Cynthia Person <cperson@dom.ain>'), 248 eq(rfc822.quote('foo\\wacky"name'), 'foo\\\\wacky\\"name') 249 eq(rfc822.unquote('"foo\\\\wacky\\"name"'), 'foo\\wacky"name')
|
D | test_pyclbr.py | 155 rfc822 = import_module('rfc822', deprecated=True) 156 self.checkModule('rfc822', rfc822)
|
/external/python/cpython2/Doc/library/ |
D | email.iterators.rst | 54 message/rfc822 56 message/rfc822 58 message/rfc822 60 message/rfc822 62 message/rfc822
|
D | mimetools.rst | 15 .. index:: module: rfc822 17 This module defines a subclass of the :mod:`rfc822` module's :class:`Message` 27 :class:`rfc822.Message` class, with some additional methods (see below). The 28 *seekable* argument has the same meaning as for :class:`rfc822.Message`. 71 Module :mod:`rfc822` 88 :class:`rfc822.Message` methods:
|
D | netdata.rst | 24 rfc822.rst
|
/external/python/cpython3/Doc/library/ |
D | email.iterators.rst | 65 message/rfc822 67 message/rfc822 69 message/rfc822 71 message/rfc822 73 message/rfc822
|
D | email.contentmanager.rst | 112 :class:`~email.message.EmailMessage` object (for ``message/rfc822`` 141 specified or ``rfc822`` if it is not. If *subtype* is 162 requested for *subtype* ``rfc822``, and for any *cte* other than 164 ``message/rfc822``, use ``8bit`` if *cte* is not specified. For
|
/external/python/cpython2/Lib/ |
D | mimetools.py | 11 import rfc822 20 class Message(rfc822.Message): 25 rfc822.Message.__init__(self, fp, seekable) 76 return rfc822.unquote(p[n:])
|
/external/python/cpython2/Tools/versioncheck/ |
D | pyversioncheck.py | 3 import rfc822 56 msg = rfc822.Message(fp, seekable=0)
|
/external/python/cpython2/Tools/scripts/ |
D | mailerdaemon.py | 4 import rfc822 12 class ErrorMessage(rfc822.Message): 14 rfc822.Message.__init__(self, fp)
|
/external/python/cpython2/Demo/scripts/ |
D | mboxconvert.py | 7 import rfc822 84 m = rfc822.Message(f)
|
123