Швец Игорь Станиславович 411 Казахстанский филиал AnnoDoc 16967
Жан-Юль-Ян Азель, 414 группа (КФ) AnnoDoc 17163
f1class AnnoDoc(type):f1class AnnoDoc(type):
22
n3    def __new__(cls, name, bases, dct):n3    def __new__(metacls, cls_name, cls_bases, cls_dict):
4        new_cls = super().__new__(cls, name, bases, dct)4        cls_instance = super().__new__(metacls, cls_name, cls_bases, cls
 >_dict)
5        doc_lines = []5        doc_parts = []
6        if new_cls.__doc__:6        if cls_instance.__doc__:
7            doc_lines.append(new_cls.__doc__)7            doc_parts.append(cls_instance.__doc__)
8        annotations = {}8        annots = {}
9        for key, annotation in dct.get('__annotations__', {}).items():9        for attr_name, attr_type in cls_dict.get('__annotations__', {}).
 >items():
10            if isinstance(annotation, str):10            if isinstance(attr_type, str):
11                doc_lines.append(f'{key}: {annotation}')11                doc_parts.append(f'{attr_name}: {attr_type}')
12                if key not in dct:12                if attr_name not in cls_dict:
13                    continue13                    continue
t14            annotations[key] = type(dct[key]) if key in dct else annotatt14            annots[attr_name] = type(cls_dict[attr_name]) if attr_name i
>ion>n cls_dict else attr_type
15        new_cls.__doc__ = '\n'.join(doc_lines) if doc_lines else None15        cls_instance.__doc__ = '\n'.join(doc_parts) if doc_parts else No
 >ne
16        new_cls.__annotations__ = annotations16        cls_instance.__annotations__ = annots
17        return new_cls17        return cls_instance
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op