| 555 | # The following checks support of class wrappers, which |
| 556 | # requires the comparisons of `x.__class__` instead of `type(x)` |
| 557 | class DataFrameWrapper: |
| 558 | __class__ = pd.DataFrame |
| 559 | |
| 560 | wrap = DataFrameWrapper() |
| 561 | wrap.dtypes = None |
no outgoing calls
searching dependent graphs…