@cached_property doctest не обнаружен
#python #python-3.x #doctest Вопрос: У меня есть код. a.py from functools import cached_property, cache import doctest class C1: def test_1(self): """ >>> C1().test_1() 'f' """ return "f" @property def test_2(self):…