From 96e217dcd329c1447ea3bc502cb978f56f5e2f1a Mon Sep 17 00:00:00 2001 From: Tin Tvrtkovic Date: Sun, 15 May 2016 02:04:02 +0200 Subject: [PATCH] Changelog entry. --- CHANGELOG.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 77faa39a..fe6c18e0 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -28,6 +28,9 @@ Changes: - ``__slots__`` have arrived! Classes now can automatically be `slots `_-style (and save your precious memory) just by passing ``slots=True``. `#35 `_ +- ``attr.asdict`` can now produce arbitrary mappings instead of Python ``dict``s + when provided a ``dict_factory`` argument. + `#40 `_ ----