fix markup and use semantic newlines

This commit is contained in:
Christopher Armstrong 2015-11-18 10:53:19 -06:00 committed by Hynek Schlawack
parent c74c9b1f1e
commit eb38403381
1 changed files with 3 additions and 1 deletions

View File

@ -16,7 +16,9 @@ The third digit is only for regressions.
Changes:
^^^^^^^^
- Add a `convert` argument to :func:`attr.ib`, which allows specifying a function to run on arguments. This allows for simple type conversions, e.g. with ``attr.ib(convert=int)``. `[26] <https://github.com/hynek/attrs/issues/26>`
- Add a ``convert`` argument to :func:`attr.ib`, which allows specifying a function to run on arguments.
This allows for simple type conversions, e.g. with ``attr.ib(convert=int)``.
`[26] <https://github.com/hynek/attrs/issues/26>`_
- speed up object creation when attribute validators are used `[28] <https://github.com/hynek/attrs/issues/28>`_