(self, *, precise: bool = False)
| 4087 | return None |
| 4088 | |
| 4089 | def is_metaclass(self, *, precise: bool = False) -> bool: |
| 4090 | return ( |
| 4091 | self.has_base("builtins.type") |
| 4092 | or self.fullname == "abc.ABCMeta" |
| 4093 | or (self.fallback_to_any and not precise) |
| 4094 | ) |
| 4095 | |
| 4096 | def has_base(self, fullname: str) -> bool: |
| 4097 | """Return True if type has a base type with the specified name. |
no test coverage detected