From c74c9b1f1e1545fc72984c197a66706418063aef Mon Sep 17 00:00:00 2001 From: Christopher Armstrong Date: Wed, 16 Sep 2015 15:30:38 -0500 Subject: [PATCH] changelog --- docs/changelog.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/changelog.rst b/docs/changelog.rst index fe4af322..05cfc10a 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -16,6 +16,7 @@ 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] ` - speed up object creation when attribute validators are used `[28] `_