zeroswan

Results 6 comments of zeroswan

Is anyone working on this?

yes, I'm interested in it. but...should I add type hints to original code? it may be a more secure approach to add *.pyi file, in the same directory of .py...

hello, i submitted a PR. unittests are passed. but coverage declined, Because there are many `@overload` functions, their body are empty `...` . there is also some plint errors, most...

sorry for late reply. I'm trying mypy these days. but there's a problem about typing.overload, for example ```python @overload def head_option(self: "Sequence[Iterable[_T1]]") -> Optional["Sequence[_T1]"]: ... @overload def head_option(self: "Sequence[_T2]") ->...

**about pylint errors** I run travis.sh locally, found: 1. coverage declined , because of some overload function. 2. some pylint error, are all false positives. what should I do next?...

@EntilZha do you mean `_T_co = TypeVar("_T_co", covariant=True)` ? The underscore at the beginning is to prevent others from importing. I see many stub files named their TypeVars like this....