(
bson_bytes: bytes | memoryview, codec_options: CodecOptions[RawBSONDocument]
)
| 184 | |
| 185 | @staticmethod |
| 186 | def _inflate_bson( |
| 187 | bson_bytes: bytes | memoryview, codec_options: CodecOptions[RawBSONDocument] |
| 188 | ) -> Mapping[str, Any]: |
| 189 | return _inflate_bson(bson_bytes, codec_options, raw_array=True) |
| 190 | |
| 191 | |
| 192 | DEFAULT_RAW_BSON_OPTIONS: CodecOptions[RawBSONDocument] = DEFAULT.with_options( |
nothing calls this directly
no test coverage detected