HomeSort by relevance Sort by last modified time
    Searched refs:rfc822 (Results 1 - 25 of 61) sorted by null

1 2 3

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/mime/
message.py 18 def __init__(self, _msg, _subtype='rfc822'):
25 default is "rfc822" (this is defined by the MIME standard, even though
26 the term "rfc822" is technically outdated by RFC 2822).
35 self.set_default_type('message/rfc822')
  /external/python/cpython2/Lib/email/mime/
message.py 18 def __init__(self, _msg, _subtype='rfc822'):
25 default is "rfc822" (this is defined by the MIME standard, even though
26 the term "rfc822" is technically outdated by RFC 2822).
35 self.set_default_type('message/rfc822')
  /prebuilts/gdb/darwin-x86/lib/python2.7/email/mime/
message.py 18 def __init__(self, _msg, _subtype='rfc822'):
25 default is "rfc822" (this is defined by the MIME standard, even though
26 the term "rfc822" is technically outdated by RFC 2822).
35 self.set_default_type('message/rfc822')
  /prebuilts/gdb/linux-x86/lib/python2.7/email/mime/
message.py 18 def __init__(self, _msg, _subtype='rfc822'):
25 default is "rfc822" (this is defined by the MIME standard, even though
26 the term "rfc822" is technically outdated by RFC 2822).
35 self.set_default_type('message/rfc822')
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/mime/
message.py 18 def __init__(self, _msg, _subtype='rfc822'):
25 default is "rfc822" (this is defined by the MIME standard, even though
26 the term "rfc822" is technically outdated by RFC 2822).
35 self.set_default_type('message/rfc822')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/mime/
message.py 18 def __init__(self, _msg, _subtype='rfc822'):
25 default is "rfc822" (this is defined by the MIME standard, even though
26 the term "rfc822" is technically outdated by RFC 2822).
35 self.set_default_type('message/rfc822')
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_rfc822.py 4 rfc822 = test_support.import_module("rfc822", deprecated=True) variable
14 return rfc822.Message(StringIO(msg))
190 m = rfc822.Message(StringIO(
214 ## lst = rfc822.AddrlistClass(addr).getaddrlist()
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')
    [all...]
test_pyclbr.py 155 rfc822 = import_module('rfc822', deprecated=True)
156 self.checkModule('rfc822', rfc822)
  /external/python/cpython2/Lib/test/
test_rfc822.py 4 rfc822 = test_support.import_module("rfc822", deprecated=True) variable
14 return rfc822.Message(StringIO(msg))
190 m = rfc822.Message(StringIO(
214 ## lst = rfc822.AddrlistClass(addr).getaddrlist()
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'
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_rfc822.py 4 rfc822 = test_support.import_module("rfc822", deprecated=True) variable
14 return rfc822.Message(StringIO(msg))
190 m = rfc822.Message(StringIO(
214 ## lst = rfc822.AddrlistClass(addr).getaddrlist()
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'
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_rfc822.py 4 rfc822 = test_support.import_module("rfc822", deprecated=True) variable
14 return rfc822.Message(StringIO(msg))
190 m = rfc822.Message(StringIO(
214 ## lst = rfc822.AddrlistClass(addr).getaddrlist()
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'
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_rfc822.py 4 rfc822 = test_support.import_module("rfc822", deprecated=True) variable
14 return rfc822.Message(StringIO(msg))
190 m = rfc822.Message(StringIO(
214 ## lst = rfc822.AddrlistClass(addr).getaddrlist()
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'
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_rfc822.py 4 rfc822 = test_support.import_module("rfc822", deprecated=True) variable
14 return rfc822.Message(StringIO(msg))
190 m = rfc822.Message(StringIO(
214 ## lst = rfc822.AddrlistClass(addr).getaddrlist()
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'
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/versioncheck/
pyversioncheck.py 3 import rfc822
56 msg = rfc822.Message(fp, seekable=0)
  /external/python/cpython2/Tools/versioncheck/
pyversioncheck.py 3 import rfc822
56 msg = rfc822.Message(fp, seekable=0)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
mimetools.py 10 filterwarnings("ignore", ".*rfc822 has been removed", DeprecationWarning)
11 import rfc822
20 class Message(rfc822.Message):
21 """A derived class of rfc822.Message that knows about MIME headers and
25 rfc822.Message.__init__(self, fp, seekable)
76 return rfc822.unquote(p[n:])
  /external/python/cpython2/Lib/
mimetools.py 10 filterwarnings("ignore", ".*rfc822 has been removed", DeprecationWarning)
11 import rfc822
20 class Message(rfc822.Message):
21 """A derived class of rfc822.Message that knows about MIME headers and
25 rfc822.Message.__init__(self, fp, seekable)
76 return rfc822.unquote(p[n:])
  /prebuilts/gdb/darwin-x86/lib/python2.7/
mimetools.py 10 filterwarnings("ignore", ".*rfc822 has been removed", DeprecationWarning)
11 import rfc822
20 class Message(rfc822.Message):
21 """A derived class of rfc822.Message that knows about MIME headers and
25 rfc822.Message.__init__(self, fp, seekable)
76 return rfc822.unquote(p[n:])
  /prebuilts/gdb/linux-x86/lib/python2.7/
mimetools.py 10 filterwarnings("ignore", ".*rfc822 has been removed", DeprecationWarning)
11 import rfc822
20 class Message(rfc822.Message):
21 """A derived class of rfc822.Message that knows about MIME headers and
25 rfc822.Message.__init__(self, fp, seekable)
76 return rfc822.unquote(p[n:])
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
mimetools.py 10 filterwarnings("ignore", ".*rfc822 has been removed", DeprecationWarning)
11 import rfc822
20 class Message(rfc822.Message):
21 """A derived class of rfc822.Message that knows about MIME headers and
25 rfc822.Message.__init__(self, fp, seekable)
76 return rfc822.unquote(p[n:])
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
mimetools.py 10 filterwarnings("ignore", ".*rfc822 has been removed", DeprecationWarning)
11 import rfc822
20 class Message(rfc822.Message):
21 """A derived class of rfc822.Message that knows about MIME headers and
25 rfc822.Message.__init__(self, fp, seekable)
76 return rfc822.unquote(p[n:])
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/scripts/
mboxconvert.py 7 import rfc822
83 # Parse RFC822 header
84 m = rfc822.Message(f)
95 # Copy RFC822 header
  /external/python/cpython2/Demo/scripts/
mboxconvert.py 7 import rfc822
83 # Parse RFC822 header
84 m = rfc822.Message(f)
95 # Copy RFC822 header
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
mailerdaemon.py 3 import rfc822
11 class ErrorMessage(rfc822.Message):
13 rfc822.Message.__init__(self, fp)
57 '^Original-Recipient: rfc822;(?P<email>.*)',
  /external/python/cpython2/Tools/scripts/
mailerdaemon.py 4 import rfc822
12 class ErrorMessage(rfc822.Message):
14 rfc822.Message.__init__(self, fp)
58 '^Original-Recipient: rfc822;(?P<email>.*)',

Completed in 1205 milliseconds

1 2 3