(value: object, /)
| 60 | @cython.inline |
| 61 | @cython.cfunc |
| 62 | def _is_mapping(value: object, /) -> cython.bint: |
| 63 | return ( |
| 64 | isinstance(value, dict) |
| 65 | or isinstance(value, Mapping) |
| 66 | # only do immutabledict or abc.__instancecheck__ for Mapping after |
| 67 | # we've checked for plain dictionaries and would otherwise raise |
| 68 | ) |
| 69 | |
| 70 | |
| 71 | def _distill_params_20( |
no outgoing calls
no test coverage detected