You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Remove is_classmethod_class slot from CallableType (#16151)
This slot was not used anywhere:
```
» ag is_classmethod_class .
```
Moreover, since it was not initialized this code was failing with
`AttributeError`:
```python
x: CallableType
for i in dir(x):
print(i, getattr(x, i)) # failing on `is_classmethod_class`
```
0 commit comments