We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b75482b commit ebdc636Copy full SHA for ebdc636
stdlib/REPL/src/precompile.jl
@@ -6,7 +6,7 @@ module Precompile
6
import ..REPL
7
# Prepare this staging area with all the loaded packages available
8
for (_pkgid, _mod) in Base.loaded_modules
9
- if !(_pkgid.name in ("Main", "Core", "Base", "REPL"))
+ if !(_pkgid.name in ("Main", "Core", "Base", "REPL")) && Base.is_stdlib(_pkgid)
10
eval(:(const $(Symbol(_mod)) = $_mod))
11
end
12
0 commit comments