diff --git a/modin/pandas/base.py b/modin/pandas/base.py index 51c9cd8156f..04dd845915c 100644 --- a/modin/pandas/base.py +++ b/modin/pandas/base.py @@ -99,7 +99,13 @@ # Do not lookup certain attributes in columns or index, as they're used for some # special purposes, like serving remote context -_ATTRS_NO_LOOKUP = {"__name__", "_cache"} +_ATTRS_NO_LOOKUP = { + "__name__", + "_cache", + "_ipython_canary_method_should_not_exist_", + "_ipython_display_", + "_repr_mimebundle_", +} _DEFAULT_BEHAVIOUR = { "__init__",