Deokjae Lee
Results
2
comments of
Deokjae Lee
Thanks. It works after setting the accessibility permission.
```python Int = NewType('Int', int) print(type(Int)) # print(Int.__supertype__) # ``` An instance of `Int` is actually an instance of `int`. However, the type `Int` itself is alive at runtime. What...