-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
New issue
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
Update Error Docs #11009
Update Error Docs #11009
Conversation
|
||
.. function:: OutOfMemoryError() | ||
|
||
A generated syntax tree was too large for the available memory. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is this specific to "syntax tree"s or can it also happen for say very large arrays?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You are right, this applies more than just ASTs. I will update and squash.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@tkelman updated with more general wording.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I still see "A generated syntax tree was too large for the available memory."?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It should be fixed now. For some reason I need to remove helpdb.jl on my system to get it to update.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah looks better now - some of the makefile dependencies are probably a little off for the doc building.
Last minor nit, I think "a wraparound" would be better than "an wraparound"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, that typo should be fixed now!
…rs. [ci skip] Closes JuliaLang#7766. Also update helpdb.jl.
As discussed in #7766, this changes the documentation of subtypes of exceptions from
data
tofunction
. It also provides documentation for all exported Exception types, and their corresponding arguments. I tried to provide general explanations for the errors based on how I saw they were being used inbase/
orsrc/
.