Add tests for PyParameterInfoHandler about overloads in imported module

This commit is contained in:
Semyon Proshev
2017-02-22 15:23:26 +03:00
parent 8ad1350260
commit 8071da55be
7 changed files with 56 additions and 0 deletions
@@ -0,0 +1,3 @@
import b
b.foo(<arg1>)
@@ -0,0 +1,2 @@
def foo(a, b):
pass
@@ -0,0 +1,7 @@
from typing import overload
@overload
def foo(a: str, b: str) -> str: ...
@overload
def foo(a: int, b: int) -> str: ...