Home
last modified time | relevance | path

Searched refs:a2b_qp (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython2/Lib/test/
Dtest_binascii.py180 a2b_qp = binascii.a2b_qp
183 a2b_qp(data=b"", header=False) # Keyword arguments allowed
187 a2b_qp(b"", **{1:1})
193 self.assertEqual(a2b_qp(type2test(b"=")), b"")
194 self.assertEqual(a2b_qp(type2test(b"= ")), b"= ")
195 self.assertEqual(a2b_qp(type2test(b"==")), b"=")
196 self.assertEqual(a2b_qp(type2test(b"=\nAB")), b"AB")
197 self.assertEqual(a2b_qp(type2test(b"=\r\nAB")), b"AB")
198 self.assertEqual(a2b_qp(type2test(b"=\rAB")), b"") # ?
199 self.assertEqual(a2b_qp(type2test(b"=\rAB\nCD")), b"CD") # ?
[all …]
Dtest_quopri.py52 if quopri.b2a_qp is not None or quopri.a2b_qp is not None:
54 olddecode = quopri.a2b_qp
57 quopri.a2b_qp = None
61 quopri.a2b_qp = olddecode
/external/python/cpython2/Lib/
Dquopri.py15 from binascii import a2b_qp, b2a_qp
17 a2b_qp = None variable
121 if a2b_qp is not None:
123 odata = a2b_qp(data, header = header)
160 if a2b_qp is not None:
161 return a2b_qp(s, header = header)
/external/python/cpython2/Doc/library/
Dbinascii.rst54 .. function:: a2b_qp(string[, header])
/external/python/cpython2/Misc/
DNEWS144 - Issue #27599: Fixed buffer overrun in binascii.b2a_qp() and binascii.a2b_qp().
11833 a2b_qp() function, instead leave it in the string as quopri.decode()
DHISTORY6495 - binascii has now two quopri support functions, a2b_qp and b2a_qp.