-
-
So I've been able to gather that mypy has a python 2 mode, triggered via --py2, and that the way to annotate types in this mode was via comments.
I've been using pycharm on one side, and jedi for com…
-
Hi,
I am wondering that there are many (all?) stub files among the typeshed/third_party/2/ folder which don't contain any Python 2 compatible type hints at all. This stands in contrast to the [type…
-
2.0b4 and master
```
import matplotlib as mpl
from matplotlib import pyplot as plt
import numpy as np
mpl.rcdefaults()
mpl.rcParams["hist.bins"] = "auto"
np.random.seed(1)
x = np.random.rand(1000)
…
-
Really happy to see the improvement for PEP484 type hint, on linter branch
Thanks a lot!
btw, Is there a better workaround than this:
```
def test(e):
e = e #type: list
e.append(1)
```
-
So, this might be asking for an addition to pep484.
Basically, I don't like the two formats that are proposed / implemented for python2.
I will probably have to live with python2 for quite some while …
-
Hi,
I was perusing the mypy repo and I discovered that mypy can parse docstrings. That's great! The support, however, is currently pretty basic. For starters, mypy currently only supports the googl…
-
The vendored submodule version is over a year old—is there a reason it's stuck at old version, other than maintainer time to make sure JediHTTP works with a current version?
-
I am just starting to use mypy and PEP484 type hints since I was tired of not having types to reason about/auto check. I am wondering what do common users have in their day to day use that makes it ea…
-
Hello! I've reinstalled my OS (Arch Linux) and I see, that I can't autocompletion for my local modules from not root file. I've created clear project without any framework or something else. And I can…