Add changelog entry

This commit is contained in:
Hynek Schlawack 2016-05-22 07:57:07 +02:00
parent 5d4cda8181
commit 5edf483173
2 changed files with 3 additions and 1 deletions

View File

@ -30,6 +30,7 @@ Changes:
`#35 <https://github.com/hynek/attrs/issues/35>`_
- ``attr.asdict`` can now produce arbitrary mappings instead of Python ``dict``s when provided with a ``dict_factory`` argument.
`#40 <https://github.com/hynek/attrs/issues/40>`_
- Multiple performance improvements.
----

View File

@ -421,7 +421,8 @@ def fields(cl):
def _fast_attrs_iterate(inst):
""" Fast internal iteration over the attr descriptors.
"""
Fast internal iteration over the attr descriptors.
Using fields to iterate is slow because it involves deepcopy.
"""