Fix: variable to have VarInfo instead of Type

This commit is contained in:
Shunsuke Shibayama 2022-10-18 00:25:47 +09:00
parent 119a326ebb
commit 46b87e1ca3
29 changed files with 888 additions and 816 deletions

View file

@ -5,14 +5,16 @@ use std::process::Command;
use crate::serialize::get_magic_num_from_bytes;
pub const BUILTIN_PYTHON_MODS: [&str; 10] = [
pub const BUILTIN_PYTHON_MODS: [&str; 12] = [
"glob",
"importlib",
"io",
"math",
"re",
"os",
"random",
"re",
"socket",
"subprocess",
"sys",
"time",
"urllib",