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
We recently introduced support for magics: we comment the lines that are line, cell magics, or inline shell commands.
e.g.,:
%timeitsomething()
%cdstuff
! echohello
This works fine in many cases, however, it'll break under others since we're ignoring the arguments passed to the magic. This arguments may contain variables that the given section should use as inputs:
# should consider x and y inputs for this node%timeitx+y
# should consider x as input
! echo $x
The text was updated successfully, but these errors were encountered:
We recently introduced support for magics: we comment the lines that are line, cell magics, or inline shell commands.
e.g.,:
This works fine in many cases, however, it'll break under others since we're ignoring the arguments passed to the magic. This arguments may contain variables that the given section should use as inputs:
The text was updated successfully, but these errors were encountered: