From 1c6a8e59e0baa88163ca3fdcd1028605facc9adc Mon Sep 17 00:00:00 2001 From: Hynek Schlawack Date: Mon, 23 May 2016 17:33:13 +0200 Subject: [PATCH] Fix changelog --- CHANGELOG.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 865dd910..52731d73 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -22,13 +22,13 @@ Backward-incompatible changes: Changes: ^^^^^^^^ -- Allow the case of initializing attributes that are set to ``init=False``. - This allows for clean initializer parameter lists while being able to initialize attributes to default values. - `#32 `_ - ``__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 with a ``dict_factory`` argument. +- Allow the case of initializing attributes that are set to ``init=False``. + This allows for clean initializer parameter lists while being able to initialize attributes to default values. + `#32 `_ +- ``attr.asdict`` can now produce arbitrary mappings instead of Python ``dict``\ s when provided with a ``dict_factory`` argument. `#40 `_ - Multiple performance improvements.