Home
last modified time | relevance | path

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

/aosp_15_r20/external/python/cpython3/Lib/test/
Dtest_functools.py2639 def decorated_classmethod(cls, arg: int) -> str: member in TestSingleDispatch.test_double_wrapped_methods.WithoutSingleDispatch
2656 def decorated_classmethod(cls, arg: int) -> str: member in TestSingleDispatch.test_double_wrapped_methods.WithSingleDispatch
2672 WithoutSingleDispatch.decorated_classmethod(5),
2673 WithSingleDispatch.decorated_classmethod(5)
2676 self.assertEqual(WithSingleDispatch.decorated_classmethod(5), '5')
2694 WithSingleDispatch.decorated_classmethod,
2695 WithSingleDispatch().decorated_classmethod
2710 WithSingleDispatch.decorated_classmethod.__name__,
2714 WithSingleDispatch().decorated_classmethod.__name__,