Searched refs:fix_eols (Results 1 – 5 of 5) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/ |
D | base64mime.py | 40 from email.utils import fix_eols 96 header = fix_eols(header) 140 s = fix_eols(s)
|
D | quoprimime.py | 49 from email.utils import fix_eols 148 header = fix_eols(header) 198 body = fix_eols(body)
|
D | utils.py | 75 def fix_eols(s): function
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/test/ |
D | test_email_renamed.py | 2223 eq(utils.fix_eols('hello'), 'hello') 2224 eq(utils.fix_eols('hello\n'), 'hello\r\n') 2225 eq(utils.fix_eols('hello\r'), 'hello\r\n') 2226 eq(utils.fix_eols('hello\r\n'), 'hello\r\n') 2227 eq(utils.fix_eols('hello\n\r'), 'hello\r\n\r\n')
|
D | test_email.py | 2343 eq(Utils.fix_eols('hello'), 'hello') 2344 eq(Utils.fix_eols('hello\n'), 'hello\r\n') 2345 eq(Utils.fix_eols('hello\r'), 'hello\r\n') 2346 eq(Utils.fix_eols('hello\r\n'), 'hello\r\n') 2347 eq(Utils.fix_eols('hello\n\r'), 'hello\r\n\r\n')
|