Results 3 issues of Tom Booth

Related issue: https://github.com/cython/cython/issues/4927 ``` pip install python-pkcs11 ``` Results in: ``` pkcs11/_pkcs11.c:45689:20: error: lvalue required as left operand of assignment 45689 | CYTHON_ATOMICS = __Pyx_PyObject_IsTrue(o); if (unlikely((CYTHON_ATOMICS == (int)-1) &&...

``` import attr @attr.s class Bar: b = attr.ib() @classmethod def make(cls, one: int) -> 'Bar': return cls(one) @attr.s class Foo: a = attr.ib(converter=Bar.make) ``` `error: Unsupported converter, only named...

feature
priority-1-normal
topic-attrs

Repro: ``` >>> from rainbow_logging_handler import * >>> DATE_FORMAT_STRING = '%m/%d/%Y %I:%M:%S %p' >>> from logging import * >>> f = Formatter('[%(asctime)s] %(name)s %(funcName)s():%(lineno)d\t%(message)s', datefmt=DATE_FORMAT_STRING) >>> h = RainbowLoggingHandler(sys.stdout) >>>...