The problem is that sess is just seen as an iterable in this case, so is taken as a list, discarding its labels.
I knew it was not implemented (see discussion in #180) but I did not realize that the fact that it seemed to work can lead to silent data garbage when users use this and do not realize the labels do not correspond to the correct data anymore.
I think that fixing this is simply a matter of adding the following lines to stack:
The problem is that sess is just seen as an iterable in this case, so is taken as a list, discarding its labels.
I knew it was not implemented (see discussion in #180) but I did not realize that the fact that it seemed to work can lead to silent data garbage when users use this and do not realize the labels do not correspond to the correct data anymore.
I think that fixing this is simply a matter of adding the following lines to stack:
We might want to have a default axis name in that case:
but I am unsure about this, and if we go down that path, we should have "sensible" default labels in other places too.