None
(obj, errors="strict")
| 91 | |
| 92 | |
| 93 | def latin_1_encode(obj, errors="strict"): |
| 94 | """None""" |
| 95 | res = PyUnicode_EncodeLatin1(obj, len(obj), errors) |
| 96 | res = bytes(res) |
| 97 | return res, len(obj) |
| 98 | |
| 99 | |
| 100 | # XXX MBCS codec might involve ctypes ? |
nothing calls this directly
no test coverage detected