-
Hi,
In the python style guide the part on comments only mention that the types should be described. However it doesn't mention the capability to declare types in docstrings e.g.
`"""Args:
my_house…
-
When I run mypy over [qutebrowser](https://github.com/The-Compiler/qutebrowser), things look good initially (apart from some use of type annotations for my own purposes):
```
$ mypy -m qutebrowser
qu…
-
[Maybe my google-fu or my manual-reading skills are poor, I apology beforehand if that's the case]
I read some things about [instance and class attributes](http://mypy.readthedocs.org/en/latest/class…
-
It would be nice to allow for type hinting within a function, above an assignment.
(via https://github.com/davidhalter/jedi/issues/421#issuecomment-45447033)
-
Some linters get mad about long lines, even comments, so we would like to be able to break long `# type:` comments into multiple lines. This is especially desirable for function annotations if the fun…
-
Python 3.5 is a stable release that introduces Type Hints as described in PEP484 https://www.python.org/dev/peps/pep-0484/
``` python
def greeting(name: str) -> str:
return 'Hello ' + name
```
…
-
-
I think the following should raise an error, but it doesn't. I imagine it has to do with the call to `super`. Is there something obvious I'm missing?
``` python
class IntList(list):
def __init__(…
-
I found the pytagger repo on your account. You might want to update the README to point there.
-
See https://github.com/JukkaL/mypy/issues/604