-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PR: Support DatetimeIndex in Variable Explorer #3849
Conversation
I actually wrote this a while ago, while we were in freeze for the 3.0 release. There are a number of places that have to be changed to support a new type in the variable explorer. There are also a number of issues which ask to support more types: #3758, #3562, #2824, #2510, #2355, etc. Can we make it easier to add support for a new type, possibly in a plugin? |
That's my plan for Spyder 4.0 :-) I think we could add a function called But for that we need to restructure how we dispatch objects to viewers in the Variable Explorer code, so it can be easily extended. |
@jitseniesen, this has conflicts now. I'm leaving this for Spyder 4.0 because your PR is against master. If you want this for Spyder 3, please redo it against 3.x :-) |
9cbd94d
to
7581d1d
Compare
PR redone against 3.x and conflicts resolved. |
Thanks a lot! Just in time for 3.1 :-) |
Support variables of panda's DatetimeIndex type in variable editor, and use the dataframe editor to display them. Fixes #3380.