Skip to content

Commit

Permalink
FIX-#7351: Add ipython method calls to non-lookup list (#7352)
Browse files Browse the repository at this point in the history
Signed-off-by: Devin Petersohn <[email protected]>
  • Loading branch information
devin-petersohn authored Jul 31, 2024
1 parent a40cef7 commit 621f49e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion modin/pandas/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__",
Expand Down

0 comments on commit 621f49e

Please sign in to comment.