Ксиров Карен СФ AnnoDoc 18752
Казаринов Андрей Вячеславович, 620 группа AnnoDoc 15877
f1class AnnoDoc(type):f1class AnnoDoc(type):
22
n3    def __new__(cls, name, bases, dct):n3    def __new__(cls, name, bases, class_dict):
4        new_cls = super().__new__(cls, name, bases, dct)4        new_cls = super().__new__(cls, name, bases, class_dict)
5        doc_lines = []5        doc_lines = []
6        if new_cls.__doc__:6        if new_cls.__doc__:
7            doc_lines.append(new_cls.__doc__.strip())7            doc_lines.append(new_cls.__doc__.strip())
n8        annotations = {}n8        anns = {}
9        for attr, annotation in dct.get('__annotations__', {}).items():9        for key, value in class_dict.get('__annotations__', {}).items():
10            if isinstance(annotation, str):10            if isinstance(value, str):
11                doc_lines.append(f'{attr}: {annotation}')11                doc_lines.append(f'{key}: {value}')
12                if attr in dct:12                if key in class_dict:
13                    annotations[attr] = type(dct[attr])13                    anns[key] = type(class_dict[key])
14                else:
15                    pass
14            else:16            else:
n15                annotations[attr] = annotationn17                anns[key] = value
16        new_cls.__doc__ = '\n'.join(doc_lines) if doc_lines else None18        new_cls.__doc__ = '\n'.join(doc_lines) if doc_lines else None
t17        new_cls.__annotations__ = annotationst19        new_cls.__annotations__ = anns
18        return new_cls20        return new_cls
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op