None
(obj, errors="strict")
| 445 | |
| 446 | |
| 447 | def utf_16_be_encode(obj, errors="strict"): |
| 448 | """None""" |
| 449 | res = PyUnicode_EncodeUTF16(obj, len(obj), errors, "big") |
| 450 | res = bytes(res) |
| 451 | return res, len(obj) |
| 452 | |
| 453 | |
| 454 | def utf_16_le_decode(data, errors="strict", final=0): |
nothing calls this directly
no test coverage detected