David Euresti

Results 4 issues of David Euresti

Mostly wondering if this is expected/desired: ``` python import attr @attr.s(kw_only=True) class A: a = attr.ib(kw_only=False) A(1) # Error ```

Bug

``` class A: @property def __class__(self): return int @__class__.setter def __class__(self, __type): raise NotImplementedError() @property def blah(self): return int @blah.setter def blah(self, __type): raise NotImplementedError() ``` This fails like this:...

I've got a test case that looks like this: ``` - case: testAttrsNewStyleClassPy2 mypy_config: python_version = 2.7 main: | import attr @attr.s class Good(object): pass @attr.s class Bad: # E:...

American Express returns some extra fields for certain calls. (e.g. `JOHN SMITH` inside of `CCCLOSING`. Is there any way to a) Not have this error the entire parser b) Include...