Árni Már Jónsson
Árni Már Jónsson
Experiments in making ParamSpec's work with the crochet typing support.
Hi, We just started integrating the 2.0 release into our codebase, and hit one issue. The `crochet.mypy` plugin is not checking if the function return value is a coroutine, it...
Just stumbled across an interesting issue. The `kw_only` flag seems to break pickling of objects. E.g.: ```python import attr import pickle @attr.s(auto_exc=True, kw_only=False) class Positional(Exception): field: int = attr.ib() @attr.s(slots=False,...
It seems that https://github.com/twisted/klein/blob/master/src/klein/_resource.py#L278 is doing a value comparison with `NOT_DONE_YET`, similarly to twisted.web in https://twistedmatrix.com/trac/ticket/9597 I get these warning regularly: `BytesWarning: Comparison between bytes and int` when running in...
Fix #119
Testbed to investigate https://github.com/zheller/flake8-quotes/issues/119
**Bug Report** When using "yield from" for an iterable instance the type inference if wrong. Normal for-loop iteration over the same iterable does work though. **To Reproduce** ```python from typing...