| 560 | # The following checks support of class wrappers, which |
| 561 | # requires the comparisons of `x.__class__` instead of `type(x)` |
| 562 | class DataFrameWrapper: |
| 563 | __class__ = pd.DataFrame |
| 564 | |
| 565 | wrap = DataFrameWrapper() |
| 566 | wrap.dtypes = None |
no outgoing calls