(self)
| 230 | return type.__new__(cls, name, (object,), {'name': name}) |
| 231 | |
| 232 | def __repr__(self): |
| 233 | return "[CUSTOM REPR FOR CLASS %s]" % self.name |
| 234 | |
| 235 | |
| 236 | ClassWithMeta = MetaClass('ClassWithMeta') |
nothing calls this directly
no outgoing calls
no test coverage detected