Changelog entry.

This commit is contained in:
Tin Tvrtkovic 2016-05-15 02:04:02 +02:00
parent 88f33a9375
commit 96e217dcd3
1 changed files with 3 additions and 0 deletions

View File

@ -28,6 +28,9 @@ Changes:
- ``__slots__`` have arrived!
Classes now can automatically be `slots <https://docs.python.org/3.5/reference/datamodel.html#slots>`_-style (and save your precious memory) just by passing ``slots=True``.
`#35 <https://github.com/hynek/attrs/issues/35>`_
- ``attr.asdict`` can now produce arbitrary mappings instead of Python ``dict``s
when provided a ``dict_factory`` argument.
`#40 <https://github.com/hynek/attrs/issues/40>`_
----