diff options
| author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2018-11-01 01:24:12 +0900 |
|---|---|---|
| committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2018-11-01 01:24:12 +0900 |
| commit | 8b687ac30481e7204677138d8f2f3b49e354963e (patch) | |
| tree | 7723d959db00959780dc7f9f56c673cd47d7cd97 /tests/typing_test_data.py | |
| parent | e8e0f93c3fc7a9f8be4a91c13c6ec49672347a1e (diff) | |
| parent | f4d7b2e60e4352aac6e19dad16f39328bf493ff4 (diff) | |
| download | sphinx-git-8b687ac30481e7204677138d8f2f3b49e354963e.tar.gz | |
Merge branch '1.8'
Diffstat (limited to 'tests/typing_test_data.py')
| -rw-r--r-- | tests/typing_test_data.py | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/tests/typing_test_data.py b/tests/typing_test_data.py index 183d075b6..2e0e27ced 100644 --- a/tests/typing_test_data.py +++ b/tests/typing_test_data.py @@ -76,10 +76,15 @@ def f14() -> Any: pass -def f15(arg1, arg2, *, arg3=None, arg4=None): +def f15(x: "Unknown", y: "int") -> Any: pass -def f16(*, arg3, arg4): + +def f16(arg1, arg2, *, arg3=None, arg4=None): + pass + + +def f17(*, arg3, arg4): pass |
