Searched refs:a2b_qp (Results 1 – 8 of 8) sorted by relevance
/third_party/python/Lib/test/ |
D | test_binascii.py | 263 a2b_qp = binascii.a2b_qp 266 a2b_qp(data=b"", header=False) # Keyword arguments allowed 270 a2b_qp(b"", **{1:1}) 276 self.assertEqual(a2b_qp(type2test(b"=")), b"") 277 self.assertEqual(a2b_qp(type2test(b"= ")), b"= ") 278 self.assertEqual(a2b_qp(type2test(b"==")), b"=") 279 self.assertEqual(a2b_qp(type2test(b"=\nAB")), b"AB") 280 self.assertEqual(a2b_qp(type2test(b"=\r\nAB")), b"AB") 281 self.assertEqual(a2b_qp(type2test(b"=\rAB")), b"") # ? 282 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/NEWS.d/ |
D | 3.6.0b2.rst | 578 Fixed buffer overrun in binascii.b2a_qp() and binascii.a2b_qp().
|
D | 3.5.3rc1.rst | 879 Fixed buffer overrun in binascii.b2a_qp() and binascii.a2b_qp().
|
D | 3.7.0a1.rst | 4571 Fixed buffer overrun in binascii.b2a_qp() and binascii.a2b_qp().
|
/third_party/python/Misc/ |
D | HISTORY | 23874 - binascii has now two quopri support functions, a2b_qp and b2a_qp.
|