(mcls)
| 267 | |
| 268 | class A(type): |
| 269 | def __new__(mcls): |
| 270 | assert type(mcls.__new__).__name__ == 'function' |
| 271 | assert type(mcls.mro).__name__ == 'method_descriptor' |
| 272 | assert type(super().__new__).__name__ in ['builtin_function_or_method', 'builtin_method'] |
| 273 | assert type(super().mro).__name__ == 'method_descriptor' |
| 274 | |
| 275 | class B(type): |
| 276 | def x(self): |
no test coverage detected