(c: str)
| 57 | |
| 58 | |
| 59 | def can_encode(c: str) -> bool: |
| 60 | try: |
| 61 | c.encode(getpreferredencoding()) |
| 62 | return True |
| 63 | except UnicodeEncodeError: |
| 64 | return False |
| 65 | |
| 66 | |
| 67 | def supports_box_chars() -> bool: |
nothing calls this directly
no test coverage detected