Home
last modified time | relevance | path

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/
Dbase64mime.py40 from email.utils import fix_eols
96 header = fix_eols(header)
140 s = fix_eols(s)
Dquoprimime.py49 from email.utils import fix_eols
148 header = fix_eols(header)
198 body = fix_eols(body)
Dutils.py75 def fix_eols(s): function
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/test/
Dtest_email_renamed.py2223 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')
Dtest_email.py2343 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')