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
It is unfortunate that the standard python try-catch style works fine in Julia but silently catches too much
>>> try:
... foo
... except NameError:
... print("Got a name error")
...
Got a name error
julia> try
foo
catch NameError
println("Got a name error")
end
Got a name error
It is unfortunate that the standard python try-catch style works fine in Julia but silently catches too much
See JuliaStats/Statistics.jl#147 (comment) for an example of this in the wild (in a stdlib, my fault)
The text was updated successfully, but these errors were encountered: