Whether the specified type is mappable to C.
(typ: Any)
| 119 | |
| 120 | |
| 121 | def is_mappable(typ: Any) -> bool: |
| 122 | """Whether the specified type is mappable to C.""" |
| 123 | try: |
| 124 | get_mapped(typ) |
| 125 | return True |
| 126 | except ValueError: |
| 127 | return False |
| 128 | |
| 129 | |
| 130 | def get_py( |
nothing calls this directly
no test coverage detected