We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
While defining Julia modules inside Pluto notebooks and stumbled upon this bug:
A
B
C
using ..A
This will cause the cells defining B and C to be recalculated "infinitely". More precisely, the notebook eventually crashes with a stack overflow.
As a workaround, I've been using the import keyword, which doesn't seem to cause the same issue.
import
The text was updated successfully, but these errors were encountered:
using
isglobal
Thank you for the detailed report!
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
While defining Julia modules inside Pluto notebooks and stumbled upon this bug:
Steps to reproduce:
A
,B
andC
), each in its own cellA
toB
withusing ..A
A
toC
withusing ..A
This will cause the cells defining
B
andC
to be recalculated "infinitely". More precisely, the notebook eventually crashes with a stack overflow.Video
pluto_bug.mp4
As a workaround, I've been using the
import
keyword, which doesn't seem to cause the same issue.The text was updated successfully, but these errors were encountered: