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
Did you find a bug in datatable, or maybe the bug found you?
I was excited to see the interactive mode turned off by default (in the latest commit). So, I wanted to test it out. So, I compiled from master branch today (on a Mac). Then ran the following code:
DT = dt.Frame(A=range(5))
DT
I was expecting it to print the following, without pausing in the end:
Out[3]: A
-- --
0 0
1 1
2 2
3 3
4 4
[5 rows x 1 column]
instead it prints the following:
Out[3]: A
-- --
0 0
1 1
2 2
3 3
4 4
[5 rows x 1 column]
Press q to quit ↑←↓→ to move wasd to page t to toggle types g to jump
And waits for keyboard input. The version string shows 0.8.0 at the moment.
I am using a PyCharm IDE. It's running in an ipython shell. This is what I see at start up:
Python 3.7.0 (default, Jun 28 2018, 07:39:16)
Type 'copyright', 'credits' or 'license' for more information
IPython 7.4.0 -- An enhanced Interactive Python. Type '?' for help.
PyDev console: using IPython 7.4.0
Python 3.7.0 (default, Jun 28 2018, 07:39:16)
[Clang 4.0.1 (tags/RELEASE_401/final)] on darwin
I was excited to see the interactive mode turned off by default (in the latest commit). So, I wanted to test it out. So, I compiled from master branch today (on a Mac). Then ran the following code:
I was expecting it to print the following, without pausing in the end:
instead it prints the following:
And waits for keyboard input. The version string shows 0.8.0 at the moment.
The interactive options seems to be set to False:
Any suggestion to turn off the interactive mode? The DT.view(interactive=False) works, but that's a bit much to type every time.
Thanks!
The text was updated successfully, but these errors were encountered: