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