/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
test_rfc822.py | 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>'),
|
test_smtplib.py | 333 raw_addr = email.utils.parseaddr(arg)[1]
341 list_name = email.utils.parseaddr(arg)[1].lower()
|
/external/python/cpython2/Lib/test/ |
test_rfc822.py | 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>'),
|
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_rfc822.py | 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>'),
|
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_rfc822.py | 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>'),
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_rfc822.py | 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>'),
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_rfc822.py | 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>'),
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/ |
utils.py | 17 'parseaddr',
89 """The inverse of parseaddr(), this takes a 2-tuple of the form
222 def parseaddr(addr):
214 def parseaddr(addr): function
|
/external/python/cpython2/Lib/email/ |
utils.py | 17 'parseaddr', 89 """The inverse of parseaddr(), this takes a 2-tuple of the form 221 def parseaddr(addr): 213 def parseaddr(addr): function
|
/prebuilts/gdb/darwin-x86/lib/python2.7/email/ |
utils.py | 17 'parseaddr', 89 """The inverse of parseaddr(), this takes a 2-tuple of the form 222 def parseaddr(addr): 214 def parseaddr(addr): function
|
/prebuilts/gdb/linux-x86/lib/python2.7/email/ |
utils.py | 17 'parseaddr', 89 """The inverse of parseaddr(), this takes a 2-tuple of the form 222 def parseaddr(addr): 214 def parseaddr(addr): function
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/ |
utils.py | 17 'parseaddr', 89 """The inverse of parseaddr(), this takes a 2-tuple of the form 222 def parseaddr(addr): 214 def parseaddr(addr): function
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/ |
utils.py | 17 'parseaddr', 89 """The inverse of parseaddr(), this takes a 2-tuple of the form 222 def parseaddr(addr): 214 def parseaddr(addr): function
|
/external/python/cpython3/Lib/test/test_email/ |
test_email.py | [all...] |
/external/python/cpython2/Lib/ |
smtplib.py | 137 Should be able to handle anything rfc822.parseaddr can handle. 141 m = email.utils.parseaddr(addr)[1] 154 displayname, addr = email.utils.parseaddr(addrstring) 156 # parseaddr couldn't parse it, so use it as is.
|
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
smtplib.py | 136 Should be able to handle anything rfc822.parseaddr can handle. 140 m = email.utils.parseaddr(addr)[1] 153 displayname, addr = email.utils.parseaddr(addrstring) 155 # parseaddr couldn't parse it, so use it as is.
|
/prebuilts/gdb/linux-x86/lib/python2.7/ |
smtplib.py | 136 Should be able to handle anything rfc822.parseaddr can handle. 140 m = email.utils.parseaddr(addr)[1] 153 displayname, addr = email.utils.parseaddr(addrstring) 155 # parseaddr couldn't parse it, so use it as is.
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
smtplib.py | 136 Should be able to handle anything rfc822.parseaddr can handle. 140 m = email.utils.parseaddr(addr)[1] 153 displayname, addr = email.utils.parseaddr(addrstring) 155 # parseaddr couldn't parse it, so use it as is.
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
smtplib.py | 136 Should be able to handle anything rfc822.parseaddr can handle. 140 m = email.utils.parseaddr(addr)[1] 153 displayname, addr = email.utils.parseaddr(addrstring) 155 # parseaddr couldn't parse it, so use it as is.
|
/external/python/cpython3/Lib/email/ |
utils.py | 18 'parseaddr', 77 """The inverse of parseaddr(), this takes a 2-tuple of the form 217 def parseaddr(addr): function
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/test/ |
test_email.py | [all...] |
/external/python/cpython2/Lib/email/test/ |
test_email.py | [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/email/test/ |
test_email.py | [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/email/test/ |
test_email.py | [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/test/ |
test_email.py | [all...] |