2
與python 3.5.1。並使用mypy的當前安裝的git, mypy標記錯誤1 & 2,但它不報告3mypy未檢測到基本類型錯誤
什麼我做錯了,或者這是一個錯誤,或者這是一個已知的問題?
import typing
def test_ordered_dict(od: typing.Dict[str,int]) -> typing.Dict[str,int]:
return 1 #type error 1
a = test_ordered_dict(1) #type error 2
def test_me():
a = test_ordered_dict(1) # type error 3 is not reported
你可以使用'--check-untyped-defs'來捕獲這個錯誤。 – dpercy