Returns a list of C0 control characters as strings. C0 control characters defined as the byte range 0x00-0x1F, and 0x7F.
()
| 3314 | |
| 3315 | |
| 3316 | def control_characters_c0() -> list[str]: |
| 3317 | """Returns a list of C0 control characters as strings. |
| 3318 | C0 control characters defined as the byte range 0x00-0x1F, and 0x7F. |
| 3319 | """ |
| 3320 | return [chr(c) for c in range(0x00, 0x20)] + ["\x7F"] |
| 3321 | |
| 3322 | |
| 3323 | _ROOT_IN_POSIX = hasattr(os, 'geteuid') and os.geteuid() == 0 |
no outgoing calls
searching dependent graphs…