Jacob Bandes-Storch
Jacob Bandes-Storch
`get_signatures` seems to recognize `def __init__(self, ...)` methods, but does not recognize the [`def __new__(cls, ...)`](https://docs.python.org/3/reference/datamodel.html#object.__new__) static method: ```py >>> jedi.Script("class C:\n def __init__(self, a: int):\n pass\nC(").get_signatures(4,2) [] ``` ```py...
Resolves #566
[unbound-method] Should prevent conforming to a bound-style interface method with an unbound method
- [x] I have tried restarting my IDE and the issue persists. - [x] I have updated to the latest version of the packages. - [x] I have [read the...