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
The text was updated successfully, but these errors were encountered:
TheDerivator
changed the title
Only the first 100 columns are suggested in tab completion
QST: Only the first 100 columns are suggested in tab completion
Apr 14, 2021
Thanks for the report @TheDerivator! This issue has come up a few times (the reason for the magic number is performance-related). I agree that something like an option might make more sense - if you have interest in improving this, let's move the discussion to #37996, since it contains a few of the issues and comments that provide some more context
The [:100] in the following code implies that tab completion which relies on dir( ) will only consider the first 100 columns.
Which is better?
pandas/pandas/core/indexes/base.py
Line 760 in 88df92f
The text was updated successfully, but these errors were encountered: