Searched refs:a2b_qp (Results 1 – 6 of 6) sorted by relevance
/third_party/python/Lib/test/ |
D | test_binascii.py | 262 a2b_qp = binascii.a2b_qp 265 a2b_qp(data=b"", header=False) # Keyword arguments allowed 269 a2b_qp(b"", **{1:1}) 275 self.assertEqual(a2b_qp(type2test(b"=")), b"") 276 self.assertEqual(a2b_qp(type2test(b"= ")), b"= ") 277 self.assertEqual(a2b_qp(type2test(b"==")), b"=") 278 self.assertEqual(a2b_qp(type2test(b"=\nAB")), b"AB") 279 self.assertEqual(a2b_qp(type2test(b"=\r\nAB")), b"AB") 280 self.assertEqual(a2b_qp(type2test(b"=\rAB")), b"") # ? 281 self.assertEqual(a2b_qp(type2test(b"=\rAB\nCD")), b"CD") # ? [all …]
|
D | test_quopri.py | 51 if quopri.b2a_qp is not None or quopri.a2b_qp is not None: 53 olddecode = quopri.a2b_qp 56 quopri.a2b_qp = None 60 quopri.a2b_qp = olddecode
|
/third_party/python/Lib/ |
D | quopri.py | 15 from binascii import a2b_qp, b2a_qp 17 a2b_qp = None variable 122 if a2b_qp is not None: 124 odata = a2b_qp(data, header=header) 161 if a2b_qp is not None: 162 return a2b_qp(s, header=header)
|
/third_party/python/Doc/library/ |
D | binascii.rst | 69 .. function:: a2b_qp(data, header=False)
|
/third_party/python/Misc/ |
D | NEWS | 14684 binascii.a2b_qp(). 18123 binascii.a2b_qp(). 21544 binascii.a2b_qp().
|
D | HISTORY | 23874 - binascii has now two quopri support functions, a2b_qp and b2a_qp.
|