(
cls: Type[CodecOptions[_DocumentType]],
document_class: Optional[Type[_DocumentType]] = ...,
tz_aware: bool = ...,
uuid_representation: Optional[int] = ...,
unicode_decode_error_handler: Optional[str] = ...,
tzinfo: Optional[datetime.tzinfo] = ...,
type_registry: Optional[TypeRegistry] = ...,
datetime_conversion: Optional[int] = ...,
)
| 255 | datetime_conversion: Optional[int] |
| 256 | |
| 257 | def __new__( |
| 258 | cls: Type[CodecOptions[_DocumentType]], |
| 259 | document_class: Optional[Type[_DocumentType]] = ..., |
| 260 | tz_aware: bool = ..., |
| 261 | uuid_representation: Optional[int] = ..., |
| 262 | unicode_decode_error_handler: Optional[str] = ..., |
| 263 | tzinfo: Optional[datetime.tzinfo] = ..., |
| 264 | type_registry: Optional[TypeRegistry] = ..., |
| 265 | datetime_conversion: Optional[int] = ..., |
| 266 | ) -> CodecOptions[_DocumentType]: |
| 267 | ... |
| 268 | |
| 269 | # CodecOptions API |
| 270 | def with_options(self, **kwargs: Any) -> CodecOptions[Any]: |
nothing calls this directly
no test coverage detected