Skip to content

Commit 77079f8

Browse files
committed
Add filtering behavior to whos()
Defaults to not displaying modules
1 parent 760c2a6 commit 77079f8

File tree

2 files changed

+19
-11
lines changed

2 files changed

+19
-11
lines changed

base/show.jl

+12-8
Original file line numberDiff line numberDiff line change
@@ -1111,17 +1111,21 @@ function show_nd(io::IO, a::AbstractArray, limit, print_matrix, label_slices)
11111111
cartesianmap(print_slice, tail)
11121112
end
11131113

1114-
function whos(m::Module, pattern::Regex)
1115-
for v in sort(names(m))
1116-
s = string(v)
1117-
if isdefined(m,v) && ismatch(pattern, s)
1118-
println(rpad(s, 30), summary(eval(m,v)))
1114+
function whos(m::Module, pattern::Regex; filter=[])
1115+
filtertypes = applicable(start, filter) ?
1116+
filter : [filter]
1117+
filtertest(var) = ! any(T -> typeof(var) <: T, filtertypes)
1118+
for n in sort(names(m))
1119+
s = string(n)
1120+
v = eval(m,n)
1121+
if isdefined(m,n) && ismatch(pattern, s) && filtertest(v)
1122+
println(rpad(s, 30), summary(v))
11191123
end
11201124
end
11211125
end
1122-
whos() = whos(r"")
1123-
whos(m::Module) = whos(m, r"")
1124-
whos(pat::Regex) = whos(current_module(), pat)
1126+
whos(;filter=Module) = whos(r""; filter=filter)
1127+
whos(m::Module; filter=[]) = whos(m, r""; filter=filter)
1128+
whos(pat::Regex; filter=[]) = whos(current_module(), pat; filter=filter)
11251129

11261130
# global flag for limiting output
11271131
# TODO: this should be replaced with a better mechanism. currently it is only

doc/stdlib/base.rst

+7-3
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,14 @@ Getting Around
3636

3737
Determine whether Julia is running an interactive session.
3838

39-
.. function:: whos([Module,] [pattern::Regex])
39+
.. function:: whos([Module,] [pattern::Regex]; [filter=nothing])
4040

41-
Print information about exported global variables in a module, optionally restricted
42-
to those matching ``pattern``.
41+
Print information about exported global variables in a module (defaults to
42+
the current module), optionally restricted to those matching ``pattern``.
43+
44+
The ``filter`` keyword is either a single type or iterable object of types.
45+
Variables who are of type or subtype of an element in ``filter`` will not be
46+
displayed. If invoked without arguments, ``filter`` defaults to ``Module``.
4347

4448
.. function:: edit(file::AbstractString, [line])
4549

0 commit comments

Comments
 (0)