(cls_name, attr)
| 124 | |
| 125 | |
| 126 | def _get_registry_entry(cls_name, attr): |
| 127 | cls_name = cls_name.split(".")[-1] |
| 128 | reg = Registry._inst # pylint: disable=protected-access |
| 129 | if cls_name in reg.table: |
| 130 | entry = reg.table[cls_name] |
| 131 | return getattr(entry, attr, None) |
| 132 | return None |
| 133 | |
| 134 | |
| 135 | def from_doc(node): |