Closed
Description
On Julia 0.7.0-DEV.4012:
module Foo
import REPL
foo(x) = x
end
julia> names(Foo; all=true, imported=false)
8-element Array{Symbol,1}:
Symbol("#eval")
Symbol("#foo")
Symbol("#include")
:Foo
:REPL
...
Unless I am missing something, REPL
should not be there in the returned array. On 0.6 it works the way I would expect -- imported packages do not get returned when you call names(Foo, true, false)
.