diff --git a/HISTORY.md b/HISTORY.md index fd695e21..e695dbf5 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -19,6 +19,7 @@ Our backwards-compatibility policy can be found [here](https://github.com/python - Add a [Migrations](https://catt.rs/en/latest/migrations.html) page, with instructions on migrating changed behavior for each version. ([#577](https://github.com/python-attrs/cattrs/pull/577)) - [`typing.Self`](https://docs.python.org/3/library/typing.html#typing.Self) is now supported in _attrs_ classes, dataclasses, TypedDicts and the dict NamedTuple factories. + See [`typing.Self`](https://catt.rs/en/latest/defaulthooks.html#typing-self) for details. ([#299](https://github.com/python-attrs/cattrs/issues/299) [#627](https://github.com/python-attrs/cattrs/pull/627)) - Expose {func}`cattrs.cols.mapping_unstructure_factory` through {mod}`cattrs.cols`. - Some `defaultdicts` are now [supported by default](https://catt.rs/en/latest/defaulthooks.html#defaultdicts), and diff --git a/docs/defaulthooks.md b/docs/defaulthooks.md index fb4a190c..f5af4594 100644 --- a/docs/defaulthooks.md +++ b/docs/defaulthooks.md @@ -662,6 +662,20 @@ Protocols are unstructured according to the actual runtime type of the value. Attributes annotated using [the Self type](https://docs.python.org/3/library/typing.html#typing.Self) are supported in _attrs_ classes, dataclasses, TypedDicts and NamedTuples (when using [the dict un/structure factories](customizing.md#customizing-named-tuples)). +```{doctest} +>>> from typing import Self + +>>> @define +... class LinkedListNode: +... element: int +... next: Self | None = None + +>>> cattrs.unstructure(LinkedListNode(1, LinkedListNode(2, None))) +{'element': 1, 'next': {'element': 2, 'next': None}} +>>> cattrs.structure({'element': 1, 'next': {'element': 2, 'next': None}}, LinkedListNode) +LinkedListNode(element=1, next=LinkedListNode(element=2, next=None)) +``` + ```{note} Attributes annotated with `typing.Self` are not supported by the BaseConverter, as this is too complex for it. ```