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 resulting list is both filled by the handler and by a call from the evaluated code.
The problem is that it seems that the in some cases, the call happens too early:
> cat(paste(l, collapse="\n"))
call: 1 # No plot has triggered the handler -> call is first
call: 2 # second loop ...
plot # but the plot from the first loop is only now being handled
call: 3 # again a too early call
plot # plot from the second loop
call: 4
plot
call: 5
plot
plot
In the IRkernel, we encountered a problem were we couldn't explain the order of the output of a evaluated loop. The situation is basically this:
-> The resulting list is both filled by the handler and by a call from the evaluated code.
The problem is that it seems that the in some cases, the call happens too early:
When "unrolling" the loop, it looks fine:
Any idea why this happens and if there is any way to get this in the right order?
The text was updated successfully, but these errors were encountered: