Home
last modified time | relevance | path

Searched refs:decorated_classmethod (Results 1 – 1 of 1) sorted by relevance

/external/python/cpython3/Lib/test/
Dtest_functools.py2542 def decorated_classmethod(cls, arg: int) -> str: member in TestSingleDispatch.test_double_wrapped_methods.WithoutSingleDispatch
2559 def decorated_classmethod(cls, arg: int) -> str: member in TestSingleDispatch.test_double_wrapped_methods.WithSingleDispatch
2575 WithoutSingleDispatch.decorated_classmethod(5),
2576 WithSingleDispatch.decorated_classmethod(5)
2579 self.assertEqual(WithSingleDispatch.decorated_classmethod(5), '5')
2597 WithSingleDispatch.decorated_classmethod,
2598 WithSingleDispatch().decorated_classmethod
2613 WithSingleDispatch.decorated_classmethod.__name__,
2617 WithSingleDispatch().decorated_classmethod.__name__,