Andy Dienes

Results 134 comments of Andy Dienes

is it true that `include("file.jl")` does the same thing as ` (eval ∘ Meta.parse ∘ String ∘ read)("file.jl")` ? I think current behavior at least here looks like yes, right?

bisected to https://github.com/JuliaLang/julia/pull/52338

note that https://github.com/JuliaLang/julia/pull/58522 fixed the second reproducer here (by changing `flatten`)

@emilhedevang this is not something that's likely to be fixed by accident; it will require nontrivial attention from someone with expertise in compiler internals. that is to say, you are...

with https://github.com/JuliaLang/julia/pull/58440, (on larger inputs, since perf hasn't changed much for small inputs) : ``` julia> va = [ZZ(12345)^i for i in 200:240] ; @b hash($va) 6.438 μs # same...

incoming opinion from the peanut gallery: I generally associate unit tests (aka everything running under `test/runtests.jl`) to test mechanics and correctness of the code. then other passes can handle other...

ref: https://github.com/JuliaLang/julia/pull/47093

this is not necessarily what Julia should nor, nor is it necessarily a reasonable assumption but purely as a matter of practicality, I suspect most users would expect that in...

yes --- and I am currently presuming (maybe incorrectly) that it was removed under the perspective of "this is no longer illegal." but from the perspective of user-friendliness, this does...