| 1 | __author__ = 'Chetan' |
| 2 | |
| 3 | class MyInt(type): |
| 4 | |
| 5 | def __call__(cls, *args, **kwds): |
| 6 | print("***** Here's My int *****", args) |
| 7 | print("Now do whatever you want with these objects...") |
| 8 | return type.__call__(cls, *args, **kwds) |
| 9 | |
| 10 | class int(metaclass=MyInt): |
| 11 |
nothing calls this directly
no outgoing calls
no test coverage detected