Andrei Bodrov
Andrei Bodrov
Hello! Thanks again for the great library! :) After answering in a couple of issues regarding default values on class-level and debugging another mess with self-using factory which was fixed...
I'd like to move the discussion from [converter decorator PR](https://github.com/python-attrs/attrs/pull/404) to this issue. I think converters are semantically closer to `on_setattr` and `validator` than `default`. E.g. `attr.ib(converter=...)` allows you to...
Seems like `attr.s`-level `on_setattr` is applied to all attributes including inherited, but doesn't become a part of `Attribute` definition (to save memory in `sa_attrs` dictionary, as far as I understand):...
I believe I'm not the only one who will struggle with behavior of `Callable` type aliases. I hope if this is added to the documentation - some people will save...
**Bug Report** A `Callable` type alias is handled like usual generic, not as `Callable`. This does not allow to define a type alias for a decorator. It can be handled...