Home | History | Annotate | Download | only in test

Lines Matching refs:hstr

623         hstr = """\
627 h = Header(hstr, continuation_ws='\t')
632 h = Header(hstr)
738 hstr = 'References: ' + 'x' * 80
739 h = Header(hstr, continuation_ws='\t')
745 hstr = """\
750 h = Header(hstr, continuation_ws='\t')
767 hstr = """\
772 h = Header(hstr, maxlinelen=78, header_name='Received',
3090 hstr = 'A very long line that must get split to something other than at the 76th character boundary to test the non-default behavior'
3091 h = Header(hstr)
3095 h = Header(hstr, header_name='Subject')
3099 h = Header(hstr, maxlinelen=1024, header_name='Subject')
3100 eq(h.encode(), hstr)