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
When displaying some custom julia struct in IPython, the string output is wrapped. But when I try jl.display instead, the struct is displayed correctly as expected.
I'm wondering what we can do to make the printing work as the same in Julia REPL.
The text was updated successfully, but these errors were encountered:
I've thought about this before and AFAIK there is no generic method to get the display size of a Python file object, so this can't be solved in general.
However, as a special case, we could check if the file object is actually stdout or stderr, and if so use its display size.
When displaying some custom julia struct in IPython, the string output is wrapped. But when I try
jl.display
instead, the struct is displayed correctly as expected.I'm wondering what we can do to make the printing work as the same in Julia REPL.
The text was updated successfully, but these errors were encountered: