mirror of
https://github.com/KoboldAI/KoboldAI-Client.git
synced 2025-04-03 21:21:07 +02:00
Use set lookup for sandbox_require_builtins
instead of iteration
This commit is contained in:
parent
3532a30ad4
commit
7645db9dd4
@ -1577,17 +1577,15 @@ return function(_python, _bridged)
|
|||||||
if modname == "bridge" then
|
if modname == "bridge" then
|
||||||
return function() return env.kobold, env.koboldcore end
|
return function() return env.kobold, env.koboldcore end
|
||||||
end
|
end
|
||||||
for k, v in pairs(sandbox_require_builtins) do
|
|
||||||
if modname == k then
|
|
||||||
return env[k]
|
|
||||||
end
|
|
||||||
end
|
|
||||||
if type(modname) == "number" then
|
if type(modname) == "number" then
|
||||||
modname = tostring(modname)
|
modname = tostring(modname)
|
||||||
elseif type(modname) ~= "string" then
|
elseif type(modname) ~= "string" then
|
||||||
error("bad argument #1 to 'require' (string expected, got "..type(modname)..")")
|
error("bad argument #1 to 'require' (string expected, got "..type(modname)..")")
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
if sandbox_require_builtins[modname] then
|
||||||
|
return env[modname]
|
||||||
|
end
|
||||||
local allowsearch = type(modname) == "string" and string.match(modname, "[^%w._-]") == nil and string.match(modname, "%.%.") == nil
|
local allowsearch = type(modname) == "string" and string.match(modname, "[^%w._-]") == nil and string.match(modname, "%.%.") == nil
|
||||||
if allowsearch and package_loaded[env] == nil then
|
if allowsearch and package_loaded[env] == nil then
|
||||||
package_loaded[env] = {}
|
package_loaded[env] = {}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user