Skip to content

load does not load changes #147

@zingales

Description

@zingales

load will not load modified functions

if you load a file, modify a function in that file, it will not update the function even if you call load again.

The problem extends to any modification in the file. Once loaded once, it will not load any modifications.

example:
create file bob.j

in file:
function bob()
println("bob")
end

julia> load("bob.j")
julia>bob()
bob
julia>

go to file modify:
println("bob") ---> println("i'm superbob")

julia> load("bob.j")
julia>bob()
bob
julia>

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugIndicates an unexpected problem or unintended behavior

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions