test: do not use "object" for the type annotation

Usually we use "Any" type for the type annotation which takes any kinds
of types, instead of "object" class.  So this replaces "object" to "Any"
in our example.
This commit is contained in:
Takeshi KOMIYA
2020-11-08 12:57:53 +09:00
parent 78e8a703fd
commit e31189d970
2 changed files with 3 additions and 3 deletions

View File

@@ -490,7 +490,7 @@ def test_autodoc_typehints_signature(app):
'.. py:module:: target.typehints',
'',
'',
'.. py:class:: Math(s: str, o: object = None)',
'.. py:class:: Math(s: str, o: Any = None)',
' :module: target.typehints',
'',
'',