Add argparse module

This commit is contained in:
Shunsuke Shibayama 2022-10-22 17:58:20 +09:00
parent 22857229ee
commit 6fc382d46c
2 changed files with 18 additions and 2 deletions

View file

@ -6,7 +6,8 @@ use std::process::Command;
use crate::serialize::get_magic_num_from_bytes;
#[cfg(unix)]
pub const BUILTIN_PYTHON_MODS: [&str; 23] = [
pub const BUILTIN_PYTHON_MODS: [&str; 24] = [
"argparse",
"copy",
"datetime",
"glob",
@ -32,7 +33,8 @@ pub const BUILTIN_PYTHON_MODS: [&str; 23] = [
"zipfile",
];
#[cfg(not(unix))]
pub const BUILTIN_PYTHON_MODS: [&str; 22] = [
pub const BUILTIN_PYTHON_MODS: [&str; 23] = [
"argparse",
"copy",
"datetime",
"glob",