(s)
| 22310 | return "()" |
| 22311 | |
| 22312 | def make_utf16be(s): |
| 22313 | r = bytearray([254, 255]) + bytearray(s, "UTF-16BE") |
| 22314 | return "<" + r.hex() + ">" # brackets indicate hex |
| 22315 | |
| 22316 | # The following either returns the original string with mixed-in |
| 22317 | # octal numbers \nnn for chars outside the ASCII range, or returns |
no outgoing calls
no test coverage detected
searching dependent graphs…