Skip to content

names(; imported=false) returns package imports #26267

Closed
@mortenpi

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).

Ref: JuliaDocs/Documenter.jl#651

Metadata

Assignees

Labels

bugIndicates an unexpected problem or unintended behaviormodulesregressionRegression in behavior compared to a previous version

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions