Skip to content

Commit cb3bd1f

Browse files
fix require_stdlib fast path for loaded exts
Revert "fix require_stdlib fast path for loaded exts" This reverts commit b4d38843db427543b833eca47006deb6d9b40758. Update loading.jl
1 parent f255099 commit cb3bd1f

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

base/loading.jl

+3
Original file line numberDiff line numberDiff line change
@@ -2504,6 +2504,9 @@ end
25042504
function require_stdlib(uuidkey::PkgId, ext::Union{Nothing, String}=nothing)
25052505
@lock require_lock begin
25062506
if root_module_exists(uuidkey)
2507+
if ext isa String
2508+
uuidkey = PkgId(uuid5(uuidkey.uuid, ext), ext)
2509+
end
25072510
return loaded_modules[uuidkey]
25082511
end
25092512
# first since this is a stdlib, try to look there directly first

0 commit comments

Comments
 (0)