Home
last modified time | relevance | path

Searched refs:rfc822 (Results 1 – 21 of 21) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_rfc822.py4 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')
Dtest_pyclbr.py155 rfc822 = import_module('rfc822', deprecated=True)
156 self.checkModule('rfc822', rfc822)
Dtest_urllib2.py661 import rfc822, socket
696 modified = rfc822.formatdate(stats.st_mtime)
Dtest_mailbox.py20 rfc822 = test_support.import_module('rfc822', deprecated=True) variable
135 self._box = self._factory(self._path, factory=rfc822.Message)
535 self._check_basics(factory=rfc822.Message)
546 self._check_basics(factory=rfc822.Message)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/test/data/
Dmsg_43.txt45 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 …]
Dmsg_28.txt6 Content-Type: message/rfc822
16 Content-Type: message/rfc822
Dmsg_11.txt1 Content-Type: message/rfc822
Dmsg_42.txt12 Content-Type: message/rfc822
Dmsg_05.txt21 Content-Type: message/rfc822
Dmsg_46.txt11 Content-Type: message/rfc822
Dmsg_06.txt4 Content-Type: message/rfc822
Dmsg_25.txt38 Final-Recipient: rfc822; scoffman@wellpartner.com
44 Content-Type: text/rfc822-headers
Dmsg_16.txt60 Original-recipient: rfc822;jangel1@cougar.noc.ucla.edu
61 Final-recipient: rfc822;jangel1@cougar.noc.ucla.edu
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dmimetools.py11 import rfc822
20 class Message(rfc822.Message):
25 rfc822.Message.__init__(self, fp, seekable)
76 return rfc822.unquote(p[n:])
Dcgi.py52 import rfc822
635 headers = rfc822.Message(self.fp)
Dmailbox.py35 import rfc822
234 def __init__(self, dirname, factory=rfc822.Message, create=True):
1986 def __init__(self, fp, factory=rfc822.Message):
2103 def __init__(self, dirname, factory=rfc822.Message):
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/versioncheck/
Dpyversioncheck.py3 import rfc822
56 msg = rfc822.Message(fp, seekable=0)
DREADME26 The version-check file consists of an rfc822-style header followed by
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/scripts/
Dmboxconvert.py7 import rfc822
84 m = rfc822.Message(f)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
Dmailerdaemon.py3 import rfc822
11 class ErrorMessage(rfc822.Message):
13 rfc822.Message.__init__(self, fp)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/faqwiz/
Dfaqwiz.py210 import rfc822
211 self.__headers = rfc822.Message(fp)