Searched refs:decodestring (Results 1 – 9 of 9) sorted by relevance
/third_party/python/Lib/test/ |
D | test_quopri.py | 137 self.assertEqual(quopri.decodestring(e), p) 144 self.assertEqual(quopri.decodestring(encoded_value), decoded_value) 149 self.assertEqual(quopri.decodestring(quopri.encodestring(e)), e) 171 self.assertEqual(quopri.decodestring(e), p) 181 self.assertEqual(quopri.decodestring(e, header=True), p)
|
/third_party/python/Lib/email/ |
D | base64mime.py | 119 decodestring = decode variable
|
D | quoprimime.py | 280 decodestring = decode variable
|
D | message.py | 282 return quopri.decodestring(bpayload)
|
/third_party/python/Doc/library/ |
D | quopri.rst | 46 .. function:: decodestring(s, header=False)
|
/third_party/python/Lib/ |
D | quopri.py | 160 def decodestring(s, header=False): function
|
/third_party/PyYAML/lib/yaml/ |
D | constructor.py | 305 return base64.decodestring(value) 511 return base64.decodestring(value)
|
/third_party/python/Misc/NEWS.d/ |
D | 3.9.0a3.rst | 373 Remove ``base64.encodestring()`` and ``base64.decodestring()``, aliases
|
/third_party/python/Doc/whatsnew/ |
D | 3.9.rst | 1003 * ``base64.encodestring()`` and ``base64.decodestring()``, aliases deprecated
|