本文整理匯總了Python中mypy_extensions.TypedDict方法的典型用法代碼示例。如果您正苦於以下問題:Python mypy_extensions.TypedDict方法的具體用法?Python mypy_extensions.TypedDict怎麽用?Python mypy_extensions.TypedDict使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類mypy_extensions
的用法示例。
在下文中一共展示了mypy_extensions.TypedDict方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: test_typed_dict
# 需要導入模塊: import mypy_extensions [as 別名]
# 或者: from mypy_extensions import TypedDict [as 別名]
def test_typed_dict(self):
TDOld = TypedDict("TDOld", {'x': int, 'y': int})
self.assertEqual(typed_dict_keys(TD), {'x': int, 'y': int})
self.assertEqual(typed_dict_keys(TDOld), {'x': int, 'y': int})
self.assertIs(typed_dict_keys(dict), None)
self.assertIs(typed_dict_keys(Other), None)
self.assertIsNot(typed_dict_keys(TD), TD.__annotations__)
示例2: TypedDict
# 需要導入模塊: import mypy_extensions [as 別名]
# 或者: from mypy_extensions import TypedDict [as 別名]
def TypedDict(name, attrs, total=True): # type: ignore
return Dict[Any, Any]