(
data: Any,
view: Any, # noqa: ARG001
position: int,
obj_end: int,
opts: CodecOptions[Any],
raw_array: bool = False,
)
| 534 | if _USE_C: |
| 535 | |
| 536 | def _element_to_dict( |
| 537 | data: Any, |
| 538 | view: Any, # noqa: ARG001 |
| 539 | position: int, |
| 540 | obj_end: int, |
| 541 | opts: CodecOptions[Any], |
| 542 | raw_array: bool = False, |
| 543 | ) -> Tuple[str, Any, int]: |
| 544 | return cast( |
| 545 | "Tuple[str, Any, int]", |
| 546 | _cbson._element_to_dict(data, position, obj_end, opts, raw_array), |
| 547 | ) |
| 548 | |
| 549 | else: |
| 550 |
no test coverage detected