MCPcopy
hub / github.com/marshmallow-code/marshmallow / deserialize

Method deserialize

src/marshmallow/fields.py:344–350  ·  view source on GitHub ↗
(
        self,
        value: None,
        attr: str | None = None,
        data: typing.Mapping[str, typing.Any] | None = None,
        **kwargs,
    )

Source from the content-addressed store, hash-verified

342 # If value is None, None may be returned
343 @typing.overload
344 def deserialize(
345 self,
346 value: None,
347 attr: str | None = None,
348 data: typing.Mapping[str, typing.Any] | None = None,
349 **kwargs,
350 ) -> None | _InternalT: ...
351
352 # If value is not None, internal type is returned
353 @typing.overload

Calls 3

_validate_missingMethod · 0.95
_deserializeMethod · 0.95
_validateMethod · 0.95