From eacbd37f7b379db65ea03c22c21a99b8806709ef Mon Sep 17 00:00:00 2001 From: Don Jayamanne Date: Sat, 25 May 2024 11:40:23 +1000 Subject: [PATCH 01/15] Wip --- native_locator/src/windows_registry.rs | 62 +++++++++----------------- 1 file changed, 20 insertions(+), 42 deletions(-) diff --git a/native_locator/src/windows_registry.rs b/native_locator/src/windows_registry.rs index 2f3c6d04a42e..d35da3ecdab0 100644 --- a/native_locator/src/windows_registry.rs +++ b/native_locator/src/windows_registry.rs @@ -156,54 +156,32 @@ fn get_registry_pythons_from_key_for_company( #[cfg(windows)] fn get_registry_pythons(conda_locator: &mut dyn CondaLocator) -> Option { - use log::{trace, warn}; + use log::warn; let mut environments = vec![]; let mut managers: Vec = vec![]; - struct RegistryKey { - pub name: &'static str, - pub key: winreg::RegKey, - } - let search_keys = [ - RegistryKey { - name: "HKLM", - key: winreg::RegKey::predef(winreg::enums::HKEY_LOCAL_MACHINE), - }, - RegistryKey { - name: "HKCU", - key: winreg::RegKey::predef(winreg::enums::HKEY_CURRENT_USER), - }, - ]; - for (name, key) in search_keys.iter().map(|f| (f.name, &f.key)) { - match key.open_subkey("Software\\Python") { - Ok(python_key) => { - for company in python_key.enum_keys().filter_map(Result::ok) { - trace!("Searching {}\\Software\\Python\\{}", name, company); - match python_key.open_subkey(&company) { - Ok(company_key) => { - if let Some(result) = get_registry_pythons_from_key_for_company( - name, - &company_key, - &company, - conda_locator, - ) { - managers.extend(result.managers); - environments.extend(result.environments); - } - } - Err(err) => { - warn!( - "Failed to open {}\\Software\\Python\\{}, {:?}", - name, company, err - ); - } - } + for (name, key) in [ + vec![ + "HKLM", + winreg::RegKey::predef(winreg::enums::HKEY_LOCAL_MACHINE), + ], + vec![ + "HKCU", + winreg::RegKey::predef(winreg::enums::HKEY_CURRENT_USER), + ], + ] { + if let Some(python_key) = key.open_subkey("Software\\Python").ok() { + for company in python_key.enum_keys().filter_map(Result::ok) { + if let Some(result) = + get_registry_pythons_from_key_for_company(&key, &company, conda_locator) + { + managers.extend(result.managers); + environments.extend(result.environments); } } - Err(err) => { - warn!("Failed to open {}\\Software\\Python, {:?}", name, err) - } + } else { + warn!("Failed to open {}\\Software\\Python key", name) } } Some(LocatorResult { From a322c223b0ac1f6b1661f17d24d2308460244ee0 Mon Sep 17 00:00:00 2001 From: Don Jayamanne Date: Sat, 25 May 2024 12:29:20 +1000 Subject: [PATCH 02/15] Updates with logging --- native_locator/src/windows_registry.rs | 64 +++++++++++++++++--------- 1 file changed, 43 insertions(+), 21 deletions(-) diff --git a/native_locator/src/windows_registry.rs b/native_locator/src/windows_registry.rs index d35da3ecdab0..26476d73b1c8 100644 --- a/native_locator/src/windows_registry.rs +++ b/native_locator/src/windows_registry.rs @@ -156,32 +156,54 @@ fn get_registry_pythons_from_key_for_company( #[cfg(windows)] fn get_registry_pythons(conda_locator: &mut dyn CondaLocator) -> Option { - use log::warn; + use log::{trace, warn}; let mut environments = vec![]; let mut managers: Vec = vec![]; - for (name, key) in [ - vec![ - "HKLM", - winreg::RegKey::predef(winreg::enums::HKEY_LOCAL_MACHINE), - ], - vec![ - "HKCU", - winreg::RegKey::predef(winreg::enums::HKEY_CURRENT_USER), - ], - ] { - if let Some(python_key) = key.open_subkey("Software\\Python").ok() { - for company in python_key.enum_keys().filter_map(Result::ok) { - if let Some(result) = - get_registry_pythons_from_key_for_company(&key, &company, conda_locator) - { - managers.extend(result.managers); - environments.extend(result.environments); + struct RegistryKey { + pub name: &'static str, + pub key: winreg::RegKey, + } + let search_keys = [ + RegistryKey { + name: "HKLM", + key: winreg::RegKey::predef(winreg::enums::HKEY_LOCAL_MACHINE), + }, + RegistryKey { + name: "HKCU", + key: winreg::RegKey::predef(winreg::enums::HKEY_CURRENT_USER), + }, + ]; + for (name, key) in search_keys.iter().map(|f| (f.name, &f.key)) { + match key.open_subkey("Software\\Python") { + Ok(python_key) => { + for company in python_key.enum_keys().filter_map(Result::ok) { + trace!("Searching {}\\Software\\Python\\{}", name, company); + match python_key.open_subkey(&company) { + Ok(company_key) => { + if let Some(result) = get_registry_pythons_from_key_for_company( + name, + &company_key, + &company, + conda_locator, + ) { + managers.extend(result.managers); + environments.extend(result.environments); + } + } + Err(err) => { + warn!( + "Failed to open {}\\Software\\Python\\{}, {:?}", + name, company, err + ); + } + } } } - } else { - warn!("Failed to open {}\\Software\\Python key", name) + Err(err) => { + warn!("Failed to open {}\\Software\\Python, {:?}", name, err) + } } } Some(LocatorResult { @@ -212,7 +234,7 @@ impl Locator for WindowsRegistry<'_> { fn find(&mut self) -> Option { if let Some(result) = get_registry_pythons(self.conda_locator) { if !result.environments.is_empty() || !result.managers.is_empty() { - return Some(result); + // return Some(result); } } None From 85f2be428618a4a50ccbffe50535b3d31db61fc7 Mon Sep 17 00:00:00 2001 From: Don Jayamanne Date: Sat, 25 May 2024 14:48:03 +1000 Subject: [PATCH 03/15] Ooops --- native_locator/src/windows_registry.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/native_locator/src/windows_registry.rs b/native_locator/src/windows_registry.rs index 26476d73b1c8..2f3c6d04a42e 100644 --- a/native_locator/src/windows_registry.rs +++ b/native_locator/src/windows_registry.rs @@ -234,7 +234,7 @@ impl Locator for WindowsRegistry<'_> { fn find(&mut self) -> Option { if let Some(result) = get_registry_pythons(self.conda_locator) { if !result.environments.is_empty() || !result.managers.is_empty() { - // return Some(result); + return Some(result); } } None From 114711584fac63f2d0ffaef09b4c0608f2416bbb Mon Sep 17 00:00:00 2001 From: Don Jayamanne Date: Fri, 24 May 2024 13:02:08 +1000 Subject: [PATCH 04/15] Search some environments in parallel --- native_locator/src/conda.rs | 18 +-- native_locator/src/global_virtualenvs.rs | 2 +- native_locator/src/known.rs | 5 + native_locator/src/lib.rs | 196 ++++++++++++++++++++++- native_locator/src/main.rs | 89 +--------- 5 files changed, 206 insertions(+), 104 deletions(-) diff --git a/native_locator/src/conda.rs b/native_locator/src/conda.rs index 8c7164b472d6..2f2d090adca3 100644 --- a/native_locator/src/conda.rs +++ b/native_locator/src/conda.rs @@ -117,7 +117,7 @@ fn get_conda_package_json_path(path: &Path, package: &str) -> Option Option { +fn get_conda_executable(path: &Path) -> Option { for relative_path in get_relative_paths_to_conda_executable() { let exe = path.join(&relative_path); if exe.exists() { @@ -226,7 +226,7 @@ pub fn find_conda_binary(environment: &dyn known::Environment) -> Option Option { +fn get_conda_manager(path: &Path) -> Option { let conda_exe = get_conda_executable(path)?; let conda_pkg = get_conda_package_json_path(path, "conda")?; @@ -529,7 +529,7 @@ fn get_conda_conda_rc(environment: &dyn known::Environment) -> Option { */ fn was_conda_environment_created_by_specific_conda( env: &CondaEnvironment, - root_conda_path: &PathBuf, + root_conda_path: &Path, ) -> bool { if let Some(cmd_line) = env.conda_install_folder.clone() { if cmd_line @@ -661,7 +661,7 @@ fn get_activation_command(env: &CondaEnvironment, manager: &EnvManager) -> Optio } } -fn get_root_python_environment(path: &PathBuf, manager: &EnvManager) -> Option { +fn get_root_python_environment(path: &Path, manager: &EnvManager) -> Option { let python_exe = path.join(get_relative_paths_to_main_python_executable()); if !python_exe.exists() { return None; @@ -680,7 +680,7 @@ fn get_root_python_environment(path: &PathBuf, manager: &EnvManager) -> Option

Option

, ) -> Option { let mut managers: Vec = vec![]; @@ -842,7 +842,7 @@ fn find_conda_environments_from_known_conda_install_locations( }) } -fn is_conda_install_location(path: &PathBuf) -> bool { +fn is_conda_install_location(path: &Path) -> bool { let envs_path = path.join("envs"); return envs_path.exists() && envs_path.is_dir(); } @@ -963,7 +963,7 @@ pub struct Conda<'a> { } pub trait CondaLocator { - fn find_in(&mut self, possible_conda_folder: &PathBuf) -> Option; + fn find_in(&mut self, possible_conda_folder: &Path) -> Option; } impl Conda<'_> { @@ -1019,7 +1019,7 @@ impl Conda<'_> { } impl CondaLocator for Conda<'_> { - fn find_in(&mut self, possible_conda_folder: &PathBuf) -> Option { + fn find_in(&mut self, possible_conda_folder: &Path) -> Option { if !is_conda_install_location(possible_conda_folder) { return None; } diff --git a/native_locator/src/global_virtualenvs.rs b/native_locator/src/global_virtualenvs.rs index 8004775e3ee2..e0e4cf8cb991 100644 --- a/native_locator/src/global_virtualenvs.rs +++ b/native_locator/src/global_virtualenvs.rs @@ -7,7 +7,7 @@ use crate::{ }; use std::{fs, path::PathBuf}; -pub fn get_global_virtualenv_dirs(environment: &impl known::Environment) -> Vec { +fn get_global_virtualenv_dirs(environment: &impl known::Environment) -> Vec { let mut venv_dirs: Vec = vec![]; if let Some(work_on_home) = environment.get_env_var("WORKON_HOME".to_string()) { diff --git a/native_locator/src/known.rs b/native_locator/src/known.rs index bd9e7bc4de34..600aa45d1034 100644 --- a/native_locator/src/known.rs +++ b/native_locator/src/known.rs @@ -14,6 +14,11 @@ pub trait Environment { } pub struct EnvironmentApi {} +impl EnvironmentApi { + pub fn new() -> Self { + EnvironmentApi {} + } +} #[cfg(windows)] impl Environment for EnvironmentApi { diff --git a/native_locator/src/lib.rs b/native_locator/src/lib.rs index ba353c71ce12..f1335a41f461 100644 --- a/native_locator/src/lib.rs +++ b/native_locator/src/lib.rs @@ -1,18 +1,198 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -pub mod messaging; -pub mod utils; +use global_virtualenvs::list_global_virtual_envs; +use known::EnvironmentApi; +use locator::{Locator, LocatorResult}; +use messaging::{create_dispatcher, JsonRpcDispatcher, MessageDispatcher}; +use std::thread::{self, JoinHandle}; +use utils::PythonEnv; + pub mod common_python; -pub mod logging; pub mod conda; -pub mod known; -pub mod pyenv; pub mod global_virtualenvs; -pub mod virtualenvwrapper; +pub mod homebrew; +pub mod known; +pub mod locator; +pub mod logging; +pub mod messaging; pub mod pipenv; -pub mod virtualenv; +pub mod pyenv; +pub mod utils; pub mod venv; -pub mod locator; +pub mod virtualenv; +pub mod virtualenvwrapper; pub mod windows_registry; pub mod windows_store; + +pub fn find_and_report_envs() { + let mut dispatcher: JsonRpcDispatcher = create_dispatcher(); + + // 1. Find using known global locators. + find_using_global_finders(&mut dispatcher); + + // Step 2: Search in some global locations for virtual envs. + find_in_global_virtual_env_dirs(&mut dispatcher); + + // Step 3: Finally find in the current PATH variable + let environment = EnvironmentApi::new(); + let mut path_locator = common_python::PythonOnPath::with(&environment); + report_result(path_locator.find(), &mut dispatcher) +} + +fn find_using_global_finders(dispatcher: &mut JsonRpcDispatcher) { + // Step 1: These environments take precedence over all others. + // As they are very specific and guaranteed to be specific type. + #[cfg(windows)] + fn find() -> Vec>> { + // The order matters, + // Windows store can sometimes get detected via registry locator (but we want to avoid that), + // difficult to repro, but we have see this on Karthiks machine + // Windows registry can contain conda envs (e.g. installing Ananconda will result in registry entries). + // Conda is best done last, as Windows Registry and Pyenv can also contain conda envs, + // Thus lets leave the generic conda locator to last to find all remaining conda envs. + // pyenv can be treated as a virtualenvwrapper environment, hence virtualenvwrapper needs to be detected first + vec![ + // 1. windows store + thread::spawn(|| { + let environment = EnvironmentApi::new(); + let mut windows_store = windows_store::WindowsStore::with(&environment); + windows_store.find() + }), + // 2. windows registry + thread::spawn(|| { + let environment = EnvironmentApi::new(); + let mut conda_locator = conda::Conda::with(&environment); + windows_registry::WindowsRegistry::with(&mut conda_locator).find() + }), + // 3. virtualenvwrapper + thread::spawn(|| { + let environment = EnvironmentApi::new(); + virtualenvwrapper::VirtualEnvWrapper::with(&environment).find() + }), + // 4. pyenv + thread::spawn(|| { + let environment = EnvironmentApi::new(); + let mut conda_locator = conda::Conda::with(&environment); + pyenv::PyEnv::with(&environment, &mut conda_locator).find() + }), + // 5. conda + thread::spawn(|| { + let environment = EnvironmentApi::new(); + conda::Conda::with(&environment).find() + }), + ] + } + + #[cfg(unix)] + fn find() -> Vec>> { + // The order matters, + // pyenv can be treated as a virtualenvwrapper environment, hence virtualenvwrapper needs to be detected first + // Homebrew can happen anytime + // Conda is best done last, as pyenv can also contain conda envs, + // Thus lets leave the generic conda locator to last to find all remaining conda envs. + + vec![ + // 1. virtualenvwrapper + thread::spawn(|| { + let environment = EnvironmentApi::new(); + virtualenvwrapper::VirtualEnvWrapper::with(&environment).find() + }), + // 2. pyenv + thread::spawn(|| { + let environment = EnvironmentApi::new(); + let mut conda_locator = conda::Conda::with(&environment); + pyenv::PyEnv::with(&environment, &mut conda_locator).find() + }), + // 3. homebrew + thread::spawn(|| { + let environment = EnvironmentApi::new(); + homebrew::Homebrew::with(&environment).find() + }), + // 4. conda + thread::spawn(|| { + let environment = EnvironmentApi::new(); + conda::Conda::with(&environment).find() + }), + ] + } + + for handle in find() { + if let Ok(result) = handle.join() { + report_result(result, dispatcher); + } else { + log::error!("Error getting result from thread."); + } + } +} + +fn find_in_global_virtual_env_dirs(dispatcher: &mut JsonRpcDispatcher) -> Option { + // Step 1: These environments take precedence over all others. + // As they are very specific and guaranteed to be specific type. + + let environment = EnvironmentApi::new(); + let virtualenv_locator = virtualenv::VirtualEnv::new(); + let venv_locator = venv::Venv::new(); + let virtualenvwrapper = virtualenvwrapper::VirtualEnvWrapper::with(&environment); + let pipenv_locator = pipenv::PipEnv::new(); + #[cfg(unix)] + let homebrew_locator = homebrew::Homebrew::with(&environment); + + let venv_type_locators = vec![ + Box::new(pipenv_locator) as Box, + Box::new(virtualenvwrapper) as Box, + Box::new(venv_locator) as Box, + Box::new(virtualenv_locator) as Box, + ]; + + // Step 2: Search in some global locations for virtual envs. + for env in list_global_virtual_envs(&environment) { + if dispatcher.was_environment_reported(&env) { + continue; + } + + // 1. First must be homebrew, as it is the most specific and supports symlinks + #[cfg(unix)] + if resolve_and_report_environment(&homebrew_locator, &env, dispatcher) { + continue; + } + + // 3. Finally Check if these are some kind of virtual env or pipenv. + // Pipeenv before virtualenvwrapper as it is more specific. + // Because pipenv environments are also virtualenvwrapper environments. + // Before venv, as all venvs are also virtualenvwrapper environments. + // Before virtualenv as this is more specific. + // All venvs are also virtualenvs environments. + for locator in &venv_type_locators { + if resolve_and_report_environment(locator.as_ref(), &env, dispatcher) { + break; + } + } + } + None +} + +fn resolve_and_report_environment( + locator: &dyn Locator, + env: &PythonEnv, + dispatcher: &mut JsonRpcDispatcher, +) -> bool { + if let Some(env) = locator.resolve(env) { + dispatcher.report_environment(env); + return true; + } + false +} + +fn report_result(result: Option, dispatcher: &mut JsonRpcDispatcher) { + if let Some(result) = result { + result + .environments + .iter() + .for_each(|e| dispatcher.report_environment(e.clone())); + result + .managers + .iter() + .for_each(|m| dispatcher.report_environment_manager(m.clone())); + } +} diff --git a/native_locator/src/main.rs b/native_locator/src/main.rs index 4964b09cac40..da0720e242e5 100644 --- a/native_locator/src/main.rs +++ b/native_locator/src/main.rs @@ -2,13 +2,10 @@ // Licensed under the MIT License. use crate::messaging::initialize_logger; -use global_virtualenvs::list_global_virtual_envs; -use known::EnvironmentApi; -use locator::Locator; use log::LevelFilter; -use messaging::{create_dispatcher, JsonRpcDispatcher, MessageDispatcher}; +use messaging::{create_dispatcher, MessageDispatcher}; +use python_finder::find_and_report_envs; use std::time::SystemTime; -use utils::PythonEnv; mod common_python; mod conda; @@ -28,67 +25,13 @@ mod windows_registry; mod windows_store; fn main() { - let environment = EnvironmentApi {}; initialize_logger(LevelFilter::Trace); log::info!("Starting Native Locator"); let now = SystemTime::now(); let mut dispatcher = create_dispatcher(); - let virtualenv_locator = virtualenv::VirtualEnv::new(); - let venv_locator = venv::Venv::new(); - let mut virtualenvwrapper = virtualenvwrapper::VirtualEnvWrapper::with(&environment); - let pipenv_locator = pipenv::PipEnv::new(); - let mut path_locator = common_python::PythonOnPath::with(&environment); - let mut conda_locator = conda::Conda::with(&environment); - - #[cfg(unix)] - let mut homebrew_locator = homebrew::Homebrew::with(&environment); - #[cfg(windows)] - let mut windows_store = windows_store::WindowsStore::with(&environment); - #[cfg(windows)] - let mut windows_registry = windows_registry::WindowsRegistry::with(&mut conda_locator); - - // Step 1: These environments take precedence over all others. - // As they are very specific and guaranteed to be specific type. - #[cfg(windows)] - find_environments(&mut windows_store, &mut dispatcher); - #[cfg(windows)] - find_environments(&mut windows_registry, &mut dispatcher); - let mut pyenv_locator = pyenv::PyEnv::with(&environment, &mut conda_locator); - find_environments(&mut virtualenvwrapper, &mut dispatcher); - find_environments(&mut pyenv_locator, &mut dispatcher); - #[cfg(unix)] - find_environments(&mut homebrew_locator, &mut dispatcher); - find_environments(&mut conda_locator, &mut dispatcher); - - // Step 2: Search in some global locations for virtual envs. - for env in list_global_virtual_envs(&environment).iter() { - if dispatcher.was_environment_reported(&env) { - continue; - } - - // First must be homebrew, as it is the most specific and supports symlinks - #[cfg(unix)] - let homebrew_result = resolve_environment(&homebrew_locator, env, &mut dispatcher); - #[cfg(unix)] - if homebrew_result { - continue; - } - - let _ = // Pipeenv before virtualenvwrapper as it is more specific. - // Because pipenv environments are also virtualenvwrapper environments. - resolve_environment(&pipenv_locator, env, &mut dispatcher) - // Before venv, as all venvs are also virtualenvwrapper environments. - || resolve_environment(&virtualenvwrapper, env, &mut dispatcher) - // Before virtualenv as this is more specific. - // All venvs are also virtualenvs environments. - || resolve_environment(&venv_locator, env, &mut dispatcher) - || resolve_environment(&virtualenv_locator, env, &mut dispatcher); - } - - // Step 3: Finally find in the current PATH variable - find_environments(&mut path_locator, &mut dispatcher); + find_and_report_envs(); match now.elapsed() { Ok(elapsed) => { @@ -101,29 +44,3 @@ fn main() { dispatcher.exit(); } - -fn resolve_environment( - locator: &dyn Locator, - env: &PythonEnv, - dispatcher: &mut JsonRpcDispatcher, -) -> bool { - if let Some(env) = locator.resolve(env) { - dispatcher.report_environment(env); - return true; - } - false -} - -fn find_environments(locator: &mut dyn Locator, dispatcher: &mut JsonRpcDispatcher) -> Option<()> { - if let Some(result) = locator.find() { - result - .environments - .iter() - .for_each(|e| dispatcher.report_environment(e.clone())); - result - .managers - .iter() - .for_each(|m| dispatcher.report_environment_manager(m.clone())); - } - Some(()) -} From 8c1f40c2493a8c9720c6453e783c27a293eb4846 Mon Sep 17 00:00:00 2001 From: Don Jayamanne Date: Mon, 27 May 2024 13:13:51 +1000 Subject: [PATCH 05/15] Support resolving pyenv & conda with tests --- native_locator/src/conda.rs | 214 +- native_locator/src/homebrew.rs | 6 +- native_locator/src/messaging.rs | 2 +- native_locator/src/pyenv.rs | 191 +- native_locator/tests/conda_test.rs | 295 ++- native_locator/tests/pyenv_test.rs | 231 +- .../python} | 0 .../conda-23.11.0-py311hca03da5_0.json | 632 +++++ .../user_home/anaconda3/conda-meta/history | 72 + .../conda-meta/python-3.11.5-hb885b13_0.json | 2280 ++++++++++++++++ .../user_home/.conda/environments.txt} | 0 .../user_home/anaconda3/bin/conda} | 0 .../user_home/anaconda3/bin/python} | 0 .../conda-meta/conda-4.0.2-pyhd3eb1b0_0.json} | 0 .../python-20.1.1-hdf0ec26_0_cpython.json} | 0 .../python-slugify-5.0.2-pyhd3eb1b0_0.json} | 0 .../anaconda3}/envs/.conda_envs_dir_test | 0 .../python-10.0.1-hdf0ec26_0_cpython.json | 1 + .../python-slugify-5.0.2-pyhd3eb1b0_0.json} | 0 .../user_home/anaconda3/envs/one/python} | 0 .../dev_folder/two/conda-meta/history | 62 + .../two/conda-meta/history.template | 62 + .../python-3.12.2-hdf0ec26_0_cpython.json | 1 + .../python-slugify-5.0.2-pyhd3eb1b0_0.json} | 0 .../user_home/dev_folder/two/python | 0 .../.pyenv/versions/anaconda-4.0.0/bin/conda | 0 .../conda-23.11.0-py311hca03da5_0.json | 632 +++++ .../anaconda-4.0.0/conda-meta/history | 72 + .../conda-meta/python-3.11.5-hb885b13_0.json | 2280 ++++++++++++++++ .../python-slugify-5.0.2-pyhd3eb1b0_0.json | 0 .../anaconda-4.0.0/envs/.conda_envs_dir_test | 0 .../python-3.11.1-hdf0ec26_0_cpython.json | 2281 +++++++++++++++++ .../python-slugify-5.0.2-pyhd3eb1b0_0.json | 0 .../versions/anaconda-4.0.0/envs/one/python | 0 .../versions/anaconda-4.0.0/envs/two/python | 0 .../conda-23.11.0-py311hca03da5_0.json | 632 +++++ .../anaconda3-2021.04/conda-meta/history | 72 + .../conda-meta/python-3.11.5-hb885b13_0.json | 2280 ++++++++++++++++ .../python-slugify-5.0.2-pyhd3eb1b0_0.json | 0 .../envs/.conda_envs_dir_test | 0 .../conda-23.11.0-py311hca03da5_0.json | 632 +++++ .../mambaforge-4.10.1-4/conda-meta/history | 72 + .../conda-meta/python-3.11.5-hb885b13_0.json | 2280 ++++++++++++++++ .../python-slugify-5.0.2-pyhd3eb1b0_0.json | 0 .../envs/.conda_envs_dir_test | 0 .../conda-23.11.0-py311hca03da5_0.json | 632 +++++ .../versions/mambaforge/conda-meta/history | 72 + .../conda-meta/python-3.11.5-hb885b13_0.json | 2280 ++++++++++++++++ .../python-slugify-5.0.2-pyhd3eb1b0_0.json | 0 .../mambaforge/envs/.conda_envs_dir_test | 0 .../conda-23.11.0-py311hca03da5_0.json | 632 +++++ .../miniconda-latest/conda-meta/history | 72 + .../conda-meta/python-3.11.5-hb885b13_0.json | 2280 ++++++++++++++++ .../python-slugify-5.0.2-pyhd3eb1b0_0.json | 0 .../envs/.conda_envs_dir_test | 0 .../conda-23.11.0-py311hca03da5_0.json | 632 +++++ .../conda-meta/history | 72 + .../conda-meta/python-3.11.5-hb885b13_0.json | 2280 ++++++++++++++++ .../python-slugify-5.0.2-pyhd3eb1b0_0.json | 0 .../envs/.conda_envs_dir_test | 0 .../conda-23.11.0-py311hca03da5_0.json | 632 +++++ .../miniconda3-3.10.1/conda-meta/history | 72 + .../conda-meta/python-3.11.5-hb885b13_0.json | 2280 ++++++++++++++++ .../python-slugify-5.0.2-pyhd3eb1b0_0.json | 0 .../envs/.conda_envs_dir_test | 0 .../conda-23.11.0-py311hca03da5_0.json | 632 +++++ .../miniconda3-4.0.5/conda-meta/history | 72 + .../conda-meta/python-3.11.5-hb885b13_0.json | 2280 ++++++++++++++++ .../python-slugify-5.0.2-pyhd3eb1b0_0.json | 0 .../envs/.conda_envs_dir_test | 0 .../conda-23.11.0-py311hca03da5_0.json | 632 +++++ .../miniforge3-4.11.0-1/conda-meta/history | 72 + .../conda-meta/python-3.11.5-hb885b13_0.json | 2280 ++++++++++++++++ .../python-slugify-5.0.2-pyhd3eb1b0_0.json | 0 .../envs/.conda_envs_dir_test | 0 75 files changed, 33073 insertions(+), 113 deletions(-) rename native_locator/tests/unix/conda/user_home/anaconda3/{conda-meta/conda-4.0.2-pyhd3eb1b0_0.json => bin/python} (100%) create mode 100644 native_locator/tests/unix/conda/user_home/anaconda3/conda-meta/conda-23.11.0-py311hca03da5_0.json create mode 100644 native_locator/tests/unix/conda/user_home/anaconda3/conda-meta/history create mode 100644 native_locator/tests/unix/conda/user_home/anaconda3/conda-meta/python-3.11.5-hb885b13_0.json rename native_locator/tests/unix/{pyenv/user_home/.pyenv/versions/anaconda-4.0.0/bin/envs/.conda_envs_dir_test => conda_env_created_using_p_flag/user_home/.conda/environments.txt} (100%) rename native_locator/tests/unix/{pyenv/user_home/.pyenv/versions/anaconda3-2021.04/bin/envs/.conda_envs_dir_test => conda_env_created_using_p_flag/user_home/anaconda3/bin/conda} (100%) rename native_locator/tests/unix/{pyenv/user_home/.pyenv/versions/mambaforge-4.10.1-4/bin/envs/.conda_envs_dir_test => conda_env_created_using_p_flag/user_home/anaconda3/bin/python} (100%) rename native_locator/tests/unix/{pyenv/user_home/.pyenv/versions/mambaforge/bin/envs/.conda_envs_dir_test => conda_env_created_using_p_flag/user_home/anaconda3/conda-meta/conda-4.0.2-pyhd3eb1b0_0.json} (100%) rename native_locator/tests/unix/{conda/user_home/anaconda3/conda-meta/python-10.0.1-hdf0ec26_0_cpython.json => conda_env_created_using_p_flag/user_home/anaconda3/conda-meta/python-20.1.1-hdf0ec26_0_cpython.json} (100%) rename native_locator/tests/unix/{pyenv/user_home/.pyenv/versions/miniconda-latest/bin/envs/.conda_envs_dir_test => conda_env_created_using_p_flag/user_home/anaconda3/conda-meta/python-slugify-5.0.2-pyhd3eb1b0_0.json} (100%) rename native_locator/tests/unix/{pyenv/user_home/.pyenv/versions/miniconda3-3.10-22.11.1-1/bin => conda_env_created_using_p_flag/user_home/anaconda3}/envs/.conda_envs_dir_test (100%) create mode 100644 native_locator/tests/unix/conda_env_created_using_p_flag/user_home/anaconda3/envs/one/conda-meta/python-10.0.1-hdf0ec26_0_cpython.json rename native_locator/tests/unix/{pyenv/user_home/.pyenv/versions/miniconda3-3.10.1/bin/envs/.conda_envs_dir_test => conda_env_created_using_p_flag/user_home/anaconda3/envs/one/conda-meta/python-slugify-5.0.2-pyhd3eb1b0_0.json} (100%) rename native_locator/tests/unix/{pyenv/user_home/.pyenv/versions/miniconda3-4.0.5/bin/envs/.conda_envs_dir_test => conda_env_created_using_p_flag/user_home/anaconda3/envs/one/python} (100%) create mode 100644 native_locator/tests/unix/conda_env_created_using_p_flag/user_home/dev_folder/two/conda-meta/history create mode 100644 native_locator/tests/unix/conda_env_created_using_p_flag/user_home/dev_folder/two/conda-meta/history.template create mode 100644 native_locator/tests/unix/conda_env_created_using_p_flag/user_home/dev_folder/two/conda-meta/python-3.12.2-hdf0ec26_0_cpython.json rename native_locator/tests/unix/{pyenv/user_home/.pyenv/versions/miniforge3-4.11.0-1/bin/envs/.conda_envs_dir_test => conda_env_created_using_p_flag/user_home/dev_folder/two/conda-meta/python-slugify-5.0.2-pyhd3eb1b0_0.json} (100%) create mode 100644 native_locator/tests/unix/conda_env_created_using_p_flag/user_home/dev_folder/two/python create mode 100644 native_locator/tests/unix/pyenv/user_home/.pyenv/versions/anaconda-4.0.0/bin/conda create mode 100644 native_locator/tests/unix/pyenv/user_home/.pyenv/versions/anaconda-4.0.0/conda-meta/conda-23.11.0-py311hca03da5_0.json create mode 100644 native_locator/tests/unix/pyenv/user_home/.pyenv/versions/anaconda-4.0.0/conda-meta/history create mode 100644 native_locator/tests/unix/pyenv/user_home/.pyenv/versions/anaconda-4.0.0/conda-meta/python-3.11.5-hb885b13_0.json create mode 100644 native_locator/tests/unix/pyenv/user_home/.pyenv/versions/anaconda-4.0.0/conda-meta/python-slugify-5.0.2-pyhd3eb1b0_0.json create mode 100644 native_locator/tests/unix/pyenv/user_home/.pyenv/versions/anaconda-4.0.0/envs/.conda_envs_dir_test create mode 100644 native_locator/tests/unix/pyenv/user_home/.pyenv/versions/anaconda-4.0.0/envs/one/conda-meta/python-3.11.1-hdf0ec26_0_cpython.json create mode 100644 native_locator/tests/unix/pyenv/user_home/.pyenv/versions/anaconda-4.0.0/envs/one/conda-meta/python-slugify-5.0.2-pyhd3eb1b0_0.json create mode 100644 native_locator/tests/unix/pyenv/user_home/.pyenv/versions/anaconda-4.0.0/envs/one/python create mode 100644 native_locator/tests/unix/pyenv/user_home/.pyenv/versions/anaconda-4.0.0/envs/two/python create mode 100644 native_locator/tests/unix/pyenv/user_home/.pyenv/versions/anaconda3-2021.04/conda-meta/conda-23.11.0-py311hca03da5_0.json create mode 100644 native_locator/tests/unix/pyenv/user_home/.pyenv/versions/anaconda3-2021.04/conda-meta/history create mode 100644 native_locator/tests/unix/pyenv/user_home/.pyenv/versions/anaconda3-2021.04/conda-meta/python-3.11.5-hb885b13_0.json create mode 100644 native_locator/tests/unix/pyenv/user_home/.pyenv/versions/anaconda3-2021.04/conda-meta/python-slugify-5.0.2-pyhd3eb1b0_0.json create mode 100644 native_locator/tests/unix/pyenv/user_home/.pyenv/versions/anaconda3-2021.04/envs/.conda_envs_dir_test create mode 100644 native_locator/tests/unix/pyenv/user_home/.pyenv/versions/mambaforge-4.10.1-4/conda-meta/conda-23.11.0-py311hca03da5_0.json create mode 100644 native_locator/tests/unix/pyenv/user_home/.pyenv/versions/mambaforge-4.10.1-4/conda-meta/history create mode 100644 native_locator/tests/unix/pyenv/user_home/.pyenv/versions/mambaforge-4.10.1-4/conda-meta/python-3.11.5-hb885b13_0.json create mode 100644 native_locator/tests/unix/pyenv/user_home/.pyenv/versions/mambaforge-4.10.1-4/conda-meta/python-slugify-5.0.2-pyhd3eb1b0_0.json create mode 100644 native_locator/tests/unix/pyenv/user_home/.pyenv/versions/mambaforge-4.10.1-4/envs/.conda_envs_dir_test create mode 100644 native_locator/tests/unix/pyenv/user_home/.pyenv/versions/mambaforge/conda-meta/conda-23.11.0-py311hca03da5_0.json create mode 100644 native_locator/tests/unix/pyenv/user_home/.pyenv/versions/mambaforge/conda-meta/history create mode 100644 native_locator/tests/unix/pyenv/user_home/.pyenv/versions/mambaforge/conda-meta/python-3.11.5-hb885b13_0.json create mode 100644 native_locator/tests/unix/pyenv/user_home/.pyenv/versions/mambaforge/conda-meta/python-slugify-5.0.2-pyhd3eb1b0_0.json create mode 100644 native_locator/tests/unix/pyenv/user_home/.pyenv/versions/mambaforge/envs/.conda_envs_dir_test create mode 100644 native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda-latest/conda-meta/conda-23.11.0-py311hca03da5_0.json create mode 100644 native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda-latest/conda-meta/history create mode 100644 native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda-latest/conda-meta/python-3.11.5-hb885b13_0.json create mode 100644 native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda-latest/conda-meta/python-slugify-5.0.2-pyhd3eb1b0_0.json create mode 100644 native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda-latest/envs/.conda_envs_dir_test create mode 100644 native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda3-3.10-22.11.1-1/conda-meta/conda-23.11.0-py311hca03da5_0.json create mode 100644 native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda3-3.10-22.11.1-1/conda-meta/history create mode 100644 native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda3-3.10-22.11.1-1/conda-meta/python-3.11.5-hb885b13_0.json create mode 100644 native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda3-3.10-22.11.1-1/conda-meta/python-slugify-5.0.2-pyhd3eb1b0_0.json create mode 100644 native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda3-3.10-22.11.1-1/envs/.conda_envs_dir_test create mode 100644 native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda3-3.10.1/conda-meta/conda-23.11.0-py311hca03da5_0.json create mode 100644 native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda3-3.10.1/conda-meta/history create mode 100644 native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda3-3.10.1/conda-meta/python-3.11.5-hb885b13_0.json create mode 100644 native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda3-3.10.1/conda-meta/python-slugify-5.0.2-pyhd3eb1b0_0.json create mode 100644 native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda3-3.10.1/envs/.conda_envs_dir_test create mode 100644 native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda3-4.0.5/conda-meta/conda-23.11.0-py311hca03da5_0.json create mode 100644 native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda3-4.0.5/conda-meta/history create mode 100644 native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda3-4.0.5/conda-meta/python-3.11.5-hb885b13_0.json create mode 100644 native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda3-4.0.5/conda-meta/python-slugify-5.0.2-pyhd3eb1b0_0.json create mode 100644 native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda3-4.0.5/envs/.conda_envs_dir_test create mode 100644 native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniforge3-4.11.0-1/conda-meta/conda-23.11.0-py311hca03da5_0.json create mode 100644 native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniforge3-4.11.0-1/conda-meta/history create mode 100644 native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniforge3-4.11.0-1/conda-meta/python-3.11.5-hb885b13_0.json create mode 100644 native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniforge3-4.11.0-1/conda-meta/python-slugify-5.0.2-pyhd3eb1b0_0.json create mode 100644 native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniforge3-4.11.0-1/envs/.conda_envs_dir_test diff --git a/native_locator/src/conda.rs b/native_locator/src/conda.rs index 2f2d090adca3..02f32aaf71f4 100644 --- a/native_locator/src/conda.rs +++ b/native_locator/src/conda.rs @@ -19,6 +19,7 @@ use serde::Deserialize; use std::collections::HashMap; use std::collections::HashSet; use std::env; +use std::fs; use std::fs::read_to_string; use std::path::{Path, PathBuf}; @@ -56,25 +57,104 @@ fn get_relative_paths_to_main_python_executable() -> PathBuf { } #[derive(Debug)] -struct CondaPackage { +pub struct CondaPackage { #[allow(dead_code)] - path: PathBuf, - version: String, - arch: Option, + pub path: PathBuf, + pub version: String, + pub arch: Option, +} + +impl PartialEq for CondaPackage { + fn eq(&self, other: &Self) -> bool { + if self.path == other.path && self.version == other.version { + if self.arch.is_none() && other.arch.is_none() { + return true; + } + if self.arch.is_none() && !other.arch.is_none() { + return false; + } + if !self.arch.is_none() && other.arch.is_none() { + return false; + } + return self.arch.as_ref().unwrap() == other.arch.as_ref().unwrap(); + } + return false; + } } #[derive(Deserialize, Debug)] struct CondaMetaPackageStructure { channel: Option, - // version: Option, + version: Option, } /// Get the path to the json file along with the version of a package in the conda environment from the 'conda-meta' directory. -fn get_conda_package_json_path(path: &Path, package: &str) -> Option { +pub fn get_conda_package_json_path(path: &Path, package: &str) -> Option { // conda-meta is in the root of the conda installation folder let path = path.join("conda-meta"); + + let history = path.join("history"); + let package_entry = format!(":{}", package); + if let Ok(history_contents) = fs::read_to_string(&history) { + for line in history_contents + .lines() + .filter(|l| l.contains(&package_entry)) + { + // Sample entry in the history file + // +conda-forge/osx-arm64::psutil-5.9.8-py312he37b823_0 + // +conda-forge/osx-arm64::python-3.12.2-hdf0ec26_0_cpython + // +conda-forge/osx-arm64::python_abi-3.12-4_cp312 + if let Some(package_path) = line.split(&package_entry).nth(1) { + // if let Some(version) = package_entry_regex.clone().ok().unwrap().captures(&line) { + // if let Some(version) = version.get(1) { + let package_path = path.join(format!("{}{}.json", package, package_path)); + let mut arch: Option = None; + // Sample contents + // { + // "build": "h966fe2a_2", + // "build_number": 2, + // "channel": "https://repo.anaconda.com/pkgs/main/win-64", + // "constrains": [], + // } + // 32bit channel is https://repo.anaconda.com/pkgs/main/win-32/ + // 64bit channel is "channel": "https://repo.anaconda.com/pkgs/main/osx-arm64", + if let Some(contents) = read_to_string(&package_path).ok() { + if let Some(js) = + serde_json::from_str::(&contents).ok() + { + if let Some(channel) = js.channel { + if channel.ends_with("64") { + arch = Some(Architecture::X64); + } else if channel.ends_with("32") { + arch = Some(Architecture::X86); + } + } + if let Some(version) = js.version { + return Some(CondaPackage { + path: package_path, + version, + arch, + }); + } else { + warn!( + "Unable to find version for package {} in {:?}", + package, package_path + ); + } + } + } + } + } + } + warn!( + "Unable to find conda package {} in {:?}, trying slower approach", + package, path + ); + let package_name = format!("{}-", package); let regex = Regex::new(format!("^{}-((\\d+\\.*)*)-.*.json$", package).as_str()); + + // Fallback, slower approach of enumerating all files. std::fs::read_dir(path) .ok()? .filter_map(Result::ok) @@ -239,6 +319,29 @@ fn get_conda_manager(path: &Path) -> Option { }) } +fn get_conda_manager_from_env(env_path: &Path) -> Option { + // Lets see if we've been given the base env. + if let Some(manager) = get_conda_manager(env_path) { + return Some(manager); + } + + // Possible we've been given an env thats in the `/envs` folder. + if let Some(parent) = env_path.parent() { + if parent.file_name().unwrap_or_default() == "envs" { + return get_conda_manager(parent.parent()?); + } + } + + // We've been given an env thats been created using the -p flag. + // Get the conda install folder from the history file. + if let Some(conda_install_folder) = + get_conda_installation_used_to_create_conda_env(&env_path.to_path_buf()) + { + return get_conda_manager(&conda_install_folder); + } + None +} + #[derive(Debug, Clone)] struct CondaEnvironment { name: String, @@ -246,7 +349,7 @@ struct CondaEnvironment { env_path: PathBuf, python_executable_path: Option, version: Option, - conda_install_folder: Option, + conda_install_folder: Option, arch: Option, } fn get_conda_environment_info(env_path: &PathBuf, named: bool) -> Option { @@ -294,25 +397,6 @@ fn get_conda_environment_info(env_path: &PathBuf, named: bool) -> Option Option> { - let mut envs: Vec = vec![]; - // iterate through all sub directories in the env folder - // for each sub directory, check if it has a python executable - // if it does, create a PythonEnvironment object and add it to the list - for entry in std::fs::read_dir(path.join("envs")) - .ok()? - .filter_map(Result::ok) - { - if let Some(env) = get_conda_environment_info(&entry.path(), true) { - envs.push(env); - } - } - - Some(envs) -} - fn get_conda_envs_from_environment_txt(environment: &dyn known::Environment) -> Vec { let mut envs = vec![]; if let Some(home) = environment.get_user_home() { @@ -531,8 +615,10 @@ fn was_conda_environment_created_by_specific_conda( env: &CondaEnvironment, root_conda_path: &Path, ) -> bool { - if let Some(cmd_line) = env.conda_install_folder.clone() { - if cmd_line + if let Some(conda_dir) = env.conda_install_folder.clone() { + if conda_dir + .to_str() + .unwrap_or_default() .to_lowercase() .contains(&root_conda_path.to_string_lossy().to_lowercase()) { @@ -553,7 +639,7 @@ fn was_conda_environment_created_by_specific_conda( * Sometimes the cmd line contains the fully qualified path to the conda install folder. * This function returns the path to the conda installation that was used to create the environment. */ -fn get_conda_installation_used_to_create_conda_env(env_path: &PathBuf) -> Option { +fn get_conda_installation_used_to_create_conda_env(env_path: &PathBuf) -> Option { let conda_meta_history = env_path.join("conda-meta").join("history"); if let Ok(reader) = std::fs::read_to_string(conda_meta_history.clone()) { if let Some(line) = reader.lines().map(|l| l.trim()).find(|l| { @@ -567,14 +653,15 @@ fn get_conda_installation_used_to_create_conda_env(env_path: &PathBuf) -> Option let end_index = line.to_lowercase().find(" create -")?; let cmd_line = PathBuf::from(line[start_index..end_index].trim().to_string()); if let Some(cmd_line) = cmd_line.parent() { - if let Some(name) = cmd_line.file_name() { - if name.to_ascii_lowercase() == "bin" || name.to_ascii_lowercase() == "scripts" + if let Some(conda_dir) = cmd_line.file_name() { + if conda_dir.to_ascii_lowercase() == "bin" + || conda_dir.to_ascii_lowercase() == "scripts" { - if let Some(cmd_line) = cmd_line.parent() { - return Some(cmd_line.to_str()?.to_string()); + if let Some(conda_dir) = cmd_line.parent() { + return Some(conda_dir.to_path_buf()); } } - return Some(cmd_line.to_str()?.to_string()); + return Some(cmd_line.to_path_buf()); } } } @@ -685,8 +772,8 @@ fn get_root_python_environment(path: &Path, manager: &EnvManager) -> Option/envs` folder let mut envs: Vec = vec![]; - if let Some(environments) = - get_environments_from_envs_folder_in_conda_directory(conda_install_folder) - { - environments.iter().for_each(|env| { - possible_conda_envs.remove(&env.env_path); - envs.push(env.clone()); - }); + // iterate through all sub directories in the env folder + // for each sub directory, check if it has a python executable + // if it does, create a PythonEnvironment object and add it to the list + + if let Ok(dirs) = std::fs::read_dir(conda_install_folder.join("envs")) { + for entry in dirs.filter_map(Result::ok) { + if let Some(env) = get_conda_environment_info(&entry.path(), true) { + possible_conda_envs.remove(&env.env_path); + envs.push(env); + } + } } - // 3. All environments in the environments.txt and other locations (such as `conda config --show envs_dirs`) // Only include those environments that were created by the specific conda installation // Ignore environments that are in the env sub directory of the conda folder, as those would have been @@ -842,9 +932,11 @@ fn find_conda_environments_from_known_conda_install_locations( }) } -fn is_conda_install_location(path: &Path) -> bool { - let envs_path = path.join("envs"); - return envs_path.exists() && envs_path.is_dir(); +pub fn is_conda_install_location(path: &Path) -> bool { + return path.join("envs").exists() && path.join("conda-meta").exists(); +} +pub fn is_conda_env_location(path: &Path) -> bool { + return !path.join("envs").exists() && path.join("conda-meta").exists(); } pub fn get_conda_version(conda_binary: &PathBuf) -> Option { @@ -1032,8 +1124,32 @@ impl CondaLocator for Conda<'_> { } impl Locator for Conda<'_> { - fn resolve(&self, _env: &PythonEnv) -> Option { - // We will find everything in find + fn resolve(&self, env: &PythonEnv) -> Option { + if let Some(ref path) = env.path { + if is_conda_install_location(path) { + // This is a conda install directory, return the Base environment. + if let Some(manager) = get_conda_manager(&path) { + return get_root_python_environment(&path, &manager); + } + } else if is_conda_env_location(path) { + // Find the conda manager. + if let Some(manager) = get_conda_manager_from_env(&path) { + if let Some(env) = get_conda_environment_info(&path, true) { + let python_run_command = get_activation_command(&env, &manager); + return Some(PythonEnvironment { + name: Some(env.name.clone()), + category: messaging::PythonEnvironmentCategory::Conda, + python_executable_path: env.python_executable_path, + version: env.version, + env_path: Some(env.env_path.clone()), + env_manager: Some(manager), + python_run_command, + ..Default::default() + }); + } + } + } + } None } diff --git a/native_locator/src/homebrew.rs b/native_locator/src/homebrew.rs index 78cefd2cd74b..bdc6cc1fa471 100644 --- a/native_locator/src/homebrew.rs +++ b/native_locator/src/homebrew.rs @@ -151,7 +151,7 @@ fn get_python_info( return None; } reported.insert(resolved_exe.to_string_lossy().to_string()); - return Some(PythonEnvironment::new( + let mut env = PythonEnvironment::new( None, None, Some(user_friendly_exe.clone()), @@ -160,7 +160,9 @@ fn get_python_info( get_env_path(python_exe_from_bin_dir, &resolved_exe), None, Some(vec![user_friendly_exe.to_string_lossy().to_string()]), - )); + ); + env.symlinks = Some(vec![resolved_exe.clone(), python_exe_from_bin_dir.clone()]); + return Some(env); } None } diff --git a/native_locator/src/messaging.rs b/native_locator/src/messaging.rs index 808da631f455..d66281067962 100644 --- a/native_locator/src/messaging.rs +++ b/native_locator/src/messaging.rs @@ -86,7 +86,7 @@ pub enum PythonEnvironmentCategory { #[derive(Serialize, Deserialize, Clone)] #[serde(rename_all = "camelCase")] -#[derive(Debug)] +#[derive(Debug, PartialEq)] pub enum Architecture { X64, X86, diff --git a/native_locator/src/pyenv.rs b/native_locator/src/pyenv.rs index e87729de5eda..de7a9c1e69a5 100644 --- a/native_locator/src/pyenv.rs +++ b/native_locator/src/pyenv.rs @@ -1,6 +1,8 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. +use crate::conda::is_conda_env_location; +use crate::conda::is_conda_install_location; use crate::conda::CondaLocator; use crate::known; use crate::known::Environment; @@ -14,9 +16,18 @@ use crate::utils::find_and_parse_pyvenv_cfg; use crate::utils::find_python_binary_path; use crate::utils::PythonEnv; use regex::Regex; +use std::env; use std::fs; use std::path::PathBuf; +#[derive(Debug)] +pub struct PyEnvInfo { + #[allow(dead_code)] + pub exe: Option, + pub versions: Option, + pub version: Option, +} + #[cfg(windows)] fn get_home_pyenv_dir(environment: &dyn known::Environment) -> Option { let home = environment.get_user_home()?; @@ -30,6 +41,16 @@ fn get_home_pyenv_dir(environment: &dyn known::Environment) -> Option { } fn get_binary_from_known_paths(environment: &dyn known::Environment) -> Option { + for known_path in env::split_paths( + &environment + .get_env_var("PATH".to_string()) + .unwrap_or_default(), + ) { + let bin = PathBuf::from(known_path).join("pyenv"); + if bin.exists() { + return Some(bin); + } + } for known_path in environment.get_know_global_search_locations() { let bin = known_path.join("pyenv"); if bin.exists() { @@ -51,19 +72,54 @@ fn get_pyenv_dir(environment: &dyn known::Environment) -> Option { Some(dir) => Some(PathBuf::from(dir)), None => match environment.get_env_var("PYENV".to_string()) { Some(dir) => Some(PathBuf::from(dir)), - None => get_home_pyenv_dir(environment), + None => None, }, } } -fn get_pyenv_binary(environment: &dyn known::Environment) -> Option { - let dir = get_pyenv_dir(environment)?; - let exe = PathBuf::from(dir).join("bin").join("pyenv"); - if fs::metadata(&exe).is_ok() { - Some(exe) - } else { - get_binary_from_known_paths(environment) +fn get_pyenv_info(environment: &dyn known::Environment) -> PyEnvInfo { + let mut pyenv = PyEnvInfo { + exe: None, + versions: None, + version: None, + }; + if let Some(dir) = get_pyenv_dir(environment) { + let versions = dir.join("versions"); + if fs::metadata(&versions).is_ok() { + pyenv.versions = Some(versions); + } + let exe = PathBuf::from(dir).join("bin").join("pyenv"); + if fs::metadata(&exe).is_ok() { + pyenv.exe = Some(exe); + } + } + if let Some(exe) = get_binary_from_known_paths(environment) { + pyenv.exe = Some(exe); + } + + if !pyenv.exe.is_some() || !pyenv.versions.is_some() { + if let Some(path) = get_home_pyenv_dir(environment) { + if pyenv.exe.is_none() { + let exe = path.join("bin").join("pyenv"); + if fs::metadata(&exe).is_ok() { + pyenv.exe = Some(exe); + } + } + if pyenv.versions.is_none() { + let versions = path.join("versions"); + if fs::metadata(&versions).is_ok() { + pyenv.versions = Some(versions); + } + } + } + } + + // Get the version of the pyenv manager + if let Some(ref exe) = pyenv.exe { + pyenv.version = get_pyenv_manager_version(exe, environment); } + + pyenv } fn get_version(folder_name: &String) -> Option { @@ -143,6 +199,13 @@ fn is_conda_environment(path: &PathBuf) -> bool { || name.starts_with("miniconda") || name.starts_with("miniforge"); } + + if is_conda_install_location(path) { + return true; + } + if is_conda_env_location(path) { + return true; + } false } @@ -171,16 +234,11 @@ fn get_virtual_env_environment( pub fn list_pyenv_environments( manager: &Option, - environment: &dyn known::Environment, + versions_dir: &PathBuf, conda_locator: &mut dyn CondaLocator, -) -> Option> { - let pyenv_dir = get_pyenv_dir(environment)?; +) -> Option { let mut envs: Vec = vec![]; - let versions_dir = PathBuf::from(&pyenv_dir) - .join("versions") - .into_os_string() - .into_string() - .ok()?; + let mut managers: Vec = vec![]; for entry in fs::read_dir(&versions_dir).ok()?.filter_map(Result::ok) { let path = entry.path(); @@ -197,12 +255,18 @@ pub fn list_pyenv_environments( result.environments.iter().for_each(|e| { envs.push(e.clone()); }); + result.managers.iter().for_each(|e| { + managers.push(e.clone()); + }); } } } } - Some(envs) + Some(LocatorResult { + managers, + environments: envs, + }) } #[cfg(windows)] @@ -228,22 +292,20 @@ fn get_pyenv_manager_version( #[cfg(unix)] fn get_pyenv_manager_version( - pyenv_binary_path: &PathBuf, + pyenv_exe: &PathBuf, _environment: &dyn known::Environment, ) -> Option { - // Look for version in path - // Sample /opt/homebrew/Cellar/pyenv/2.4.0/libexec/pyenv - if !pyenv_binary_path.to_string_lossy().contains("/pyenv/") { - return None; + if let Some(ref real_path) = fs::read_link(pyenv_exe).ok() { + // Look for version in path + // Sample /opt/homebrew/Cellar/pyenv/2.4.0/libexec/pyenv + let version_regex = Regex::new(r"pyenv/((\d+\.?)*)/").unwrap(); + let captures = version_regex + .captures(&real_path.to_str().unwrap_or_default())? + .get(1)?; + Some(captures.as_str().to_string()) + } else { + None } - // Find the real path, generally we have a symlink. - let real_path = fs::read_link(pyenv_binary_path) - .ok()? - .to_string_lossy() - .to_string(); - let version_regex = Regex::new(r"pyenv/(\d+\.\d+\.\d+)/").unwrap(); - let captures = version_regex.captures(&real_path)?.get(1)?; - Some(captures.as_str().to_string()) } pub struct PyEnv<'a> { @@ -264,27 +326,68 @@ impl PyEnv<'_> { } impl Locator for PyEnv<'_> { - fn resolve(&self, _env: &PythonEnv) -> Option { - // We will find everything in gather + fn resolve(&self, env: &PythonEnv) -> Option { + // Env path must exists, + // If exe is Scripts/python.exe or bin/python.exe + // Then env path is parent of Scripts or bin + // & in pyenv case thats a directory inside `versions` folder. + let env_path = &env.path.clone()?; + let pyenv_info = get_pyenv_info(self.environment); + let mut manager: Option = None; + if let Some(ref exe) = pyenv_info.exe { + let version = pyenv_info.version.clone(); + manager = Some(messaging::EnvManager::new( + exe.clone(), + version, + EnvManagerType::Pyenv, + )); + } + + let versions = &pyenv_info.versions?; + if env.executable.starts_with(versions) { + if let Some(env) = get_pure_python_environment(&env.executable, env_path, &manager) { + return Some(env); + } else if let Some(env) = + get_virtual_env_environment(&env.executable, env_path, &manager) + { + return Some(env); + } + } None } fn find(&mut self) -> Option { - let pyenv_binary = get_pyenv_binary(self.environment)?; - let version = get_pyenv_manager_version(&pyenv_binary, self.environment); - let manager = messaging::EnvManager::new(pyenv_binary, version, EnvManagerType::Pyenv); + let pyenv_info = get_pyenv_info(self.environment); + let mut managers: Vec = vec![]; + let mut manager: Option = None; let mut environments: Vec = vec![]; - if let Some(envs) = - list_pyenv_environments(&Some(manager.clone()), self.environment, self.conda_locator) - { - for env in envs { - environments.push(env); + if let Some(ref exe) = pyenv_info.exe { + let version = pyenv_info.version.clone(); + manager = Some(messaging::EnvManager::new( + exe.clone(), + version, + EnvManagerType::Pyenv, + )); + managers.push(manager.clone().unwrap()); + } + if let Some(ref versions) = &pyenv_info.versions { + if let Some(envs) = list_pyenv_environments(&manager, versions, self.conda_locator) { + for env in envs.environments { + environments.push(env); + } + for mgr in envs.managers { + managers.push(mgr); + } } } - Some(LocatorResult { - managers: vec![manager], - environments, - }) + if environments.is_empty() && managers.is_empty() { + None + } else { + Some(LocatorResult { + managers, + environments, + }) + } } } diff --git a/native_locator/tests/conda_test.rs b/native_locator/tests/conda_test.rs index db6c1338ca9f..dd2ab7fe42d7 100644 --- a/native_locator/tests/conda_test.rs +++ b/native_locator/tests/conda_test.rs @@ -196,8 +196,8 @@ fn find_conda_from_custom_install_location() { python_run_command: Some(vec![ conda_exe.clone().to_str().unwrap().to_string(), "run".to_string(), - "-p".to_string(), - conda_dir.to_string_lossy().to_string(), + "-n".to_string(), + "base".to_string(), "python".to_string(), ]), arch: None, @@ -215,7 +215,7 @@ fn finds_two_conda_envs_from_known_location() { use crate::common::{ assert_messages, create_test_environment, join_test_paths, test_file_path, }; - use python_finder::messaging::{EnvManager, EnvManagerType, PythonEnvironment}; + use python_finder::messaging::{Architecture, EnvManager, EnvManagerType, PythonEnvironment}; use python_finder::{conda, locator::Locator}; use serde_json::json; use std::collections::HashMap; @@ -243,12 +243,13 @@ fn finds_two_conda_envs_from_known_location() { assert_eq!(managers.len(), 1); let conda_exe = join_test_paths(&[conda_dir.clone().to_str().unwrap(), "bin", "conda"]); + let conda_root_exe = join_test_paths(&[conda_dir.clone().to_str().unwrap(), "bin", "python"]); let conda_1_exe = join_test_paths(&[conda_1.clone().to_str().unwrap(), "python"]); let conda_2_exe = join_test_paths(&[conda_2.clone().to_str().unwrap(), "python"]); let expected_conda_manager = EnvManager { executable_path: conda_exe.clone(), - version: Some("4.0.2".to_string()), + version: Some("23.11.0".to_string()), tool: EnvManagerType::Conda, company: None, company_display_name: None, @@ -257,6 +258,25 @@ fn finds_two_conda_envs_from_known_location() { assert_eq!(managers.len(), 1); assert_eq!(json!(expected_conda_manager), json!(managers[0])); + let expected_conda_root = PythonEnvironment { + display_name: None, + name: None, + project_path: None, + python_executable_path: Some(conda_root_exe.clone()), + category: python_finder::messaging::PythonEnvironmentCategory::Conda, + version: Some("3.11.5".to_string()), + env_path: Some(conda_dir.clone()), + env_manager: Some(expected_conda_manager.clone()), + python_run_command: Some(vec![ + conda_exe.clone().to_str().unwrap().to_string(), + "run".to_string(), + "-n".to_string(), + "base".to_string(), + "python".to_string(), + ]), + arch: Some(Architecture::X64), + ..Default::default() + }; let expected_conda_1 = PythonEnvironment { display_name: None, name: Some("one".to_string()), @@ -296,7 +316,272 @@ fn finds_two_conda_envs_from_known_location() { ..Default::default() }; assert_messages( - &[json!(expected_conda_1), json!(expected_conda_2)], + &[ + json!(expected_conda_root), + json!(expected_conda_1), + json!(expected_conda_2), + ], &environments.iter().map(|e| json!(e)).collect::>(), ); } + +#[test] +#[cfg(unix)] +fn detect_conda_envs_from_envs_directory() { + use crate::common::{create_test_environment, join_test_paths, test_file_path}; + use python_finder::messaging::{EnvManager, EnvManagerType, PythonEnvironment}; + use python_finder::utils::PythonEnv; + use python_finder::{conda, locator::Locator}; + use serde_json::json; + use std::collections::HashMap; + + let home = test_file_path(&["tests/unix/conda/user_home"]); + let conda_dir = test_file_path(&["tests/unix/conda/user_home/anaconda3"]); + let conda_1 = join_test_paths(&[conda_dir.clone().to_str().unwrap(), "envs/one"]); + + let known = create_test_environment( + HashMap::from([( + "PATH".to_string(), + conda_dir.clone().to_str().unwrap().to_string(), + )]), + Some(home), + Vec::new(), + None, + ); + + let locator = conda::Conda::with(&known); + let python_env = PythonEnv { + executable: conda_1.join("bin").join("python"), + version: None, + path: Some(conda_1.clone()), + }; + let result = locator.resolve(&python_env); + assert_eq!(result.is_some(), true); + let result = result.unwrap(); + + let conda_exe = join_test_paths(&[conda_dir.clone().to_str().unwrap(), "bin", "conda"]); + let conda_1_exe = join_test_paths(&[conda_1.clone().to_str().unwrap(), "python"]); + + let expected_conda_manager = EnvManager { + executable_path: conda_exe.clone(), + version: Some("23.11.0".to_string()), + tool: EnvManagerType::Conda, + company: None, + company_display_name: None, + }; + + assert_eq!(json!(expected_conda_manager), json!(&result.env_manager)); + + let expected_conda_1 = PythonEnvironment { + display_name: None, + name: Some("one".to_string()), + project_path: None, + python_executable_path: Some(conda_1_exe.clone()), + category: python_finder::messaging::PythonEnvironmentCategory::Conda, + version: Some("10.0.1".to_string()), + env_path: Some(conda_1.clone()), + env_manager: Some(expected_conda_manager.clone()), + python_run_command: Some(vec![ + conda_exe.clone().to_str().unwrap().to_string(), + "run".to_string(), + "-n".to_string(), + "one".to_string(), + "python".to_string(), + ]), + arch: None, + ..Default::default() + }; + assert_eq!(json!(expected_conda_1), json!(result)); +} + +#[test] +#[cfg(unix)] +fn detect_root_conda_envs_from_install_directory() { + use crate::common::{create_test_environment, join_test_paths, test_file_path}; + use python_finder::messaging::{Architecture, EnvManager, EnvManagerType, PythonEnvironment}; + use python_finder::utils::PythonEnv; + use python_finder::{conda, locator::Locator}; + use serde_json::json; + use std::collections::HashMap; + + let home = test_file_path(&["tests/unix/conda/user_home"]); + let conda_dir = test_file_path(&["tests/unix/conda/user_home/anaconda3"]); + + let known = create_test_environment( + HashMap::from([( + "PATH".to_string(), + conda_dir.clone().to_str().unwrap().to_string(), + )]), + Some(home), + Vec::new(), + None, + ); + + let locator = conda::Conda::with(&known); + let python_env = PythonEnv { + executable: conda_dir.join("bin").join("python"), + version: None, + path: Some(conda_dir.clone()), + }; + let result = locator.resolve(&python_env); + assert_eq!(result.is_some(), true); + let result = result.unwrap(); + + let conda_exe = join_test_paths(&[conda_dir.clone().to_str().unwrap(), "bin", "conda"]); + + let expected_conda_manager = EnvManager { + executable_path: conda_exe.clone(), + version: Some("23.11.0".to_string()), + tool: EnvManagerType::Conda, + company: None, + company_display_name: None, + }; + + assert_eq!(json!(expected_conda_manager), json!(&result.env_manager)); + + let expected_conda_1 = PythonEnvironment { + display_name: None, + name: None, + project_path: None, + python_executable_path: Some(conda_dir.join("bin").join("python")), + category: python_finder::messaging::PythonEnvironmentCategory::Conda, + version: Some("3.11.5".to_string()), + env_path: Some(conda_dir.clone()), + env_manager: Some(expected_conda_manager.clone()), + python_run_command: Some(vec![ + conda_exe.clone().to_str().unwrap().to_string(), + "run".to_string(), + "-n".to_string(), + "base".to_string(), + "python".to_string(), + ]), + arch: Some(Architecture::X64), + ..Default::default() + }; + assert_eq!(json!(expected_conda_1), json!(result)); +} + +#[test] +#[cfg(unix)] +fn detect_conda_envs_from_project_dir_created_using_p_flag() { + use crate::common::{create_test_environment, join_test_paths, test_file_path}; + use python_finder::messaging::{EnvManager, EnvManagerType, PythonEnvironment}; + use python_finder::utils::PythonEnv; + use python_finder::{conda, locator::Locator}; + use serde_json::json; + use std::collections::HashMap; + use std::fs; + + let home = test_file_path(&["tests/unix/conda_env_created_using_p_flag/user_home"]); + let conda_dir = + test_file_path(&["tests/unix/conda_env_created_using_p_flag/user_home/anaconda3"]); + let conda_env = + test_file_path(&["tests/unix/conda_env_created_using_p_flag/user_home/dev_folder/two"]); + let history = test_file_path(&[ + "tests/unix/conda_env_created_using_p_flag/user_home/dev_folder/two/conda-meta/history", + ]); + let history_template = test_file_path(&[ + "tests/unix/conda_env_created_using_p_flag/user_home/dev_folder/two/conda-meta/history.template", + ]); + let history_contents = fs::read_to_string(history_template.clone()).unwrap(); + let _ = fs::write( + &history, + history_contents.replace("", home.to_str().unwrap_or_default()), + ); + + let known = create_test_environment( + HashMap::from([( + "PATH".to_string(), + conda_dir.clone().to_str().unwrap().to_string(), + )]), + Some(home), + Vec::new(), + None, + ); + + let locator = conda::Conda::with(&known); + let python_env = PythonEnv { + executable: conda_env.join("bin").join("python"), + version: None, + path: Some(conda_env.clone()), + }; + let result = locator.resolve(&python_env); + assert_eq!(result.is_some(), true); + let result = result.unwrap(); + + let conda_exe = join_test_paths(&[conda_dir.clone().to_str().unwrap(), "bin", "conda"]); + let conda_env_exe = join_test_paths(&[conda_env.clone().to_str().unwrap(), "python"]); + + let expected_conda_manager = EnvManager { + executable_path: conda_exe.clone(), + version: Some("4.0.2".to_string()), + tool: EnvManagerType::Conda, + company: None, + company_display_name: None, + }; + + assert_eq!(json!(expected_conda_manager), json!(&result.env_manager)); + + let expected_conda_env = PythonEnvironment { + display_name: None, + name: Some("two".to_string()), + project_path: None, + python_executable_path: Some(conda_env_exe.clone()), + category: python_finder::messaging::PythonEnvironmentCategory::Conda, + version: Some("3.12.2".to_string()), + env_path: Some(conda_env.clone()), + env_manager: Some(expected_conda_manager.clone()), + python_run_command: Some(vec![ + conda_exe.clone().to_str().unwrap().to_string(), + "run".to_string(), + "-n".to_string(), + "two".to_string(), + "python".to_string(), + ]), + arch: None, + ..Default::default() + }; + assert_eq!(json!(expected_conda_env), json!(result)); + + // Reset history file + let history_contents = fs::read_to_string(history_template.clone()).unwrap(); + let _ = fs::write(history, history_contents); +} + +#[test] +#[cfg(unix)] +fn get_conda_package_info() { + use crate::common::{join_test_paths, test_file_path}; + use python_finder::conda::{get_conda_package_json_path, CondaPackage}; + + use python_finder::messaging::Architecture; + + let conda_dir = test_file_path(&["tests/unix/conda/user_home/anaconda3"]); + + let conda_package = get_conda_package_json_path(&conda_dir, "conda").unwrap(); + assert_eq!( + conda_package, + CondaPackage { + path: join_test_paths(&[ + conda_dir.to_str().unwrap(), + "conda-meta", + "conda-23.11.0-py311hca03da5_0.json" + ]), + version: "23.11.0".to_string(), + arch: Some(Architecture::X64), + } + ); + let python_package = get_conda_package_json_path(&conda_dir, "python").unwrap(); + assert_eq!( + python_package, + CondaPackage { + path: join_test_paths(&[ + conda_dir.to_str().unwrap(), + "conda-meta", + "python-3.11.5-hb885b13_0.json" + ]), + version: "3.11.5".to_string(), + arch: Some(Architecture::X64), + } + ); +} diff --git a/native_locator/tests/pyenv_test.rs b/native_locator/tests/pyenv_test.rs index 132cc4160a6c..be5da162fb61 100644 --- a/native_locator/tests/pyenv_test.rs +++ b/native_locator/tests/pyenv_test.rs @@ -27,9 +27,7 @@ fn does_not_find_any_pyenv_envs() { #[test] #[cfg(unix)] fn does_not_find_any_pyenv_envs_even_with_pyenv_installed() { - use crate::common::{ - assert_messages, create_test_environment, join_test_paths, test_file_path, - }; + use crate::common::{create_test_environment, join_test_paths, test_file_path}; use python_finder::messaging::{EnvManager, EnvManagerType}; use python_finder::pyenv; use python_finder::{conda::Conda, locator::Locator}; @@ -77,8 +75,9 @@ fn find_pyenv_envs() { use crate::common::{ assert_messages, create_test_environment, join_test_paths, test_file_path, }; - use python_finder::conda::Conda; + use python_finder::conda::{Conda, CondaLocator}; use python_finder::locator::Locator; + use python_finder::messaging::Architecture; use python_finder::{ messaging::{EnvManager, EnvManagerType, PythonEnvironment}, pyenv, @@ -96,21 +95,38 @@ fn find_pyenv_envs() { vec![PathBuf::from(homebrew_bin)], None, ); + let conda_dir = test_file_path(&[ + "tests", + "unix", + "pyenv", + "user_home", + ".pyenv", + "versions", + "anaconda-4.0.0", + ]); + let conda_exe = conda_dir.join("bin").join("conda"); let mut conda = Conda::with(&known); let mut locator = pyenv::PyEnv::with(&known, &mut conda); let result = locator.find().unwrap(); - assert_eq!(result.managers.len(), 1); + assert_eq!(result.managers.len(), 2); - let expected_manager = EnvManager { + let expected_pyenv_manager = EnvManager { executable_path: pyenv_exe.clone(), version: None, tool: EnvManagerType::Pyenv, company: None, company_display_name: None, }; - assert_eq!(json!(expected_manager), json!(result.managers[0])); + let expected_conda_manager = EnvManager { + executable_path: conda_exe.clone(), + version: Some("23.11.0".to_string()), + tool: EnvManagerType::Conda, + company: None, + company_display_name: None, + }; + assert_eq!(json!(expected_pyenv_manager), json!(result.managers[0])); let expected_3_9_9 = json!(PythonEnvironment { display_name: None, @@ -133,7 +149,7 @@ fn find_pyenv_envs() { home.to_str().unwrap(), ".pyenv/versions/3.9.9" ])), - env_manager: Some(expected_manager.clone()), + env_manager: Some(expected_pyenv_manager.clone()), arch: None, ..Default::default() }); @@ -158,7 +174,7 @@ fn find_pyenv_envs() { home.to_str().unwrap(), ".pyenv/versions/my-virtual-env", ])), - env_manager: Some(expected_manager.clone()), + env_manager: Some(expected_pyenv_manager.clone()), arch: None, ..Default::default() }; @@ -183,7 +199,7 @@ fn find_pyenv_envs() { home.to_str().unwrap(), ".pyenv/versions/3.12.1", ])), - env_manager: Some(expected_manager.clone()), + env_manager: Some(expected_pyenv_manager.clone()), arch: None, ..Default::default() }; @@ -208,7 +224,7 @@ fn find_pyenv_envs() { home.to_str().unwrap(), ".pyenv/versions/3.13-dev", ])), - env_manager: Some(expected_manager.clone()), + env_manager: Some(expected_pyenv_manager.clone()), arch: None, ..Default::default() }; @@ -233,7 +249,65 @@ fn find_pyenv_envs() { home.to_str().unwrap(), ".pyenv/versions/3.12.1a3", ])), - env_manager: Some(expected_manager.clone()), + env_manager: Some(expected_pyenv_manager.clone()), + arch: None, + ..Default::default() + }; + + let expected_conda_root = PythonEnvironment { + display_name: None, + project_path: None, + name: None, + python_executable_path: Some(conda_dir.join("bin").join("python")), + python_run_command: Some(vec![ + conda_exe.clone().to_str().unwrap().to_string(), + "run".to_string(), + "-n".to_string(), + "base".to_string(), + "python".to_string(), + ]), + category: python_finder::messaging::PythonEnvironmentCategory::Conda, + version: Some("3.11.5".to_string()), + env_path: Some(conda_dir.clone()), + env_manager: Some(expected_conda_manager.clone()), + arch: Some(Architecture::X64), + ..Default::default() + }; + let expected_conda_one = PythonEnvironment { + display_name: None, + project_path: None, + name: Some("one".to_string()), + python_executable_path: Some(conda_dir.join("envs").join("one").join("python")), + python_run_command: Some(vec![ + conda_exe.clone().to_str().unwrap().to_string(), + "run".to_string(), + "-n".to_string(), + "one".to_string(), + "python".to_string(), + ]), + category: python_finder::messaging::PythonEnvironmentCategory::Conda, + version: Some("3.11.1".to_string()), + env_path: Some(conda_dir.join("envs").join("one")), + env_manager: Some(expected_conda_manager.clone()), + arch: None, + ..Default::default() + }; + let expected_conda_two = PythonEnvironment { + display_name: None, + project_path: None, + name: Some("two".to_string()), + python_executable_path: Some(conda_dir.join("envs").join("two").join("python")), + python_run_command: Some(vec![ + conda_exe.clone().to_str().unwrap().to_string(), + "run".to_string(), + "-n".to_string(), + "two".to_string(), + "python".to_string(), + ]), + category: python_finder::messaging::PythonEnvironmentCategory::Conda, + version: None, + env_path: Some(conda_dir.join("envs").join("two")), + env_manager: Some(expected_conda_manager.clone()), arch: None, ..Default::default() }; @@ -245,6 +319,9 @@ fn find_pyenv_envs() { json!(expected_3_12_1), json!(expected_3_13_dev), json!(expected_3_12_1a3), + json!(expected_conda_root), + json!(expected_conda_one), + json!(expected_conda_two), ], &result .environments @@ -253,3 +330,133 @@ fn find_pyenv_envs() { .collect::>(), ) } + +#[test] +#[cfg(unix)] +fn resolve_pyenv_environment() { + use crate::common::{create_test_environment, join_test_paths, test_file_path}; + use python_finder::conda::Conda; + use python_finder::locator::Locator; + use python_finder::utils::PythonEnv; + use python_finder::{ + messaging::{EnvManager, EnvManagerType, PythonEnvironment}, + pyenv, + }; + use serde_json::json; + use std::{collections::HashMap, path::PathBuf}; + + let home = test_file_path(&["tests", "unix", "pyenv", "user_home"]); + let homebrew_bin = + test_file_path(&["tests", "unix", "pyenv", "home", "opt", "homebrew", "bin"]); + let pyenv_exe = join_test_paths(&[homebrew_bin.to_str().unwrap(), "pyenv"]); + let known = create_test_environment( + HashMap::new(), + Some(home.clone()), + vec![PathBuf::from(homebrew_bin)], + None, + ); + + let mut conda = Conda::with(&known); + let mut locator = pyenv::PyEnv::with(&known, &mut conda); + + let expected_manager = EnvManager { + executable_path: pyenv_exe.clone(), + version: None, + tool: EnvManagerType::Pyenv, + company: None, + company_display_name: None, + }; + + let expected_3_9_9 = json!(PythonEnvironment { + display_name: None, + project_path: None, + name: None, + python_executable_path: Some(join_test_paths(&[ + home.to_str().unwrap(), + ".pyenv/versions/3.9.9/bin/python" + ])), + python_run_command: Some(vec![join_test_paths(&[ + home.to_str().unwrap(), + ".pyenv/versions/3.9.9/bin/python" + ]) + .to_str() + .unwrap() + .to_string()]), + category: python_finder::messaging::PythonEnvironmentCategory::Pyenv, + version: Some("3.9.9".to_string()), + env_path: Some(join_test_paths(&[ + home.to_str().unwrap(), + ".pyenv/versions/3.9.9" + ])), + env_manager: Some(expected_manager.clone()), + arch: None, + ..Default::default() + }); + let expected_virtual_env = PythonEnvironment { + display_name: None, + project_path: None, + name: Some("my-virtual-env".to_string()), + python_executable_path: Some(join_test_paths(&[ + home.to_str().unwrap(), + ".pyenv/versions/my-virtual-env/bin/python", + ])), + python_run_command: Some(vec![join_test_paths(&[ + home.to_str().unwrap(), + ".pyenv/versions/my-virtual-env/bin/python", + ]) + .to_str() + .unwrap() + .to_string()]), + category: python_finder::messaging::PythonEnvironmentCategory::PyenvVirtualEnv, + version: Some("3.10.13".to_string()), + env_path: Some(join_test_paths(&[ + home.to_str().unwrap(), + ".pyenv/versions/my-virtual-env", + ])), + env_manager: Some(expected_manager.clone()), + arch: None, + ..Default::default() + }; + + // Resolve regular Python installs in Pyenv + let result = locator.resolve(&PythonEnv { + executable: join_test_paths(&[home.to_str().unwrap(), ".pyenv/versions/3.9.9/bin/python"]), + path: Some(join_test_paths(&[ + home.to_str().unwrap(), + ".pyenv/versions/3.9.9", + ])), + version: None, + }); + + assert_eq!(json!(result.unwrap()), json!(expected_3_9_9)); + + // Resolve regular virtual-envs in Pyenv + let result = locator.resolve(&PythonEnv { + executable: join_test_paths(&[ + home.to_str().unwrap(), + ".pyenv/versions/my-virtual-env/bin/python", + ]), + path: Some(join_test_paths(&[ + home.to_str().unwrap(), + ".pyenv/versions/my-virtual-env", + ])), + version: None, + }); + + assert_eq!(json!(result.unwrap()), json!(expected_virtual_env)); + + // Should not resolve conda envs in pyenv + let result = locator.resolve(&PythonEnv { + executable: join_test_paths(&[ + home.to_str().unwrap(), + ".pyenv/versions/anaconda-4.0.0/bin/python", + ]), + path: Some(join_test_paths(&[ + home.to_str().unwrap(), + ".pyenv/versions/anaconda-4.0.0", + ])), + version: None, + }); + + assert_eq!(result.is_none(), true); +} diff --git a/native_locator/tests/unix/conda/user_home/anaconda3/conda-meta/conda-4.0.2-pyhd3eb1b0_0.json b/native_locator/tests/unix/conda/user_home/anaconda3/bin/python similarity index 100% rename from native_locator/tests/unix/conda/user_home/anaconda3/conda-meta/conda-4.0.2-pyhd3eb1b0_0.json rename to native_locator/tests/unix/conda/user_home/anaconda3/bin/python diff --git a/native_locator/tests/unix/conda/user_home/anaconda3/conda-meta/conda-23.11.0-py311hca03da5_0.json b/native_locator/tests/unix/conda/user_home/anaconda3/conda-meta/conda-23.11.0-py311hca03da5_0.json new file mode 100644 index 000000000000..3be01e80b809 --- /dev/null +++ b/native_locator/tests/unix/conda/user_home/anaconda3/conda-meta/conda-23.11.0-py311hca03da5_0.json @@ -0,0 +1,632 @@ +{ + "build": "py311hca03da5_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/osx-arm64", + "constrains": [ + "conda-content-trust >=0.1.1", + "conda-build >=3.27", + "conda-env >=2.6" + ], + "depends": [ + "archspec", + "boltons >=23.0.0", + "charset-normalizer", + "conda-libmamba-solver >=23.11.0", + "conda-package-handling >=2.2.0", + "distro >=1.5.0", + "jsonpatch >=1.32", + "menuinst", + "packaging >=23.0", + "platformdirs >=3.10.0", + "pluggy >=1.0.0", + "pycosat >=0.6.3", + "python >=3.11,<3.12.0a0", + "requests >=2.28.0,<3", + "ruamel.yaml >=0.11.14,<0.19", + "setuptools >=60.0.0", + "tqdm >=4", + "truststore >=0.8.0" + ], + "extracted_package_dir": "/Users/donjayamanne/miniconda3/pkgs/conda-23.11.0-py311hca03da5_0", + "features": "", + "files": [ + "bin/activate", + "bin/conda", + "bin/conda-env", + "bin/deactivate", + "condabin/conda", + "etc/fish/conf.d/conda.fish", + "etc/profile.d/conda.csh", + "etc/profile.d/conda.sh", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/INSTALLER", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/METADATA", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/RECORD", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/REQUESTED", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/WHEEL", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/direct_url.json", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/entry_points.txt", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/licenses/AUTHORS.md", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/licenses/LICENSE", + "lib/python3.11/site-packages/conda/__init__.py", + "lib/python3.11/site-packages/conda/__main__.py", + "lib/python3.11/site-packages/conda/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/__version__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/activate.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/api.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/deprecations.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/exception_handler.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/exceptions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/exports.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/history.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/instructions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/misc.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/plan.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/resolve.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/utils.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__version__.py", + "lib/python3.11/site-packages/conda/_vendor/__init__.py", + "lib/python3.11/site-packages/conda/_vendor/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/__pycache__/appdirs.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/__pycache__/distro.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/appdirs.LICENSE.txt", + "lib/python3.11/site-packages/conda/_vendor/appdirs.py", + "lib/python3.11/site-packages/conda/_vendor/boltons/LICENSE", + "lib/python3.11/site-packages/conda/_vendor/boltons/__init__.py", + "lib/python3.11/site-packages/conda/_vendor/boltons/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/boltons/__pycache__/setutils.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/boltons/__pycache__/timeutils.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/boltons/setutils.py", + "lib/python3.11/site-packages/conda/_vendor/boltons/timeutils.py", + "lib/python3.11/site-packages/conda/_vendor/cpuinfo/__init__.py", + "lib/python3.11/site-packages/conda/_vendor/cpuinfo/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/cpuinfo/__pycache__/cpuinfo.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/cpuinfo/cpuinfo.py", + "lib/python3.11/site-packages/conda/_vendor/distro.LICENSE.txt", + "lib/python3.11/site-packages/conda/_vendor/distro.py", + "lib/python3.11/site-packages/conda/_vendor/frozendict/LICENSE.txt", + "lib/python3.11/site-packages/conda/_vendor/frozendict/__init__.py", + "lib/python3.11/site-packages/conda/_vendor/frozendict/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/py_cpuinfo.LICENSE", + "lib/python3.11/site-packages/conda/_vendor/vendor.txt", + "lib/python3.11/site-packages/conda/activate.py", + "lib/python3.11/site-packages/conda/api.py", + "lib/python3.11/site-packages/conda/auxlib/LICENSE", + "lib/python3.11/site-packages/conda/auxlib/__init__.py", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/collection.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/compat.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/decorators.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/entity.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/exceptions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/ish.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/logz.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/packaging.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/type_coercion.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/collection.py", + "lib/python3.11/site-packages/conda/auxlib/compat.py", + "lib/python3.11/site-packages/conda/auxlib/decorators.py", + "lib/python3.11/site-packages/conda/auxlib/entity.py", + "lib/python3.11/site-packages/conda/auxlib/exceptions.py", + "lib/python3.11/site-packages/conda/auxlib/ish.py", + "lib/python3.11/site-packages/conda/auxlib/logz.py", + "lib/python3.11/site-packages/conda/auxlib/packaging.py", + "lib/python3.11/site-packages/conda/auxlib/type_coercion.py", + "lib/python3.11/site-packages/conda/base/__init__.py", + "lib/python3.11/site-packages/conda/base/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/base/__pycache__/constants.cpython-311.pyc", + "lib/python3.11/site-packages/conda/base/__pycache__/context.cpython-311.pyc", + "lib/python3.11/site-packages/conda/base/__pycache__/exceptions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/base/constants.py", + "lib/python3.11/site-packages/conda/base/context.py", + "lib/python3.11/site-packages/conda/base/exceptions.py", + "lib/python3.11/site-packages/conda/cli/__init__.py", + "lib/python3.11/site-packages/conda/cli/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/actions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/common.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/conda_argparse.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/find_commands.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/helpers.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/install.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_clean.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_compare.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_config.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_create.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_info.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_init.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_install.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_list.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_mock_activate.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_mock_deactivate.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_notices.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_package.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_pip.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_remove.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_rename.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_run.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_search.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_update.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/python_api.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/actions.py", + "lib/python3.11/site-packages/conda/cli/common.py", + "lib/python3.11/site-packages/conda/cli/conda_argparse.py", + "lib/python3.11/site-packages/conda/cli/find_commands.py", + "lib/python3.11/site-packages/conda/cli/helpers.py", + "lib/python3.11/site-packages/conda/cli/install.py", + "lib/python3.11/site-packages/conda/cli/main.py", + "lib/python3.11/site-packages/conda/cli/main_clean.py", + "lib/python3.11/site-packages/conda/cli/main_compare.py", + "lib/python3.11/site-packages/conda/cli/main_config.py", + "lib/python3.11/site-packages/conda/cli/main_create.py", + "lib/python3.11/site-packages/conda/cli/main_info.py", + "lib/python3.11/site-packages/conda/cli/main_init.py", + "lib/python3.11/site-packages/conda/cli/main_install.py", + "lib/python3.11/site-packages/conda/cli/main_list.py", + "lib/python3.11/site-packages/conda/cli/main_mock_activate.py", + "lib/python3.11/site-packages/conda/cli/main_mock_deactivate.py", + "lib/python3.11/site-packages/conda/cli/main_notices.py", + "lib/python3.11/site-packages/conda/cli/main_package.py", + "lib/python3.11/site-packages/conda/cli/main_pip.py", + "lib/python3.11/site-packages/conda/cli/main_remove.py", + "lib/python3.11/site-packages/conda/cli/main_rename.py", + "lib/python3.11/site-packages/conda/cli/main_run.py", + "lib/python3.11/site-packages/conda/cli/main_search.py", + "lib/python3.11/site-packages/conda/cli/main_update.py", + "lib/python3.11/site-packages/conda/cli/python_api.py", + "lib/python3.11/site-packages/conda/common/__init__.py", + "lib/python3.11/site-packages/conda/common/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/_logic.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/compat.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/configuration.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/constants.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/decorators.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/disk.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/io.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/iterators.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/logic.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/path.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/serialize.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/signals.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/toposort.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/url.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/_logic.py", + "lib/python3.11/site-packages/conda/common/_os/__init__.py", + "lib/python3.11/site-packages/conda/common/_os/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/_os/__pycache__/linux.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/_os/__pycache__/unix.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/_os/__pycache__/windows.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/_os/linux.py", + "lib/python3.11/site-packages/conda/common/_os/unix.py", + "lib/python3.11/site-packages/conda/common/_os/windows.py", + "lib/python3.11/site-packages/conda/common/compat.py", + "lib/python3.11/site-packages/conda/common/configuration.py", + "lib/python3.11/site-packages/conda/common/constants.py", + "lib/python3.11/site-packages/conda/common/decorators.py", + "lib/python3.11/site-packages/conda/common/disk.py", + "lib/python3.11/site-packages/conda/common/io.py", + "lib/python3.11/site-packages/conda/common/iterators.py", + "lib/python3.11/site-packages/conda/common/logic.py", + "lib/python3.11/site-packages/conda/common/path.py", + "lib/python3.11/site-packages/conda/common/pkg_formats/__init__.py", + "lib/python3.11/site-packages/conda/common/pkg_formats/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/pkg_formats/__pycache__/python.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/pkg_formats/python.py", + "lib/python3.11/site-packages/conda/common/serialize.py", + "lib/python3.11/site-packages/conda/common/signals.py", + "lib/python3.11/site-packages/conda/common/toposort.py", + "lib/python3.11/site-packages/conda/common/url.py", + "lib/python3.11/site-packages/conda/core/__init__.py", + "lib/python3.11/site-packages/conda/core/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/envs_manager.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/index.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/initialize.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/link.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/package_cache.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/package_cache_data.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/path_actions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/portability.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/prefix_data.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/solve.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/subdir_data.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/envs_manager.py", + "lib/python3.11/site-packages/conda/core/index.py", + "lib/python3.11/site-packages/conda/core/initialize.py", + "lib/python3.11/site-packages/conda/core/link.py", + "lib/python3.11/site-packages/conda/core/package_cache.py", + "lib/python3.11/site-packages/conda/core/package_cache_data.py", + "lib/python3.11/site-packages/conda/core/path_actions.py", + "lib/python3.11/site-packages/conda/core/portability.py", + "lib/python3.11/site-packages/conda/core/prefix_data.py", + "lib/python3.11/site-packages/conda/core/solve.py", + "lib/python3.11/site-packages/conda/core/subdir_data.py", + "lib/python3.11/site-packages/conda/deprecations.py", + "lib/python3.11/site-packages/conda/exception_handler.py", + "lib/python3.11/site-packages/conda/exceptions.py", + "lib/python3.11/site-packages/conda/exports.py", + "lib/python3.11/site-packages/conda/gateways/__init__.py", + "lib/python3.11/site-packages/conda/gateways/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/__pycache__/anaconda_client.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/__pycache__/logging.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/__pycache__/subprocess.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/anaconda_client.py", + "lib/python3.11/site-packages/conda/gateways/connection/__init__.py", + "lib/python3.11/site-packages/conda/gateways/connection/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/__pycache__/download.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/__pycache__/session.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/__init__.py", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/__pycache__/ftp.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/__pycache__/http.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/__pycache__/localfs.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/__pycache__/s3.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/ftp.py", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/http.py", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/localfs.py", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/s3.py", + "lib/python3.11/site-packages/conda/gateways/connection/download.py", + "lib/python3.11/site-packages/conda/gateways/connection/session.py", + "lib/python3.11/site-packages/conda/gateways/disk/__init__.py", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/create.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/delete.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/link.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/lock.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/permissions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/read.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/test.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/update.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/create.py", + "lib/python3.11/site-packages/conda/gateways/disk/delete.py", + "lib/python3.11/site-packages/conda/gateways/disk/link.py", + "lib/python3.11/site-packages/conda/gateways/disk/lock.py", + "lib/python3.11/site-packages/conda/gateways/disk/permissions.py", + "lib/python3.11/site-packages/conda/gateways/disk/read.py", + "lib/python3.11/site-packages/conda/gateways/disk/test.py", + "lib/python3.11/site-packages/conda/gateways/disk/update.py", + "lib/python3.11/site-packages/conda/gateways/logging.py", + "lib/python3.11/site-packages/conda/gateways/repodata/__init__.py", + "lib/python3.11/site-packages/conda/gateways/repodata/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/repodata/__pycache__/lock.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/__init__.py", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/__pycache__/core.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/__pycache__/fetch.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/__pycache__/interface.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/core.py", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/fetch.py", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/interface.py", + "lib/python3.11/site-packages/conda/gateways/repodata/lock.py", + "lib/python3.11/site-packages/conda/gateways/subprocess.py", + "lib/python3.11/site-packages/conda/history.py", + "lib/python3.11/site-packages/conda/instructions.py", + "lib/python3.11/site-packages/conda/misc.py", + "lib/python3.11/site-packages/conda/models/__init__.py", + "lib/python3.11/site-packages/conda/models/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/channel.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/dist.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/enums.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/leased_path_entry.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/match_spec.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/package_info.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/prefix_graph.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/records.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/version.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/channel.py", + "lib/python3.11/site-packages/conda/models/dist.py", + "lib/python3.11/site-packages/conda/models/enums.py", + "lib/python3.11/site-packages/conda/models/leased_path_entry.py", + "lib/python3.11/site-packages/conda/models/match_spec.py", + "lib/python3.11/site-packages/conda/models/package_info.py", + "lib/python3.11/site-packages/conda/models/prefix_graph.py", + "lib/python3.11/site-packages/conda/models/records.py", + "lib/python3.11/site-packages/conda/models/version.py", + "lib/python3.11/site-packages/conda/notices/__init__.py", + "lib/python3.11/site-packages/conda/notices/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/notices/__pycache__/cache.cpython-311.pyc", + "lib/python3.11/site-packages/conda/notices/__pycache__/core.cpython-311.pyc", + "lib/python3.11/site-packages/conda/notices/__pycache__/fetch.cpython-311.pyc", + "lib/python3.11/site-packages/conda/notices/__pycache__/types.cpython-311.pyc", + "lib/python3.11/site-packages/conda/notices/__pycache__/views.cpython-311.pyc", + "lib/python3.11/site-packages/conda/notices/cache.py", + "lib/python3.11/site-packages/conda/notices/core.py", + "lib/python3.11/site-packages/conda/notices/fetch.py", + "lib/python3.11/site-packages/conda/notices/types.py", + "lib/python3.11/site-packages/conda/notices/views.py", + "lib/python3.11/site-packages/conda/plan.py", + "lib/python3.11/site-packages/conda/plugins/__init__.py", + "lib/python3.11/site-packages/conda/plugins/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/__pycache__/hookspec.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/__pycache__/manager.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/__pycache__/solvers.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/__pycache__/types.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/hookspec.py", + "lib/python3.11/site-packages/conda/plugins/manager.py", + "lib/python3.11/site-packages/conda/plugins/solvers.py", + "lib/python3.11/site-packages/conda/plugins/subcommands/__init__.py", + "lib/python3.11/site-packages/conda/plugins/subcommands/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/subcommands/doctor/__init__.py", + "lib/python3.11/site-packages/conda/plugins/subcommands/doctor/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/subcommands/doctor/__pycache__/health_checks.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/subcommands/doctor/health_checks.py", + "lib/python3.11/site-packages/conda/plugins/types.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__init__.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/archspec.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/conda.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/cuda.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/freebsd.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/linux.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/osx.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/windows.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/archspec.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/conda.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/cuda.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/freebsd.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/linux.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/osx.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/windows.py", + "lib/python3.11/site-packages/conda/py.typed", + "lib/python3.11/site-packages/conda/resolve.py", + "lib/python3.11/site-packages/conda/shell/Library/bin/conda.bat", + "lib/python3.11/site-packages/conda/shell/Scripts/activate.bat", + "lib/python3.11/site-packages/conda/shell/bin/activate", + "lib/python3.11/site-packages/conda/shell/bin/conda", + "lib/python3.11/site-packages/conda/shell/bin/deactivate", + "lib/python3.11/site-packages/conda/shell/cli-32.exe", + "lib/python3.11/site-packages/conda/shell/cli-64.exe", + "lib/python3.11/site-packages/conda/shell/conda.xsh", + "lib/python3.11/site-packages/conda/shell/conda_icon.ico", + "lib/python3.11/site-packages/conda/shell/condabin/Conda.psm1", + "lib/python3.11/site-packages/conda/shell/condabin/_conda_activate.bat", + "lib/python3.11/site-packages/conda/shell/condabin/activate.bat", + "lib/python3.11/site-packages/conda/shell/condabin/conda-hook.ps1", + "lib/python3.11/site-packages/conda/shell/condabin/conda.bat", + "lib/python3.11/site-packages/conda/shell/condabin/conda_auto_activate.bat", + "lib/python3.11/site-packages/conda/shell/condabin/conda_hook.bat", + "lib/python3.11/site-packages/conda/shell/condabin/deactivate.bat", + "lib/python3.11/site-packages/conda/shell/condabin/rename_tmp.bat", + "lib/python3.11/site-packages/conda/shell/etc/fish/conf.d/conda.fish", + "lib/python3.11/site-packages/conda/shell/etc/profile.d/conda.csh", + "lib/python3.11/site-packages/conda/shell/etc/profile.d/conda.sh", + "lib/python3.11/site-packages/conda/testing/__init__.py", + "lib/python3.11/site-packages/conda/testing/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/__pycache__/cases.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/__pycache__/fixtures.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/__pycache__/helpers.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/__pycache__/integration.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/__pycache__/solver_helpers.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/cases.py", + "lib/python3.11/site-packages/conda/testing/fixtures.py", + "lib/python3.11/site-packages/conda/testing/gateways/__init__.py", + "lib/python3.11/site-packages/conda/testing/gateways/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/gateways/__pycache__/fixtures.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/gateways/fixtures.py", + "lib/python3.11/site-packages/conda/testing/helpers.py", + "lib/python3.11/site-packages/conda/testing/integration.py", + "lib/python3.11/site-packages/conda/testing/notices/__init__.py", + "lib/python3.11/site-packages/conda/testing/notices/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/notices/__pycache__/fixtures.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/notices/__pycache__/helpers.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/notices/fixtures.py", + "lib/python3.11/site-packages/conda/testing/notices/helpers.py", + "lib/python3.11/site-packages/conda/testing/solver_helpers.py", + "lib/python3.11/site-packages/conda/trust/__init__.py", + "lib/python3.11/site-packages/conda/trust/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/trust/__pycache__/constants.cpython-311.pyc", + "lib/python3.11/site-packages/conda/trust/__pycache__/signature_verification.cpython-311.pyc", + "lib/python3.11/site-packages/conda/trust/constants.py", + "lib/python3.11/site-packages/conda/trust/signature_verification.py", + "lib/python3.11/site-packages/conda/utils.py", + "lib/python3.11/site-packages/conda_env/README.md", + "lib/python3.11/site-packages/conda_env/__init__.py", + "lib/python3.11/site-packages/conda_env/__main__.py", + "lib/python3.11/site-packages/conda_env/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/__pycache__/env.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/__pycache__/pip_util.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__init__.py", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/common.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_config.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_create.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_export.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_list.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_remove.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_update.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_vars.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/common.py", + "lib/python3.11/site-packages/conda_env/cli/main.py", + "lib/python3.11/site-packages/conda_env/cli/main_config.py", + "lib/python3.11/site-packages/conda_env/cli/main_create.py", + "lib/python3.11/site-packages/conda_env/cli/main_export.py", + "lib/python3.11/site-packages/conda_env/cli/main_list.py", + "lib/python3.11/site-packages/conda_env/cli/main_remove.py", + "lib/python3.11/site-packages/conda_env/cli/main_update.py", + "lib/python3.11/site-packages/conda_env/cli/main_vars.py", + "lib/python3.11/site-packages/conda_env/env.py", + "lib/python3.11/site-packages/conda_env/installers/__init__.py", + "lib/python3.11/site-packages/conda_env/installers/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/installers/__pycache__/base.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/installers/__pycache__/conda.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/installers/__pycache__/pip.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/installers/base.py", + "lib/python3.11/site-packages/conda_env/installers/conda.py", + "lib/python3.11/site-packages/conda_env/installers/pip.py", + "lib/python3.11/site-packages/conda_env/pip_util.py", + "lib/python3.11/site-packages/conda_env/specs/__init__.py", + "lib/python3.11/site-packages/conda_env/specs/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/specs/__pycache__/binstar.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/specs/__pycache__/requirements.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/specs/__pycache__/yaml_file.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/specs/binstar.py", + "lib/python3.11/site-packages/conda_env/specs/requirements.py", + "lib/python3.11/site-packages/conda_env/specs/yaml_file.py", + "lib/python3.11/site-packages/tests/conda_env/__init__.py", + "lib/python3.11/site-packages/tests/conda_env/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/__pycache__/test_cli.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/__pycache__/test_create.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/__pycache__/test_env.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/__pycache__/test_pip_util.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/__pycache__/utils.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/specs/__init__.py", + "lib/python3.11/site-packages/tests/conda_env/specs/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/specs/__pycache__/test_binstar.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/specs/__pycache__/test_requirements.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/specs/__pycache__/test_yaml_file.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/specs/test_binstar.py", + "lib/python3.11/site-packages/tests/conda_env/specs/test_requirements.py", + "lib/python3.11/site-packages/tests/conda_env/specs/test_yaml_file.py", + "lib/python3.11/site-packages/tests/conda_env/support/add-pip.yml", + "lib/python3.11/site-packages/tests/conda_env/support/advanced-pip/.gitignore", + "lib/python3.11/site-packages/tests/conda_env/support/advanced-pip/another-project-requirements.txt", + "lib/python3.11/site-packages/tests/conda_env/support/advanced-pip/environment.yml", + "lib/python3.11/site-packages/tests/conda_env/support/advanced-pip/module_to_install_in_editable_mode/__pycache__/setup.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/support/advanced-pip/module_to_install_in_editable_mode/setup.py", + "lib/python3.11/site-packages/tests/conda_env/support/channels_with_envvars.yml", + "lib/python3.11/site-packages/tests/conda_env/support/empty_env.yml", + "lib/python3.11/site-packages/tests/conda_env/support/env_with_dependencies.yml", + "lib/python3.11/site-packages/tests/conda_env/support/example-yaml/environment.yaml", + "lib/python3.11/site-packages/tests/conda_env/support/example/environment.yml", + "lib/python3.11/site-packages/tests/conda_env/support/example/environment_host_port.yml", + "lib/python3.11/site-packages/tests/conda_env/support/example/environment_pinned.yml", + "lib/python3.11/site-packages/tests/conda_env/support/example/environment_pinned_updated.yml", + "lib/python3.11/site-packages/tests/conda_env/support/foo/bar/baz/readme", + "lib/python3.11/site-packages/tests/conda_env/support/foo/bar/readme", + "lib/python3.11/site-packages/tests/conda_env/support/foo/environment.yml", + "lib/python3.11/site-packages/tests/conda_env/support/invalid_keys.yml", + "lib/python3.11/site-packages/tests/conda_env/support/notebook.ipynb", + "lib/python3.11/site-packages/tests/conda_env/support/notebook_with_env.ipynb", + "lib/python3.11/site-packages/tests/conda_env/support/pip_argh.yml", + "lib/python3.11/site-packages/tests/conda_env/support/requirements.txt", + "lib/python3.11/site-packages/tests/conda_env/support/saved-env/environment.yml", + "lib/python3.11/site-packages/tests/conda_env/support/simple.yml", + "lib/python3.11/site-packages/tests/conda_env/support/valid_keys.yml", + "lib/python3.11/site-packages/tests/conda_env/support/with-pip.yml", + "lib/python3.11/site-packages/tests/conda_env/test_cli.py", + "lib/python3.11/site-packages/tests/conda_env/test_create.py", + "lib/python3.11/site-packages/tests/conda_env/test_env.py", + "lib/python3.11/site-packages/tests/conda_env/test_pip_util.py", + "lib/python3.11/site-packages/tests/conda_env/utils.py", + "lib/python3.11/site-packages/tests/test-recipes/activate_deactivate_package/src/etc/conda/activate.d/activate.bat", + "lib/python3.11/site-packages/tests/test-recipes/activate_deactivate_package/src/etc/conda/activate.d/activate.sh", + "lib/python3.11/site-packages/tests/test-recipes/activate_deactivate_package/src/etc/conda/deactivate.d/deactivate.bat", + "lib/python3.11/site-packages/tests/test-recipes/activate_deactivate_package/src/etc/conda/deactivate.d/deactivate.sh", + "lib/python3.11/site-packages/xontrib/conda.xsh", + "shell/condabin/Conda.psm1", + "shell/condabin/conda-hook.ps1" + ], + "fn": "conda-23.11.0-py311hca03da5_0.conda", + "license": "BSD-3-Clause", + "link": { + "source": "/Users/donjayamanne/miniconda3/pkgs/conda-23.11.0-py311hca03da5_0", + "type": 1 + }, + "md5": "d40f56a649df2d05c5468713732e005e", + "name": "conda", + "package_tarball_full_path": "/Users/donjayamanne/miniconda3/pkgs/conda-23.11.0-py311hca03da5_0.conda", + "paths_data": { + "paths": [ + { + "_path": "bin/activate", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "92dd3f5997c70939665a9000ba114ba13f28c5ce1341fa75060f48dcb808a127", + "sha256_in_prefix": "4270a26a4429c0dd5a4c35900f8b2211b35c7447367b6f2b8470bdedc1f240ca", + "size_in_bytes": 429 + }, + { + "_path": "bin/conda", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "c6380d731f573d898f146d5580e0447dd44d068d619bda7aff326095f8bc4f88", + "sha256_in_prefix": "b5dd14921f011aa934757f31b62e0fa2be17a1a9f99ccb2d26a1f12a864d64e8", + "size_in_bytes": 756 + }, + { + "_path": "bin/conda-env", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "c7e6fa37766fe556ef4f95c0860a0eb7f7817c6f057ba9369e248bcdd7f37c9d", + "sha256_in_prefix": "88be67a0d6c47edbd65fa3d860a3514daed6b6bac830ec93800cf43fd778379c", + "size_in_bytes": 393 + }, + { + "_path": "bin/deactivate", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "a69da038fee96660c3f47c2c393c05b54986ba0c929aada61cd410df6e09746e", + "sha256_in_prefix": "2af9834dc0f7c2fb9db2f9e67829700c6828774d9ad7996602324c5a5387a89c", + "size_in_bytes": 517 + }, + { + "_path": "condabin/conda", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "c6380d731f573d898f146d5580e0447dd44d068d619bda7aff326095f8bc4f88", + "sha256_in_prefix": "b5dd14921f011aa934757f31b62e0fa2be17a1a9f99ccb2d26a1f12a864d64e8", + "size_in_bytes": 756 + }, + { + "_path": "etc/fish/conf.d/conda.fish", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "85caec3d76f3239e105f88cbafc6acbe04cd97fd4c1db4da4e0dcf4d357a631e", + "sha256_in_prefix": "a1ab61539200ab52ec85d9bf7de9b1cfe4a7fbdd4da2f6a7882d417ea8c7d3e1", + "size_in_bytes": 4880 + }, + { + "_path": "etc/profile.d/conda.csh", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "966581001ffd439152bf4432c7c436e25014aa2386668a00145b4087aa354604", + "sha256_in_prefix": "85a53ef7d70dcb1c16695b970bbc3880b74eaa23fff43dde57796e34fcb2ead7", + "size_in_bytes": 3163 + }, + { + "_path": "etc/profile.d/conda.sh", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "a147ccd49f1579e69c49cb12114421d95b84a1e02ef1df7c4f8c51d44cd026d1", + "sha256_in_prefix": "920d3be6a977141273da05e8d0a1867352013f1e2702a313fea15a101432f344", + "size_in_bytes": 2552 + }, + { + "_path": "lib/python3.11/site-packages/xontrib/conda.xsh", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "e0e9fb9f5d108c70434802b45e51910671b409a3cddd7b4ec887af2b07e2ce05", + "sha256_in_prefix": "c0650607c2cf90f2ce94f3b7370349922fdac5901e3316fa9f065d8773b3f944", + "size_in_bytes": 7565 + }, + { + "_path": "shell/condabin/conda-hook.ps1", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "94f9a90527bf021292a113a9e546e3f5dd042ae3afc0ed2a7a5763ef312ac756", + "sha256_in_prefix": "4edd554f34b2aa567876996da1be4cbc89d866e0e3d958f42d7889ccff8f617f", + "size_in_bytes": 1047 + } + ], + "paths_version": 1 + }, + "requested_spec": "defaults/osx-arm64::conda==23.11.0=py311hca03da5_0[md5=d40f56a649df2d05c5468713732e005e]", + "sha256": "63ade392153a88ba334593059bfce7ab3b6df1dbbd6622655c8a7db587f70a78", + "size": 1317120, + "subdir": "osx-arm64", + "timestamp": 1701719702000, + "track_features": "", + "url": "https://repo.anaconda.com/pkgs/main/osx-arm64/conda-23.11.0-py311hca03da5_0.conda", + "version": "23.11.0" +} \ No newline at end of file diff --git a/native_locator/tests/unix/conda/user_home/anaconda3/conda-meta/history b/native_locator/tests/unix/conda/user_home/anaconda3/conda-meta/history new file mode 100644 index 000000000000..b196a3e5922b --- /dev/null +++ b/native_locator/tests/unix/conda/user_home/anaconda3/conda-meta/history @@ -0,0 +1,72 @@ +==> 2024-02-14 17:04:16 <== +# cmd: /Users/donjayamanne/miniconda3/conda.exe install --offline --file /Users/donjayamanne/miniconda3/pkgs/env.txt -yp /Users/donjayamanne/miniconda3 +# conda version: 23.10.0 ++defaults/noarch::archspec-0.2.1-pyhd3eb1b0_0 ++defaults/noarch::charset-normalizer-2.0.4-pyhd3eb1b0_0 ++defaults/noarch::conda-libmamba-solver-23.12.0-pyhd3eb1b0_1 ++defaults/noarch::jsonpatch-1.32-pyhd3eb1b0_0 ++defaults/noarch::jsonpointer-2.1-pyhd3eb1b0_0 ++defaults/noarch::pybind11-abi-4-hd3eb1b0_1 ++defaults/noarch::pycparser-2.21-pyhd3eb1b0_0 ++defaults/noarch::tzdata-2023c-h04d1e81_0 ++defaults/osx-arm64::boltons-23.0.0-py311hca03da5_0 ++defaults/osx-arm64::brotli-python-1.0.9-py311h313beb8_7 ++defaults/osx-arm64::bzip2-1.0.8-h620ffc9_4 ++defaults/osx-arm64::c-ares-1.19.1-h80987f9_0 ++defaults/osx-arm64::ca-certificates-2023.12.12-hca03da5_0 ++defaults/osx-arm64::certifi-2023.11.17-py311hca03da5_0 ++defaults/osx-arm64::cffi-1.16.0-py311h80987f9_0 ++defaults/osx-arm64::conda-23.11.0-py311hca03da5_0 ++defaults/osx-arm64::conda-content-trust-0.2.0-py311hca03da5_0 ++defaults/osx-arm64::conda-package-handling-2.2.0-py311hca03da5_0 ++defaults/osx-arm64::conda-package-streaming-0.9.0-py311hca03da5_0 ++defaults/osx-arm64::cryptography-41.0.7-py311hd4332d6_0 ++defaults/osx-arm64::distro-1.8.0-py311hca03da5_0 ++defaults/osx-arm64::fmt-9.1.0-h48ca7d4_0 ++defaults/osx-arm64::icu-73.1-h313beb8_0 ++defaults/osx-arm64::idna-3.4-py311hca03da5_0 ++defaults/osx-arm64::krb5-1.20.1-hf3e1bf2_1 ++defaults/osx-arm64::libarchive-3.6.2-h62fee54_2 ++defaults/osx-arm64::libcurl-8.4.0-h3e2b118_1 ++defaults/osx-arm64::libcxx-14.0.6-h848a8c0_0 ++defaults/osx-arm64::libedit-3.1.20230828-h80987f9_0 ++defaults/osx-arm64::libev-4.33-h1a28f6b_1 ++defaults/osx-arm64::libffi-3.4.4-hca03da5_0 ++defaults/osx-arm64::libiconv-1.16-h1a28f6b_2 ++defaults/osx-arm64::libmamba-1.5.3-h15e39b3_0 ++defaults/osx-arm64::libmambapy-1.5.3-py311h1c5506f_0 ++defaults/osx-arm64::libnghttp2-1.57.0-h62f6fdd_0 ++defaults/osx-arm64::libsolv-0.7.24-h514c7bf_0 ++defaults/osx-arm64::libssh2-1.10.0-h02f6b3c_2 ++defaults/osx-arm64::libxml2-2.10.4-h0dcf63f_1 ++defaults/osx-arm64::lz4-c-1.9.4-h313beb8_0 ++defaults/osx-arm64::menuinst-2.0.1-py311hca03da5_1 ++defaults/osx-arm64::ncurses-6.4-h313beb8_0 ++defaults/osx-arm64::openssl-3.0.12-h1a28f6b_0 ++defaults/osx-arm64::packaging-23.1-py311hca03da5_0 ++defaults/osx-arm64::pcre2-10.42-hb066dcc_0 ++defaults/osx-arm64::pip-23.3.1-py311hca03da5_0 ++defaults/osx-arm64::platformdirs-3.10.0-py311hca03da5_0 ++defaults/osx-arm64::pluggy-1.0.0-py311hca03da5_1 ++defaults/osx-arm64::pycosat-0.6.6-py311h80987f9_0 ++defaults/osx-arm64::pyopenssl-23.2.0-py311hca03da5_0 ++defaults/osx-arm64::pysocks-1.7.1-py311hca03da5_0 ++defaults/osx-arm64::python-3.11.5-hb885b13_0 ++defaults/osx-arm64::python.app-3-py311h80987f9_0 ++defaults/osx-arm64::readline-8.2-h1a28f6b_0 ++defaults/osx-arm64::reproc-14.2.4-hc377ac9_1 ++defaults/osx-arm64::reproc-cpp-14.2.4-hc377ac9_1 ++defaults/osx-arm64::requests-2.31.0-py311hca03da5_0 ++defaults/osx-arm64::ruamel.yaml-0.17.21-py311h80987f9_0 ++defaults/osx-arm64::setuptools-68.2.2-py311hca03da5_0 ++defaults/osx-arm64::sqlite-3.41.2-h80987f9_0 ++defaults/osx-arm64::tk-8.6.12-hb8d0fd4_0 ++defaults/osx-arm64::tqdm-4.65.0-py311hb6e6a13_0 ++defaults/osx-arm64::truststore-0.8.0-py311hca03da5_0 ++defaults/osx-arm64::urllib3-1.26.18-py311hca03da5_0 ++defaults/osx-arm64::wheel-0.41.2-py311hca03da5_0 ++defaults/osx-arm64::xz-5.4.5-h80987f9_0 ++defaults/osx-arm64::yaml-cpp-0.8.0-h313beb8_0 ++defaults/osx-arm64::zlib-1.2.13-h5a0b063_0 ++defaults/osx-arm64::zstandard-0.19.0-py311h80987f9_0 ++defaults/osx-arm64::zstd-1.5.5-hd90d995_0 diff --git a/native_locator/tests/unix/conda/user_home/anaconda3/conda-meta/python-3.11.5-hb885b13_0.json b/native_locator/tests/unix/conda/user_home/anaconda3/conda-meta/python-3.11.5-hb885b13_0.json new file mode 100644 index 000000000000..90b9af01a4e0 --- /dev/null +++ b/native_locator/tests/unix/conda/user_home/anaconda3/conda-meta/python-3.11.5-hb885b13_0.json @@ -0,0 +1,2280 @@ +{ + "build": "hb885b13_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/osx-arm64", + "constrains": [], + "depends": [ + "bzip2 >=1.0.8,<2.0a0", + "libffi >=3.4,<3.5", + "libffi >=3.4,<4.0a0", + "ncurses >=6.4,<7.0a0", + "openssl >=3.0.10,<4.0a0", + "readline >=8.1.2,<9.0a0", + "sqlite >=3.41.2,<4.0a0", + "tk >=8.6.12,<8.7.0a0", + "tzdata", + "xz >=5.4.2,<6.0a0", + "zlib >=1.2.13,<1.3.0a0", + "pip" + ], + "extracted_package_dir": "/Users/donjayamanne/miniconda3/pkgs/python-3.11.5-hb885b13_0", + "features": "", + "files": [ + "bin/2to3", + "bin/2to3-3.11", + "bin/idle3", + "bin/idle3.11", + "bin/pydoc", + "bin/pydoc3", + "bin/pydoc3.11", + "bin/python", + "bin/python3", + "bin/python3-config", + "bin/python3.1", + "bin/python3.11", + "bin/python3.11-config", + "include/python3.11/Python.h", + "include/python3.11/abstract.h", + "include/python3.11/bltinmodule.h", + "include/python3.11/boolobject.h", + "include/python3.11/bytearrayobject.h", + "include/python3.11/bytesobject.h", + "include/python3.11/ceval.h", + "include/python3.11/codecs.h", + "include/python3.11/compile.h", + "include/python3.11/complexobject.h", + "include/python3.11/cpython/abstract.h", + "include/python3.11/cpython/bytearrayobject.h", + "include/python3.11/cpython/bytesobject.h", + "include/python3.11/cpython/cellobject.h", + "include/python3.11/cpython/ceval.h", + "include/python3.11/cpython/classobject.h", + "include/python3.11/cpython/code.h", + "include/python3.11/cpython/compile.h", + "include/python3.11/cpython/complexobject.h", + "include/python3.11/cpython/context.h", + "include/python3.11/cpython/descrobject.h", + "include/python3.11/cpython/dictobject.h", + "include/python3.11/cpython/fileobject.h", + "include/python3.11/cpython/fileutils.h", + "include/python3.11/cpython/floatobject.h", + "include/python3.11/cpython/frameobject.h", + "include/python3.11/cpython/funcobject.h", + "include/python3.11/cpython/genobject.h", + "include/python3.11/cpython/import.h", + "include/python3.11/cpython/initconfig.h", + "include/python3.11/cpython/listobject.h", + "include/python3.11/cpython/longintrepr.h", + "include/python3.11/cpython/longobject.h", + "include/python3.11/cpython/methodobject.h", + "include/python3.11/cpython/modsupport.h", + "include/python3.11/cpython/object.h", + "include/python3.11/cpython/objimpl.h", + "include/python3.11/cpython/odictobject.h", + "include/python3.11/cpython/picklebufobject.h", + "include/python3.11/cpython/pthread_stubs.h", + "include/python3.11/cpython/pyctype.h", + "include/python3.11/cpython/pydebug.h", + "include/python3.11/cpython/pyerrors.h", + "include/python3.11/cpython/pyfpe.h", + "include/python3.11/cpython/pyframe.h", + "include/python3.11/cpython/pylifecycle.h", + "include/python3.11/cpython/pymem.h", + "include/python3.11/cpython/pystate.h", + "include/python3.11/cpython/pythonrun.h", + "include/python3.11/cpython/pythread.h", + "include/python3.11/cpython/pytime.h", + "include/python3.11/cpython/setobject.h", + "include/python3.11/cpython/sysmodule.h", + "include/python3.11/cpython/traceback.h", + "include/python3.11/cpython/tupleobject.h", + "include/python3.11/cpython/unicodeobject.h", + "include/python3.11/cpython/warnings.h", + "include/python3.11/cpython/weakrefobject.h", + "include/python3.11/datetime.h", + "include/python3.11/descrobject.h", + "include/python3.11/dictobject.h", + "include/python3.11/dynamic_annotations.h", + "include/python3.11/enumobject.h", + "include/python3.11/errcode.h", + "include/python3.11/exports.h", + "include/python3.11/fileobject.h", + "include/python3.11/fileutils.h", + "include/python3.11/floatobject.h", + "include/python3.11/frameobject.h", + "include/python3.11/genericaliasobject.h", + "include/python3.11/import.h", + "include/python3.11/internal/pycore_abstract.h", + "include/python3.11/internal/pycore_accu.h", + "include/python3.11/internal/pycore_asdl.h", + "include/python3.11/internal/pycore_ast.h", + "include/python3.11/internal/pycore_ast_state.h", + "include/python3.11/internal/pycore_atomic.h", + "include/python3.11/internal/pycore_atomic_funcs.h", + "include/python3.11/internal/pycore_bitutils.h", + "include/python3.11/internal/pycore_blocks_output_buffer.h", + "include/python3.11/internal/pycore_bytes_methods.h", + "include/python3.11/internal/pycore_bytesobject.h", + "include/python3.11/internal/pycore_call.h", + "include/python3.11/internal/pycore_ceval.h", + "include/python3.11/internal/pycore_code.h", + "include/python3.11/internal/pycore_compile.h", + "include/python3.11/internal/pycore_condvar.h", + "include/python3.11/internal/pycore_context.h", + "include/python3.11/internal/pycore_dict.h", + "include/python3.11/internal/pycore_dtoa.h", + "include/python3.11/internal/pycore_emscripten_signal.h", + "include/python3.11/internal/pycore_exceptions.h", + "include/python3.11/internal/pycore_fileutils.h", + "include/python3.11/internal/pycore_floatobject.h", + "include/python3.11/internal/pycore_format.h", + "include/python3.11/internal/pycore_frame.h", + "include/python3.11/internal/pycore_function.h", + "include/python3.11/internal/pycore_gc.h", + "include/python3.11/internal/pycore_genobject.h", + "include/python3.11/internal/pycore_getopt.h", + "include/python3.11/internal/pycore_gil.h", + "include/python3.11/internal/pycore_global_objects.h", + "include/python3.11/internal/pycore_global_strings.h", + "include/python3.11/internal/pycore_hamt.h", + "include/python3.11/internal/pycore_hashtable.h", + "include/python3.11/internal/pycore_import.h", + "include/python3.11/internal/pycore_initconfig.h", + "include/python3.11/internal/pycore_interp.h", + "include/python3.11/internal/pycore_interpreteridobject.h", + "include/python3.11/internal/pycore_list.h", + "include/python3.11/internal/pycore_long.h", + "include/python3.11/internal/pycore_moduleobject.h", + "include/python3.11/internal/pycore_namespace.h", + "include/python3.11/internal/pycore_object.h", + "include/python3.11/internal/pycore_opcode.h", + "include/python3.11/internal/pycore_parser.h", + "include/python3.11/internal/pycore_pathconfig.h", + "include/python3.11/internal/pycore_pyarena.h", + "include/python3.11/internal/pycore_pyerrors.h", + "include/python3.11/internal/pycore_pyhash.h", + "include/python3.11/internal/pycore_pylifecycle.h", + "include/python3.11/internal/pycore_pymath.h", + "include/python3.11/internal/pycore_pymem.h", + "include/python3.11/internal/pycore_pystate.h", + "include/python3.11/internal/pycore_runtime.h", + "include/python3.11/internal/pycore_runtime_init.h", + "include/python3.11/internal/pycore_signal.h", + "include/python3.11/internal/pycore_sliceobject.h", + "include/python3.11/internal/pycore_strhex.h", + "include/python3.11/internal/pycore_structseq.h", + "include/python3.11/internal/pycore_symtable.h", + "include/python3.11/internal/pycore_sysmodule.h", + "include/python3.11/internal/pycore_traceback.h", + "include/python3.11/internal/pycore_tuple.h", + "include/python3.11/internal/pycore_typeobject.h", + "include/python3.11/internal/pycore_ucnhash.h", + "include/python3.11/internal/pycore_unicodeobject.h", + "include/python3.11/internal/pycore_unionobject.h", + "include/python3.11/internal/pycore_warnings.h", + "include/python3.11/intrcheck.h", + "include/python3.11/iterobject.h", + "include/python3.11/listobject.h", + "include/python3.11/longobject.h", + "include/python3.11/marshal.h", + "include/python3.11/memoryobject.h", + "include/python3.11/methodobject.h", + "include/python3.11/modsupport.h", + "include/python3.11/moduleobject.h", + "include/python3.11/object.h", + "include/python3.11/objimpl.h", + "include/python3.11/opcode.h", + "include/python3.11/osdefs.h", + "include/python3.11/osmodule.h", + "include/python3.11/patchlevel.h", + "include/python3.11/py_curses.h", + "include/python3.11/pybuffer.h", + "include/python3.11/pycapsule.h", + "include/python3.11/pyconfig.h", + "include/python3.11/pydtrace.h", + "include/python3.11/pyerrors.h", + "include/python3.11/pyexpat.h", + "include/python3.11/pyframe.h", + "include/python3.11/pyhash.h", + "include/python3.11/pylifecycle.h", + "include/python3.11/pymacconfig.h", + "include/python3.11/pymacro.h", + "include/python3.11/pymath.h", + "include/python3.11/pymem.h", + "include/python3.11/pyport.h", + "include/python3.11/pystate.h", + "include/python3.11/pystrcmp.h", + "include/python3.11/pystrtod.h", + "include/python3.11/pythonrun.h", + "include/python3.11/pythread.h", + "include/python3.11/pytypedefs.h", + "include/python3.11/rangeobject.h", + "include/python3.11/setobject.h", + "include/python3.11/sliceobject.h", + "include/python3.11/structmember.h", + "include/python3.11/structseq.h", + "include/python3.11/sysmodule.h", + "include/python3.11/token.h", + "include/python3.11/traceback.h", + "include/python3.11/tracemalloc.h", + "include/python3.11/tupleobject.h", + "include/python3.11/typeslots.h", + "include/python3.11/unicodeobject.h", + "include/python3.11/warnings.h", + "include/python3.11/weakrefobject.h", + "lib/libpython3.11.dylib", + "lib/pkgconfig/python-3.11-embed.pc", + "lib/pkgconfig/python-3.11.pc", + "lib/pkgconfig/python3-embed.pc", + "lib/pkgconfig/python3.pc", + "lib/python3.1", + "lib/python3.11/LICENSE.txt", + "lib/python3.11/__future__.py", + "lib/python3.11/__hello__.py", + "lib/python3.11/__phello__/__init__.py", + "lib/python3.11/__phello__/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/__phello__/__pycache__/spam.cpython-311.pyc", + "lib/python3.11/__phello__/spam.py", + "lib/python3.11/__pycache__/__future__.cpython-311.pyc", + "lib/python3.11/__pycache__/__hello__.cpython-311.pyc", + "lib/python3.11/__pycache__/_aix_support.cpython-311.pyc", + "lib/python3.11/__pycache__/_bootsubprocess.cpython-311.pyc", + "lib/python3.11/__pycache__/_collections_abc.cpython-311.pyc", + "lib/python3.11/__pycache__/_compat_pickle.cpython-311.pyc", + "lib/python3.11/__pycache__/_compression.cpython-311.pyc", + "lib/python3.11/__pycache__/_markupbase.cpython-311.pyc", + "lib/python3.11/__pycache__/_osx_support.cpython-311.pyc", + "lib/python3.11/__pycache__/_py_abc.cpython-311.pyc", + "lib/python3.11/__pycache__/_pydecimal.cpython-311.pyc", + "lib/python3.11/__pycache__/_pyio.cpython-311.pyc", + "lib/python3.11/__pycache__/_sitebuiltins.cpython-311.pyc", + "lib/python3.11/__pycache__/_strptime.cpython-311.pyc", + "lib/python3.11/__pycache__/_sysconfigdata__darwin_darwin.cpython-311.pyc", + "lib/python3.11/__pycache__/_sysconfigdata_arm64_apple_darwin20_0_0.cpython-311.pyc", + "lib/python3.11/__pycache__/_threading_local.cpython-311.pyc", + "lib/python3.11/__pycache__/_weakrefset.cpython-311.pyc", + "lib/python3.11/__pycache__/abc.cpython-311.pyc", + "lib/python3.11/__pycache__/aifc.cpython-311.pyc", + "lib/python3.11/__pycache__/antigravity.cpython-311.pyc", + "lib/python3.11/__pycache__/argparse.cpython-311.pyc", + "lib/python3.11/__pycache__/ast.cpython-311.pyc", + "lib/python3.11/__pycache__/asynchat.cpython-311.pyc", + "lib/python3.11/__pycache__/asyncore.cpython-311.pyc", + "lib/python3.11/__pycache__/base64.cpython-311.pyc", + "lib/python3.11/__pycache__/bdb.cpython-311.pyc", + "lib/python3.11/__pycache__/bisect.cpython-311.pyc", + "lib/python3.11/__pycache__/bz2.cpython-311.pyc", + "lib/python3.11/__pycache__/cProfile.cpython-311.pyc", + "lib/python3.11/__pycache__/calendar.cpython-311.pyc", + "lib/python3.11/__pycache__/cgi.cpython-311.pyc", + "lib/python3.11/__pycache__/cgitb.cpython-311.pyc", + "lib/python3.11/__pycache__/chunk.cpython-311.pyc", + "lib/python3.11/__pycache__/cmd.cpython-311.pyc", + "lib/python3.11/__pycache__/code.cpython-311.pyc", + "lib/python3.11/__pycache__/codecs.cpython-311.pyc", + "lib/python3.11/__pycache__/codeop.cpython-311.pyc", + "lib/python3.11/__pycache__/colorsys.cpython-311.pyc", + "lib/python3.11/__pycache__/compileall.cpython-311.pyc", + "lib/python3.11/__pycache__/configparser.cpython-311.pyc", + "lib/python3.11/__pycache__/contextlib.cpython-311.pyc", + "lib/python3.11/__pycache__/contextvars.cpython-311.pyc", + "lib/python3.11/__pycache__/copy.cpython-311.pyc", + "lib/python3.11/__pycache__/copyreg.cpython-311.pyc", + "lib/python3.11/__pycache__/crypt.cpython-311.pyc", + "lib/python3.11/__pycache__/csv.cpython-311.pyc", + "lib/python3.11/__pycache__/dataclasses.cpython-311.pyc", + "lib/python3.11/__pycache__/datetime.cpython-311.pyc", + "lib/python3.11/__pycache__/decimal.cpython-311.pyc", + "lib/python3.11/__pycache__/difflib.cpython-311.pyc", + "lib/python3.11/__pycache__/dis.cpython-311.pyc", + "lib/python3.11/__pycache__/doctest.cpython-311.pyc", + "lib/python3.11/__pycache__/enum.cpython-311.pyc", + "lib/python3.11/__pycache__/filecmp.cpython-311.pyc", + "lib/python3.11/__pycache__/fileinput.cpython-311.pyc", + "lib/python3.11/__pycache__/fnmatch.cpython-311.pyc", + "lib/python3.11/__pycache__/fractions.cpython-311.pyc", + "lib/python3.11/__pycache__/ftplib.cpython-311.pyc", + "lib/python3.11/__pycache__/functools.cpython-311.pyc", + "lib/python3.11/__pycache__/genericpath.cpython-311.pyc", + "lib/python3.11/__pycache__/getopt.cpython-311.pyc", + "lib/python3.11/__pycache__/getpass.cpython-311.pyc", + "lib/python3.11/__pycache__/gettext.cpython-311.pyc", + "lib/python3.11/__pycache__/glob.cpython-311.pyc", + "lib/python3.11/__pycache__/graphlib.cpython-311.pyc", + "lib/python3.11/__pycache__/gzip.cpython-311.pyc", + "lib/python3.11/__pycache__/hashlib.cpython-311.pyc", + "lib/python3.11/__pycache__/heapq.cpython-311.pyc", + "lib/python3.11/__pycache__/hmac.cpython-311.pyc", + "lib/python3.11/__pycache__/imaplib.cpython-311.pyc", + "lib/python3.11/__pycache__/imghdr.cpython-311.pyc", + "lib/python3.11/__pycache__/imp.cpython-311.pyc", + "lib/python3.11/__pycache__/inspect.cpython-311.pyc", + "lib/python3.11/__pycache__/io.cpython-311.pyc", + "lib/python3.11/__pycache__/ipaddress.cpython-311.pyc", + "lib/python3.11/__pycache__/keyword.cpython-311.pyc", + "lib/python3.11/__pycache__/linecache.cpython-311.pyc", + "lib/python3.11/__pycache__/locale.cpython-311.pyc", + "lib/python3.11/__pycache__/lzma.cpython-311.pyc", + "lib/python3.11/__pycache__/mailbox.cpython-311.pyc", + "lib/python3.11/__pycache__/mailcap.cpython-311.pyc", + "lib/python3.11/__pycache__/mimetypes.cpython-311.pyc", + "lib/python3.11/__pycache__/modulefinder.cpython-311.pyc", + "lib/python3.11/__pycache__/netrc.cpython-311.pyc", + "lib/python3.11/__pycache__/nntplib.cpython-311.pyc", + "lib/python3.11/__pycache__/ntpath.cpython-311.pyc", + "lib/python3.11/__pycache__/nturl2path.cpython-311.pyc", + "lib/python3.11/__pycache__/numbers.cpython-311.pyc", + "lib/python3.11/__pycache__/opcode.cpython-311.pyc", + "lib/python3.11/__pycache__/operator.cpython-311.pyc", + "lib/python3.11/__pycache__/optparse.cpython-311.pyc", + "lib/python3.11/__pycache__/os.cpython-311.pyc", + "lib/python3.11/__pycache__/pathlib.cpython-311.pyc", + "lib/python3.11/__pycache__/pdb.cpython-311.pyc", + "lib/python3.11/__pycache__/pickle.cpython-311.pyc", + "lib/python3.11/__pycache__/pickletools.cpython-311.pyc", + "lib/python3.11/__pycache__/pipes.cpython-311.pyc", + "lib/python3.11/__pycache__/pkgutil.cpython-311.pyc", + "lib/python3.11/__pycache__/platform.cpython-311.pyc", + "lib/python3.11/__pycache__/plistlib.cpython-311.pyc", + "lib/python3.11/__pycache__/poplib.cpython-311.pyc", + "lib/python3.11/__pycache__/posixpath.cpython-311.pyc", + "lib/python3.11/__pycache__/pprint.cpython-311.pyc", + "lib/python3.11/__pycache__/profile.cpython-311.pyc", + "lib/python3.11/__pycache__/pstats.cpython-311.pyc", + "lib/python3.11/__pycache__/pty.cpython-311.pyc", + "lib/python3.11/__pycache__/py_compile.cpython-311.pyc", + "lib/python3.11/__pycache__/pyclbr.cpython-311.pyc", + "lib/python3.11/__pycache__/pydoc.cpython-311.pyc", + "lib/python3.11/__pycache__/queue.cpython-311.pyc", + "lib/python3.11/__pycache__/quopri.cpython-311.pyc", + "lib/python3.11/__pycache__/random.cpython-311.pyc", + "lib/python3.11/__pycache__/reprlib.cpython-311.pyc", + "lib/python3.11/__pycache__/rlcompleter.cpython-311.pyc", + "lib/python3.11/__pycache__/runpy.cpython-311.pyc", + "lib/python3.11/__pycache__/sched.cpython-311.pyc", + "lib/python3.11/__pycache__/secrets.cpython-311.pyc", + "lib/python3.11/__pycache__/selectors.cpython-311.pyc", + "lib/python3.11/__pycache__/shelve.cpython-311.pyc", + "lib/python3.11/__pycache__/shlex.cpython-311.pyc", + "lib/python3.11/__pycache__/shutil.cpython-311.pyc", + "lib/python3.11/__pycache__/signal.cpython-311.pyc", + "lib/python3.11/__pycache__/site.cpython-311.pyc", + "lib/python3.11/__pycache__/smtpd.cpython-311.pyc", + "lib/python3.11/__pycache__/smtplib.cpython-311.pyc", + "lib/python3.11/__pycache__/sndhdr.cpython-311.pyc", + "lib/python3.11/__pycache__/socket.cpython-311.pyc", + "lib/python3.11/__pycache__/socketserver.cpython-311.pyc", + "lib/python3.11/__pycache__/sre_compile.cpython-311.pyc", + "lib/python3.11/__pycache__/sre_constants.cpython-311.pyc", + "lib/python3.11/__pycache__/sre_parse.cpython-311.pyc", + "lib/python3.11/__pycache__/ssl.cpython-311.pyc", + "lib/python3.11/__pycache__/stat.cpython-311.pyc", + "lib/python3.11/__pycache__/statistics.cpython-311.pyc", + "lib/python3.11/__pycache__/string.cpython-311.pyc", + "lib/python3.11/__pycache__/stringprep.cpython-311.pyc", + "lib/python3.11/__pycache__/struct.cpython-311.pyc", + "lib/python3.11/__pycache__/subprocess.cpython-311.pyc", + "lib/python3.11/__pycache__/sunau.cpython-311.pyc", + "lib/python3.11/__pycache__/symtable.cpython-311.pyc", + "lib/python3.11/__pycache__/sysconfig.cpython-311.pyc", + "lib/python3.11/__pycache__/tabnanny.cpython-311.pyc", + "lib/python3.11/__pycache__/tarfile.cpython-311.pyc", + "lib/python3.11/__pycache__/telnetlib.cpython-311.pyc", + "lib/python3.11/__pycache__/tempfile.cpython-311.pyc", + "lib/python3.11/__pycache__/textwrap.cpython-311.pyc", + "lib/python3.11/__pycache__/this.cpython-311.pyc", + "lib/python3.11/__pycache__/threading.cpython-311.pyc", + "lib/python3.11/__pycache__/timeit.cpython-311.pyc", + "lib/python3.11/__pycache__/token.cpython-311.pyc", + "lib/python3.11/__pycache__/tokenize.cpython-311.pyc", + "lib/python3.11/__pycache__/trace.cpython-311.pyc", + "lib/python3.11/__pycache__/traceback.cpython-311.pyc", + "lib/python3.11/__pycache__/tracemalloc.cpython-311.pyc", + "lib/python3.11/__pycache__/tty.cpython-311.pyc", + "lib/python3.11/__pycache__/turtle.cpython-311.pyc", + "lib/python3.11/__pycache__/types.cpython-311.pyc", + "lib/python3.11/__pycache__/typing.cpython-311.pyc", + "lib/python3.11/__pycache__/uu.cpython-311.pyc", + "lib/python3.11/__pycache__/uuid.cpython-311.pyc", + "lib/python3.11/__pycache__/warnings.cpython-311.pyc", + "lib/python3.11/__pycache__/wave.cpython-311.pyc", + "lib/python3.11/__pycache__/weakref.cpython-311.pyc", + "lib/python3.11/__pycache__/webbrowser.cpython-311.pyc", + "lib/python3.11/__pycache__/xdrlib.cpython-311.pyc", + "lib/python3.11/__pycache__/zipapp.cpython-311.pyc", + "lib/python3.11/__pycache__/zipfile.cpython-311.pyc", + "lib/python3.11/__pycache__/zipimport.cpython-311.pyc", + "lib/python3.11/_aix_support.py", + "lib/python3.11/_bootsubprocess.py", + "lib/python3.11/_collections_abc.py", + "lib/python3.11/_compat_pickle.py", + "lib/python3.11/_compression.py", + "lib/python3.11/_markupbase.py", + "lib/python3.11/_osx_support.py", + "lib/python3.11/_py_abc.py", + "lib/python3.11/_pydecimal.py", + "lib/python3.11/_pyio.py", + "lib/python3.11/_sitebuiltins.py", + "lib/python3.11/_strptime.py", + "lib/python3.11/_sysconfigdata__darwin_darwin.py", + "lib/python3.11/_sysconfigdata__darwin_darwin.py.orig", + "lib/python3.11/_sysconfigdata_arm64_apple_darwin20_0_0.py", + "lib/python3.11/_threading_local.py", + "lib/python3.11/_weakrefset.py", + "lib/python3.11/abc.py", + "lib/python3.11/aifc.py", + "lib/python3.11/antigravity.py", + "lib/python3.11/argparse.py", + "lib/python3.11/ast.py", + "lib/python3.11/asynchat.py", + "lib/python3.11/asyncio/__init__.py", + "lib/python3.11/asyncio/__main__.py", + "lib/python3.11/asyncio/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/base_events.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/base_futures.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/base_subprocess.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/base_tasks.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/constants.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/coroutines.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/events.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/exceptions.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/format_helpers.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/futures.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/locks.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/log.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/mixins.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/proactor_events.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/protocols.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/queues.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/runners.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/selector_events.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/sslproto.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/staggered.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/streams.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/subprocess.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/taskgroups.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/tasks.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/threads.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/timeouts.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/transports.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/trsock.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/unix_events.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/windows_events.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/windows_utils.cpython-311.pyc", + "lib/python3.11/asyncio/base_events.py", + "lib/python3.11/asyncio/base_futures.py", + "lib/python3.11/asyncio/base_subprocess.py", + "lib/python3.11/asyncio/base_tasks.py", + "lib/python3.11/asyncio/constants.py", + "lib/python3.11/asyncio/coroutines.py", + "lib/python3.11/asyncio/events.py", + "lib/python3.11/asyncio/exceptions.py", + "lib/python3.11/asyncio/format_helpers.py", + "lib/python3.11/asyncio/futures.py", + "lib/python3.11/asyncio/locks.py", + "lib/python3.11/asyncio/log.py", + "lib/python3.11/asyncio/mixins.py", + "lib/python3.11/asyncio/proactor_events.py", + "lib/python3.11/asyncio/protocols.py", + "lib/python3.11/asyncio/queues.py", + "lib/python3.11/asyncio/runners.py", + "lib/python3.11/asyncio/selector_events.py", + "lib/python3.11/asyncio/sslproto.py", + "lib/python3.11/asyncio/staggered.py", + "lib/python3.11/asyncio/streams.py", + "lib/python3.11/asyncio/subprocess.py", + "lib/python3.11/asyncio/taskgroups.py", + "lib/python3.11/asyncio/tasks.py", + "lib/python3.11/asyncio/threads.py", + "lib/python3.11/asyncio/timeouts.py", + "lib/python3.11/asyncio/transports.py", + "lib/python3.11/asyncio/trsock.py", + "lib/python3.11/asyncio/unix_events.py", + "lib/python3.11/asyncio/windows_events.py", + "lib/python3.11/asyncio/windows_utils.py", + "lib/python3.11/asyncore.py", + "lib/python3.11/base64.py", + "lib/python3.11/bdb.py", + "lib/python3.11/bisect.py", + "lib/python3.11/bz2.py", + "lib/python3.11/cProfile.py", + "lib/python3.11/calendar.py", + "lib/python3.11/cgi.py", + "lib/python3.11/cgitb.py", + "lib/python3.11/chunk.py", + "lib/python3.11/cmd.py", + "lib/python3.11/code.py", + "lib/python3.11/codecs.py", + "lib/python3.11/codeop.py", + "lib/python3.11/collections/__init__.py", + "lib/python3.11/collections/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/collections/__pycache__/abc.cpython-311.pyc", + "lib/python3.11/collections/abc.py", + "lib/python3.11/colorsys.py", + "lib/python3.11/compileall.py", + "lib/python3.11/concurrent/__init__.py", + "lib/python3.11/concurrent/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/concurrent/futures/__init__.py", + "lib/python3.11/concurrent/futures/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/concurrent/futures/__pycache__/_base.cpython-311.pyc", + "lib/python3.11/concurrent/futures/__pycache__/process.cpython-311.pyc", + "lib/python3.11/concurrent/futures/__pycache__/thread.cpython-311.pyc", + "lib/python3.11/concurrent/futures/_base.py", + "lib/python3.11/concurrent/futures/process.py", + "lib/python3.11/concurrent/futures/thread.py", + "lib/python3.11/config-3.11-darwin/Makefile", + "lib/python3.11/config-3.11-darwin/Setup", + "lib/python3.11/config-3.11-darwin/Setup.bootstrap", + "lib/python3.11/config-3.11-darwin/Setup.local", + "lib/python3.11/config-3.11-darwin/Setup.stdlib", + "lib/python3.11/config-3.11-darwin/__pycache__/python-config.cpython-311.pyc", + "lib/python3.11/config-3.11-darwin/config.c", + "lib/python3.11/config-3.11-darwin/config.c.in", + "lib/python3.11/config-3.11-darwin/install-sh", + "lib/python3.11/config-3.11-darwin/makesetup", + "lib/python3.11/config-3.11-darwin/python-config.py", + "lib/python3.11/config-3.11-darwin/python.o", + "lib/python3.11/configparser.py", + "lib/python3.11/contextlib.py", + "lib/python3.11/contextvars.py", + "lib/python3.11/copy.py", + "lib/python3.11/copyreg.py", + "lib/python3.11/crypt.py", + "lib/python3.11/csv.py", + "lib/python3.11/ctypes/__init__.py", + "lib/python3.11/ctypes/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/ctypes/__pycache__/_aix.cpython-311.pyc", + "lib/python3.11/ctypes/__pycache__/_endian.cpython-311.pyc", + "lib/python3.11/ctypes/__pycache__/util.cpython-311.pyc", + "lib/python3.11/ctypes/__pycache__/wintypes.cpython-311.pyc", + "lib/python3.11/ctypes/_aix.py", + "lib/python3.11/ctypes/_endian.py", + "lib/python3.11/ctypes/macholib/README.ctypes", + "lib/python3.11/ctypes/macholib/__init__.py", + "lib/python3.11/ctypes/macholib/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/ctypes/macholib/__pycache__/dyld.cpython-311.pyc", + "lib/python3.11/ctypes/macholib/__pycache__/dylib.cpython-311.pyc", + "lib/python3.11/ctypes/macholib/__pycache__/framework.cpython-311.pyc", + "lib/python3.11/ctypes/macholib/dyld.py", + "lib/python3.11/ctypes/macholib/dylib.py", + "lib/python3.11/ctypes/macholib/fetch_macholib", + "lib/python3.11/ctypes/macholib/fetch_macholib.bat", + "lib/python3.11/ctypes/macholib/framework.py", + "lib/python3.11/ctypes/util.py", + "lib/python3.11/ctypes/wintypes.py", + "lib/python3.11/curses/__init__.py", + "lib/python3.11/curses/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/curses/__pycache__/ascii.cpython-311.pyc", + "lib/python3.11/curses/__pycache__/has_key.cpython-311.pyc", + "lib/python3.11/curses/__pycache__/panel.cpython-311.pyc", + "lib/python3.11/curses/__pycache__/textpad.cpython-311.pyc", + "lib/python3.11/curses/ascii.py", + "lib/python3.11/curses/has_key.py", + "lib/python3.11/curses/panel.py", + "lib/python3.11/curses/textpad.py", + "lib/python3.11/dataclasses.py", + "lib/python3.11/datetime.py", + "lib/python3.11/dbm/__init__.py", + "lib/python3.11/dbm/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/dbm/__pycache__/dumb.cpython-311.pyc", + "lib/python3.11/dbm/__pycache__/gnu.cpython-311.pyc", + "lib/python3.11/dbm/__pycache__/ndbm.cpython-311.pyc", + "lib/python3.11/dbm/dumb.py", + "lib/python3.11/dbm/gnu.py", + "lib/python3.11/dbm/ndbm.py", + "lib/python3.11/decimal.py", + "lib/python3.11/difflib.py", + "lib/python3.11/dis.py", + "lib/python3.11/distutils/README", + "lib/python3.11/distutils/__init__.py", + "lib/python3.11/distutils/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/_msvccompiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/archive_util.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/bcppcompiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/ccompiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/cmd.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/config.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/core.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/cygwinccompiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/debug.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/dep_util.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/dir_util.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/dist.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/errors.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/extension.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/fancy_getopt.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/file_util.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/filelist.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/log.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/msvc9compiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/msvccompiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/spawn.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/sysconfig.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/text_file.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/unixccompiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/util.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/version.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/versionpredicate.cpython-311.pyc", + "lib/python3.11/distutils/_msvccompiler.py", + "lib/python3.11/distutils/archive_util.py", + "lib/python3.11/distutils/bcppcompiler.py", + "lib/python3.11/distutils/ccompiler.py", + "lib/python3.11/distutils/cmd.py", + "lib/python3.11/distutils/command/__init__.py", + "lib/python3.11/distutils/command/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/bdist.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/bdist_dumb.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/bdist_rpm.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/build.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/build_clib.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/build_ext.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/build_py.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/build_scripts.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/check.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/clean.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/config.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/install.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/install_data.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/install_egg_info.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/install_headers.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/install_lib.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/install_scripts.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/register.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/sdist.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/upload.cpython-311.pyc", + "lib/python3.11/distutils/command/bdist.py", + "lib/python3.11/distutils/command/bdist_dumb.py", + "lib/python3.11/distutils/command/bdist_rpm.py", + "lib/python3.11/distutils/command/build.py", + "lib/python3.11/distutils/command/build_clib.py", + "lib/python3.11/distutils/command/build_ext.py", + "lib/python3.11/distutils/command/build_py.py", + "lib/python3.11/distutils/command/build_scripts.py", + "lib/python3.11/distutils/command/check.py", + "lib/python3.11/distutils/command/clean.py", + "lib/python3.11/distutils/command/command_template", + "lib/python3.11/distutils/command/config.py", + "lib/python3.11/distutils/command/install.py", + "lib/python3.11/distutils/command/install_data.py", + "lib/python3.11/distutils/command/install_egg_info.py", + "lib/python3.11/distutils/command/install_headers.py", + "lib/python3.11/distutils/command/install_lib.py", + "lib/python3.11/distutils/command/install_scripts.py", + "lib/python3.11/distutils/command/register.py", + "lib/python3.11/distutils/command/sdist.py", + "lib/python3.11/distutils/command/upload.py", + "lib/python3.11/distutils/config.py", + "lib/python3.11/distutils/core.py", + "lib/python3.11/distutils/cygwinccompiler.py", + "lib/python3.11/distutils/debug.py", + "lib/python3.11/distutils/dep_util.py", + "lib/python3.11/distutils/dir_util.py", + "lib/python3.11/distutils/dist.py", + "lib/python3.11/distutils/errors.py", + "lib/python3.11/distutils/extension.py", + "lib/python3.11/distutils/fancy_getopt.py", + "lib/python3.11/distutils/file_util.py", + "lib/python3.11/distutils/filelist.py", + "lib/python3.11/distutils/log.py", + "lib/python3.11/distutils/msvc9compiler.py", + "lib/python3.11/distutils/msvccompiler.py", + "lib/python3.11/distutils/spawn.py", + "lib/python3.11/distutils/sysconfig.py", + "lib/python3.11/distutils/tests/Setup.sample", + "lib/python3.11/distutils/tests/__init__.py", + "lib/python3.11/distutils/tests/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/support.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_archive_util.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_bdist.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_bdist_dumb.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_bdist_rpm.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_build.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_build_clib.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_build_ext.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_build_py.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_build_scripts.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_check.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_clean.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_cmd.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_config.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_config_cmd.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_core.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_cygwinccompiler.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_dep_util.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_dir_util.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_dist.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_extension.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_file_util.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_filelist.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_install.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_install_data.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_install_headers.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_install_lib.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_install_scripts.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_log.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_msvc9compiler.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_msvccompiler.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_register.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_sdist.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_spawn.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_sysconfig.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_text_file.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_unixccompiler.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_upload.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_util.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_version.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_versionpredicate.cpython-311.pyc", + "lib/python3.11/distutils/tests/includetest.rst", + "lib/python3.11/distutils/tests/support.py", + "lib/python3.11/distutils/tests/test_archive_util.py", + "lib/python3.11/distutils/tests/test_bdist.py", + "lib/python3.11/distutils/tests/test_bdist_dumb.py", + "lib/python3.11/distutils/tests/test_bdist_rpm.py", + "lib/python3.11/distutils/tests/test_build.py", + "lib/python3.11/distutils/tests/test_build_clib.py", + "lib/python3.11/distutils/tests/test_build_ext.py", + "lib/python3.11/distutils/tests/test_build_py.py", + "lib/python3.11/distutils/tests/test_build_scripts.py", + "lib/python3.11/distutils/tests/test_check.py", + "lib/python3.11/distutils/tests/test_clean.py", + "lib/python3.11/distutils/tests/test_cmd.py", + "lib/python3.11/distutils/tests/test_config.py", + "lib/python3.11/distutils/tests/test_config_cmd.py", + "lib/python3.11/distutils/tests/test_core.py", + "lib/python3.11/distutils/tests/test_cygwinccompiler.py", + "lib/python3.11/distutils/tests/test_dep_util.py", + "lib/python3.11/distutils/tests/test_dir_util.py", + "lib/python3.11/distutils/tests/test_dist.py", + "lib/python3.11/distutils/tests/test_extension.py", + "lib/python3.11/distutils/tests/test_file_util.py", + "lib/python3.11/distutils/tests/test_filelist.py", + "lib/python3.11/distutils/tests/test_install.py", + "lib/python3.11/distutils/tests/test_install_data.py", + "lib/python3.11/distutils/tests/test_install_headers.py", + "lib/python3.11/distutils/tests/test_install_lib.py", + "lib/python3.11/distutils/tests/test_install_scripts.py", + "lib/python3.11/distutils/tests/test_log.py", + "lib/python3.11/distutils/tests/test_msvc9compiler.py", + "lib/python3.11/distutils/tests/test_msvccompiler.py", + "lib/python3.11/distutils/tests/test_register.py", + "lib/python3.11/distutils/tests/test_sdist.py", + "lib/python3.11/distutils/tests/test_spawn.py", + "lib/python3.11/distutils/tests/test_sysconfig.py", + "lib/python3.11/distutils/tests/test_text_file.py", + "lib/python3.11/distutils/tests/test_unixccompiler.py", + "lib/python3.11/distutils/tests/test_upload.py", + "lib/python3.11/distutils/tests/test_util.py", + "lib/python3.11/distutils/tests/test_version.py", + "lib/python3.11/distutils/tests/test_versionpredicate.py", + "lib/python3.11/distutils/tests/xxmodule.c", + "lib/python3.11/distutils/text_file.py", + "lib/python3.11/distutils/unixccompiler.py", + "lib/python3.11/distutils/util.py", + "lib/python3.11/distutils/version.py", + "lib/python3.11/distutils/versionpredicate.py", + "lib/python3.11/doctest.py", + "lib/python3.11/email/__init__.py", + "lib/python3.11/email/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/email/__pycache__/_encoded_words.cpython-311.pyc", + "lib/python3.11/email/__pycache__/_header_value_parser.cpython-311.pyc", + "lib/python3.11/email/__pycache__/_parseaddr.cpython-311.pyc", + "lib/python3.11/email/__pycache__/_policybase.cpython-311.pyc", + "lib/python3.11/email/__pycache__/base64mime.cpython-311.pyc", + "lib/python3.11/email/__pycache__/charset.cpython-311.pyc", + "lib/python3.11/email/__pycache__/contentmanager.cpython-311.pyc", + "lib/python3.11/email/__pycache__/encoders.cpython-311.pyc", + "lib/python3.11/email/__pycache__/errors.cpython-311.pyc", + "lib/python3.11/email/__pycache__/feedparser.cpython-311.pyc", + "lib/python3.11/email/__pycache__/generator.cpython-311.pyc", + "lib/python3.11/email/__pycache__/header.cpython-311.pyc", + "lib/python3.11/email/__pycache__/headerregistry.cpython-311.pyc", + "lib/python3.11/email/__pycache__/iterators.cpython-311.pyc", + "lib/python3.11/email/__pycache__/message.cpython-311.pyc", + "lib/python3.11/email/__pycache__/parser.cpython-311.pyc", + "lib/python3.11/email/__pycache__/policy.cpython-311.pyc", + "lib/python3.11/email/__pycache__/quoprimime.cpython-311.pyc", + "lib/python3.11/email/__pycache__/utils.cpython-311.pyc", + "lib/python3.11/email/_encoded_words.py", + "lib/python3.11/email/_header_value_parser.py", + "lib/python3.11/email/_parseaddr.py", + "lib/python3.11/email/_policybase.py", + "lib/python3.11/email/architecture.rst", + "lib/python3.11/email/base64mime.py", + "lib/python3.11/email/charset.py", + "lib/python3.11/email/contentmanager.py", + "lib/python3.11/email/encoders.py", + "lib/python3.11/email/errors.py", + "lib/python3.11/email/feedparser.py", + "lib/python3.11/email/generator.py", + "lib/python3.11/email/header.py", + "lib/python3.11/email/headerregistry.py", + "lib/python3.11/email/iterators.py", + "lib/python3.11/email/message.py", + "lib/python3.11/email/mime/__init__.py", + "lib/python3.11/email/mime/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/application.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/audio.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/base.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/image.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/message.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/multipart.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/nonmultipart.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/text.cpython-311.pyc", + "lib/python3.11/email/mime/application.py", + "lib/python3.11/email/mime/audio.py", + "lib/python3.11/email/mime/base.py", + "lib/python3.11/email/mime/image.py", + "lib/python3.11/email/mime/message.py", + "lib/python3.11/email/mime/multipart.py", + "lib/python3.11/email/mime/nonmultipart.py", + "lib/python3.11/email/mime/text.py", + "lib/python3.11/email/parser.py", + "lib/python3.11/email/policy.py", + "lib/python3.11/email/quoprimime.py", + "lib/python3.11/email/utils.py", + "lib/python3.11/encodings/__init__.py", + "lib/python3.11/encodings/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/aliases.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/ascii.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/base64_codec.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/big5.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/big5hkscs.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/bz2_codec.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/charmap.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp037.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1006.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1026.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1125.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1140.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1250.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1251.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1252.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1253.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1254.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1255.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1256.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1257.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1258.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp273.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp424.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp437.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp500.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp720.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp737.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp775.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp850.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp852.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp855.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp856.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp857.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp858.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp860.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp861.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp862.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp863.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp864.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp865.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp866.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp869.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp874.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp875.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp932.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp949.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp950.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/euc_jis_2004.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/euc_jisx0213.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/euc_jp.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/euc_kr.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/gb18030.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/gb2312.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/gbk.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/hex_codec.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/hp_roman8.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/hz.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/idna.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_jp.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_jp_1.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_jp_2.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_jp_2004.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_jp_3.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_jp_ext.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_kr.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_1.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_10.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_11.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_13.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_14.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_15.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_16.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_2.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_3.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_4.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_5.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_6.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_7.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_8.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_9.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/johab.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/koi8_r.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/koi8_t.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/koi8_u.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/kz1048.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/latin_1.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_arabic.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_croatian.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_cyrillic.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_farsi.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_greek.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_iceland.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_latin2.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_roman.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_romanian.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_turkish.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mbcs.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/oem.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/palmos.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/ptcp154.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/punycode.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/quopri_codec.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/raw_unicode_escape.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/rot_13.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/shift_jis.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/shift_jis_2004.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/shift_jisx0213.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/tis_620.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/undefined.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/unicode_escape.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_16.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_16_be.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_16_le.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_32.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_32_be.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_32_le.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_7.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_8.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_8_sig.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/uu_codec.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/zlib_codec.cpython-311.pyc", + "lib/python3.11/encodings/aliases.py", + "lib/python3.11/encodings/ascii.py", + "lib/python3.11/encodings/base64_codec.py", + "lib/python3.11/encodings/big5.py", + "lib/python3.11/encodings/big5hkscs.py", + "lib/python3.11/encodings/bz2_codec.py", + "lib/python3.11/encodings/charmap.py", + "lib/python3.11/encodings/cp037.py", + "lib/python3.11/encodings/cp1006.py", + "lib/python3.11/encodings/cp1026.py", + "lib/python3.11/encodings/cp1125.py", + "lib/python3.11/encodings/cp1140.py", + "lib/python3.11/encodings/cp1250.py", + "lib/python3.11/encodings/cp1251.py", + "lib/python3.11/encodings/cp1252.py", + "lib/python3.11/encodings/cp1253.py", + "lib/python3.11/encodings/cp1254.py", + "lib/python3.11/encodings/cp1255.py", + "lib/python3.11/encodings/cp1256.py", + "lib/python3.11/encodings/cp1257.py", + "lib/python3.11/encodings/cp1258.py", + "lib/python3.11/encodings/cp273.py", + "lib/python3.11/encodings/cp424.py", + "lib/python3.11/encodings/cp437.py", + "lib/python3.11/encodings/cp500.py", + "lib/python3.11/encodings/cp720.py", + "lib/python3.11/encodings/cp737.py", + "lib/python3.11/encodings/cp775.py", + "lib/python3.11/encodings/cp850.py", + "lib/python3.11/encodings/cp852.py", + "lib/python3.11/encodings/cp855.py", + "lib/python3.11/encodings/cp856.py", + "lib/python3.11/encodings/cp857.py", + "lib/python3.11/encodings/cp858.py", + "lib/python3.11/encodings/cp860.py", + "lib/python3.11/encodings/cp861.py", + "lib/python3.11/encodings/cp862.py", + "lib/python3.11/encodings/cp863.py", + "lib/python3.11/encodings/cp864.py", + "lib/python3.11/encodings/cp865.py", + "lib/python3.11/encodings/cp866.py", + "lib/python3.11/encodings/cp869.py", + "lib/python3.11/encodings/cp874.py", + "lib/python3.11/encodings/cp875.py", + "lib/python3.11/encodings/cp932.py", + "lib/python3.11/encodings/cp949.py", + "lib/python3.11/encodings/cp950.py", + "lib/python3.11/encodings/euc_jis_2004.py", + "lib/python3.11/encodings/euc_jisx0213.py", + "lib/python3.11/encodings/euc_jp.py", + "lib/python3.11/encodings/euc_kr.py", + "lib/python3.11/encodings/gb18030.py", + "lib/python3.11/encodings/gb2312.py", + "lib/python3.11/encodings/gbk.py", + "lib/python3.11/encodings/hex_codec.py", + "lib/python3.11/encodings/hp_roman8.py", + "lib/python3.11/encodings/hz.py", + "lib/python3.11/encodings/idna.py", + "lib/python3.11/encodings/iso2022_jp.py", + "lib/python3.11/encodings/iso2022_jp_1.py", + "lib/python3.11/encodings/iso2022_jp_2.py", + "lib/python3.11/encodings/iso2022_jp_2004.py", + "lib/python3.11/encodings/iso2022_jp_3.py", + "lib/python3.11/encodings/iso2022_jp_ext.py", + "lib/python3.11/encodings/iso2022_kr.py", + "lib/python3.11/encodings/iso8859_1.py", + "lib/python3.11/encodings/iso8859_10.py", + "lib/python3.11/encodings/iso8859_11.py", + "lib/python3.11/encodings/iso8859_13.py", + "lib/python3.11/encodings/iso8859_14.py", + "lib/python3.11/encodings/iso8859_15.py", + "lib/python3.11/encodings/iso8859_16.py", + "lib/python3.11/encodings/iso8859_2.py", + "lib/python3.11/encodings/iso8859_3.py", + "lib/python3.11/encodings/iso8859_4.py", + "lib/python3.11/encodings/iso8859_5.py", + "lib/python3.11/encodings/iso8859_6.py", + "lib/python3.11/encodings/iso8859_7.py", + "lib/python3.11/encodings/iso8859_8.py", + "lib/python3.11/encodings/iso8859_9.py", + "lib/python3.11/encodings/johab.py", + "lib/python3.11/encodings/koi8_r.py", + "lib/python3.11/encodings/koi8_t.py", + "lib/python3.11/encodings/koi8_u.py", + "lib/python3.11/encodings/kz1048.py", + "lib/python3.11/encodings/latin_1.py", + "lib/python3.11/encodings/mac_arabic.py", + "lib/python3.11/encodings/mac_croatian.py", + "lib/python3.11/encodings/mac_cyrillic.py", + "lib/python3.11/encodings/mac_farsi.py", + "lib/python3.11/encodings/mac_greek.py", + "lib/python3.11/encodings/mac_iceland.py", + "lib/python3.11/encodings/mac_latin2.py", + "lib/python3.11/encodings/mac_roman.py", + "lib/python3.11/encodings/mac_romanian.py", + "lib/python3.11/encodings/mac_turkish.py", + "lib/python3.11/encodings/mbcs.py", + "lib/python3.11/encodings/oem.py", + "lib/python3.11/encodings/palmos.py", + "lib/python3.11/encodings/ptcp154.py", + "lib/python3.11/encodings/punycode.py", + "lib/python3.11/encodings/quopri_codec.py", + "lib/python3.11/encodings/raw_unicode_escape.py", + "lib/python3.11/encodings/rot_13.py", + "lib/python3.11/encodings/shift_jis.py", + "lib/python3.11/encodings/shift_jis_2004.py", + "lib/python3.11/encodings/shift_jisx0213.py", + "lib/python3.11/encodings/tis_620.py", + "lib/python3.11/encodings/undefined.py", + "lib/python3.11/encodings/unicode_escape.py", + "lib/python3.11/encodings/utf_16.py", + "lib/python3.11/encodings/utf_16_be.py", + "lib/python3.11/encodings/utf_16_le.py", + "lib/python3.11/encodings/utf_32.py", + "lib/python3.11/encodings/utf_32_be.py", + "lib/python3.11/encodings/utf_32_le.py", + "lib/python3.11/encodings/utf_7.py", + "lib/python3.11/encodings/utf_8.py", + "lib/python3.11/encodings/utf_8_sig.py", + "lib/python3.11/encodings/uu_codec.py", + "lib/python3.11/encodings/zlib_codec.py", + "lib/python3.11/ensurepip/__init__.py", + "lib/python3.11/ensurepip/__main__.py", + "lib/python3.11/ensurepip/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/ensurepip/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/ensurepip/__pycache__/_uninstall.cpython-311.pyc", + "lib/python3.11/ensurepip/_bundled/pip-23.2.1-py3-none-any.whl", + "lib/python3.11/ensurepip/_bundled/setuptools-65.5.0-py3-none-any.whl", + "lib/python3.11/ensurepip/_uninstall.py", + "lib/python3.11/enum.py", + "lib/python3.11/filecmp.py", + "lib/python3.11/fileinput.py", + "lib/python3.11/fnmatch.py", + "lib/python3.11/fractions.py", + "lib/python3.11/ftplib.py", + "lib/python3.11/functools.py", + "lib/python3.11/genericpath.py", + "lib/python3.11/getopt.py", + "lib/python3.11/getpass.py", + "lib/python3.11/gettext.py", + "lib/python3.11/glob.py", + "lib/python3.11/graphlib.py", + "lib/python3.11/gzip.py", + "lib/python3.11/hashlib.py", + "lib/python3.11/heapq.py", + "lib/python3.11/hmac.py", + "lib/python3.11/html/__init__.py", + "lib/python3.11/html/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/html/__pycache__/entities.cpython-311.pyc", + "lib/python3.11/html/__pycache__/parser.cpython-311.pyc", + "lib/python3.11/html/entities.py", + "lib/python3.11/html/parser.py", + "lib/python3.11/http/__init__.py", + "lib/python3.11/http/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/http/__pycache__/client.cpython-311.pyc", + "lib/python3.11/http/__pycache__/cookiejar.cpython-311.pyc", + "lib/python3.11/http/__pycache__/cookies.cpython-311.pyc", + "lib/python3.11/http/__pycache__/server.cpython-311.pyc", + "lib/python3.11/http/client.py", + "lib/python3.11/http/cookiejar.py", + "lib/python3.11/http/cookies.py", + "lib/python3.11/http/server.py", + "lib/python3.11/idlelib/CREDITS.txt", + "lib/python3.11/idlelib/ChangeLog", + "lib/python3.11/idlelib/HISTORY.txt", + "lib/python3.11/idlelib/Icons/README.txt", + "lib/python3.11/idlelib/Icons/folder.gif", + "lib/python3.11/idlelib/Icons/idle.ico", + "lib/python3.11/idlelib/Icons/idle_16.gif", + "lib/python3.11/idlelib/Icons/idle_16.png", + "lib/python3.11/idlelib/Icons/idle_256.png", + "lib/python3.11/idlelib/Icons/idle_32.gif", + "lib/python3.11/idlelib/Icons/idle_32.png", + "lib/python3.11/idlelib/Icons/idle_48.gif", + "lib/python3.11/idlelib/Icons/idle_48.png", + "lib/python3.11/idlelib/Icons/minusnode.gif", + "lib/python3.11/idlelib/Icons/openfolder.gif", + "lib/python3.11/idlelib/Icons/plusnode.gif", + "lib/python3.11/idlelib/Icons/python.gif", + "lib/python3.11/idlelib/Icons/tk.gif", + "lib/python3.11/idlelib/NEWS.txt", + "lib/python3.11/idlelib/NEWS2x.txt", + "lib/python3.11/idlelib/README.txt", + "lib/python3.11/idlelib/TODO.txt", + "lib/python3.11/idlelib/__init__.py", + "lib/python3.11/idlelib/__main__.py", + "lib/python3.11/idlelib/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/autocomplete.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/autocomplete_w.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/autoexpand.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/browser.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/calltip.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/calltip_w.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/codecontext.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/colorizer.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/config.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/config_key.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/configdialog.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/debugger.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/debugger_r.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/debugobj.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/debugobj_r.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/delegator.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/dynoption.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/editor.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/filelist.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/format.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/grep.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/help.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/help_about.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/history.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/hyperparser.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/idle.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/iomenu.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/macosx.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/mainmenu.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/multicall.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/outwin.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/parenmatch.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/pathbrowser.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/percolator.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/pyparse.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/pyshell.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/query.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/redirector.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/replace.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/rpc.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/run.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/runscript.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/scrolledlist.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/search.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/searchbase.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/searchengine.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/sidebar.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/squeezer.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/stackviewer.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/statusbar.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/textview.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/tooltip.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/tree.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/undo.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/util.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/window.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/zoomheight.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/zzdummy.cpython-311.pyc", + "lib/python3.11/idlelib/autocomplete.py", + "lib/python3.11/idlelib/autocomplete_w.py", + "lib/python3.11/idlelib/autoexpand.py", + "lib/python3.11/idlelib/browser.py", + "lib/python3.11/idlelib/calltip.py", + "lib/python3.11/idlelib/calltip_w.py", + "lib/python3.11/idlelib/codecontext.py", + "lib/python3.11/idlelib/colorizer.py", + "lib/python3.11/idlelib/config-extensions.def", + "lib/python3.11/idlelib/config-highlight.def", + "lib/python3.11/idlelib/config-keys.def", + "lib/python3.11/idlelib/config-main.def", + "lib/python3.11/idlelib/config.py", + "lib/python3.11/idlelib/config_key.py", + "lib/python3.11/idlelib/configdialog.py", + "lib/python3.11/idlelib/debugger.py", + "lib/python3.11/idlelib/debugger_r.py", + "lib/python3.11/idlelib/debugobj.py", + "lib/python3.11/idlelib/debugobj_r.py", + "lib/python3.11/idlelib/delegator.py", + "lib/python3.11/idlelib/dynoption.py", + "lib/python3.11/idlelib/editor.py", + "lib/python3.11/idlelib/extend.txt", + "lib/python3.11/idlelib/filelist.py", + "lib/python3.11/idlelib/format.py", + "lib/python3.11/idlelib/grep.py", + "lib/python3.11/idlelib/help.html", + "lib/python3.11/idlelib/help.py", + "lib/python3.11/idlelib/help_about.py", + "lib/python3.11/idlelib/history.py", + "lib/python3.11/idlelib/hyperparser.py", + "lib/python3.11/idlelib/idle.bat", + "lib/python3.11/idlelib/idle.py", + "lib/python3.11/idlelib/idle.pyw", + "lib/python3.11/idlelib/idle_test/README.txt", + "lib/python3.11/idlelib/idle_test/__init__.py", + "lib/python3.11/idlelib/idle_test/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/htest.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/mock_idle.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/mock_tk.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/template.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_autocomplete.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_autocomplete_w.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_autoexpand.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_browser.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_calltip.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_calltip_w.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_codecontext.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_colorizer.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_config.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_config_key.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_configdialog.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_debugger.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_debugger_r.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_debugobj.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_debugobj_r.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_delegator.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_editmenu.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_editor.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_filelist.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_format.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_grep.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_help.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_help_about.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_history.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_hyperparser.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_iomenu.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_macosx.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_mainmenu.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_multicall.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_outwin.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_parenmatch.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_pathbrowser.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_percolator.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_pyparse.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_pyshell.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_query.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_redirector.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_replace.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_rpc.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_run.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_runscript.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_scrolledlist.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_search.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_searchbase.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_searchengine.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_sidebar.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_squeezer.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_stackviewer.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_statusbar.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_text.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_textview.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_tooltip.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_tree.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_undo.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_util.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_warning.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_window.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_zoomheight.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_zzdummy.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/tkinter_testing_utils.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/example_noext", + "lib/python3.11/idlelib/idle_test/example_stub.pyi", + "lib/python3.11/idlelib/idle_test/htest.py", + "lib/python3.11/idlelib/idle_test/mock_idle.py", + "lib/python3.11/idlelib/idle_test/mock_tk.py", + "lib/python3.11/idlelib/idle_test/template.py", + "lib/python3.11/idlelib/idle_test/test_autocomplete.py", + "lib/python3.11/idlelib/idle_test/test_autocomplete_w.py", + "lib/python3.11/idlelib/idle_test/test_autoexpand.py", + "lib/python3.11/idlelib/idle_test/test_browser.py", + "lib/python3.11/idlelib/idle_test/test_calltip.py", + "lib/python3.11/idlelib/idle_test/test_calltip_w.py", + "lib/python3.11/idlelib/idle_test/test_codecontext.py", + "lib/python3.11/idlelib/idle_test/test_colorizer.py", + "lib/python3.11/idlelib/idle_test/test_config.py", + "lib/python3.11/idlelib/idle_test/test_config_key.py", + "lib/python3.11/idlelib/idle_test/test_configdialog.py", + "lib/python3.11/idlelib/idle_test/test_debugger.py", + "lib/python3.11/idlelib/idle_test/test_debugger_r.py", + "lib/python3.11/idlelib/idle_test/test_debugobj.py", + "lib/python3.11/idlelib/idle_test/test_debugobj_r.py", + "lib/python3.11/idlelib/idle_test/test_delegator.py", + "lib/python3.11/idlelib/idle_test/test_editmenu.py", + "lib/python3.11/idlelib/idle_test/test_editor.py", + "lib/python3.11/idlelib/idle_test/test_filelist.py", + "lib/python3.11/idlelib/idle_test/test_format.py", + "lib/python3.11/idlelib/idle_test/test_grep.py", + "lib/python3.11/idlelib/idle_test/test_help.py", + "lib/python3.11/idlelib/idle_test/test_help_about.py", + "lib/python3.11/idlelib/idle_test/test_history.py", + "lib/python3.11/idlelib/idle_test/test_hyperparser.py", + "lib/python3.11/idlelib/idle_test/test_iomenu.py", + "lib/python3.11/idlelib/idle_test/test_macosx.py", + "lib/python3.11/idlelib/idle_test/test_mainmenu.py", + "lib/python3.11/idlelib/idle_test/test_multicall.py", + "lib/python3.11/idlelib/idle_test/test_outwin.py", + "lib/python3.11/idlelib/idle_test/test_parenmatch.py", + "lib/python3.11/idlelib/idle_test/test_pathbrowser.py", + "lib/python3.11/idlelib/idle_test/test_percolator.py", + "lib/python3.11/idlelib/idle_test/test_pyparse.py", + "lib/python3.11/idlelib/idle_test/test_pyshell.py", + "lib/python3.11/idlelib/idle_test/test_query.py", + "lib/python3.11/idlelib/idle_test/test_redirector.py", + "lib/python3.11/idlelib/idle_test/test_replace.py", + "lib/python3.11/idlelib/idle_test/test_rpc.py", + "lib/python3.11/idlelib/idle_test/test_run.py", + "lib/python3.11/idlelib/idle_test/test_runscript.py", + "lib/python3.11/idlelib/idle_test/test_scrolledlist.py", + "lib/python3.11/idlelib/idle_test/test_search.py", + "lib/python3.11/idlelib/idle_test/test_searchbase.py", + "lib/python3.11/idlelib/idle_test/test_searchengine.py", + "lib/python3.11/idlelib/idle_test/test_sidebar.py", + "lib/python3.11/idlelib/idle_test/test_squeezer.py", + "lib/python3.11/idlelib/idle_test/test_stackviewer.py", + "lib/python3.11/idlelib/idle_test/test_statusbar.py", + "lib/python3.11/idlelib/idle_test/test_text.py", + "lib/python3.11/idlelib/idle_test/test_textview.py", + "lib/python3.11/idlelib/idle_test/test_tooltip.py", + "lib/python3.11/idlelib/idle_test/test_tree.py", + "lib/python3.11/idlelib/idle_test/test_undo.py", + "lib/python3.11/idlelib/idle_test/test_util.py", + "lib/python3.11/idlelib/idle_test/test_warning.py", + "lib/python3.11/idlelib/idle_test/test_window.py", + "lib/python3.11/idlelib/idle_test/test_zoomheight.py", + "lib/python3.11/idlelib/idle_test/test_zzdummy.py", + "lib/python3.11/idlelib/idle_test/tkinter_testing_utils.py", + "lib/python3.11/idlelib/iomenu.py", + "lib/python3.11/idlelib/macosx.py", + "lib/python3.11/idlelib/mainmenu.py", + "lib/python3.11/idlelib/multicall.py", + "lib/python3.11/idlelib/outwin.py", + "lib/python3.11/idlelib/parenmatch.py", + "lib/python3.11/idlelib/pathbrowser.py", + "lib/python3.11/idlelib/percolator.py", + "lib/python3.11/idlelib/pyparse.py", + "lib/python3.11/idlelib/pyshell.py", + "lib/python3.11/idlelib/query.py", + "lib/python3.11/idlelib/redirector.py", + "lib/python3.11/idlelib/replace.py", + "lib/python3.11/idlelib/rpc.py", + "lib/python3.11/idlelib/run.py", + "lib/python3.11/idlelib/runscript.py", + "lib/python3.11/idlelib/scrolledlist.py", + "lib/python3.11/idlelib/search.py", + "lib/python3.11/idlelib/searchbase.py", + "lib/python3.11/idlelib/searchengine.py", + "lib/python3.11/idlelib/sidebar.py", + "lib/python3.11/idlelib/squeezer.py", + "lib/python3.11/idlelib/stackviewer.py", + "lib/python3.11/idlelib/statusbar.py", + "lib/python3.11/idlelib/textview.py", + "lib/python3.11/idlelib/tooltip.py", + "lib/python3.11/idlelib/tree.py", + "lib/python3.11/idlelib/undo.py", + "lib/python3.11/idlelib/util.py", + "lib/python3.11/idlelib/window.py", + "lib/python3.11/idlelib/zoomheight.py", + "lib/python3.11/idlelib/zzdummy.py", + "lib/python3.11/imaplib.py", + "lib/python3.11/imghdr.py", + "lib/python3.11/imp.py", + "lib/python3.11/importlib/__init__.py", + "lib/python3.11/importlib/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/_abc.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/_bootstrap.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/_bootstrap_external.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/abc.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/machinery.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/readers.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/simple.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/util.cpython-311.pyc", + "lib/python3.11/importlib/_abc.py", + "lib/python3.11/importlib/_bootstrap.py", + "lib/python3.11/importlib/_bootstrap_external.py", + "lib/python3.11/importlib/abc.py", + "lib/python3.11/importlib/machinery.py", + "lib/python3.11/importlib/metadata/__init__.py", + "lib/python3.11/importlib/metadata/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/importlib/metadata/__pycache__/_adapters.cpython-311.pyc", + "lib/python3.11/importlib/metadata/__pycache__/_collections.cpython-311.pyc", + "lib/python3.11/importlib/metadata/__pycache__/_functools.cpython-311.pyc", + "lib/python3.11/importlib/metadata/__pycache__/_itertools.cpython-311.pyc", + "lib/python3.11/importlib/metadata/__pycache__/_meta.cpython-311.pyc", + "lib/python3.11/importlib/metadata/__pycache__/_text.cpython-311.pyc", + "lib/python3.11/importlib/metadata/_adapters.py", + "lib/python3.11/importlib/metadata/_collections.py", + "lib/python3.11/importlib/metadata/_functools.py", + "lib/python3.11/importlib/metadata/_itertools.py", + "lib/python3.11/importlib/metadata/_meta.py", + "lib/python3.11/importlib/metadata/_text.py", + "lib/python3.11/importlib/readers.py", + "lib/python3.11/importlib/resources/__init__.py", + "lib/python3.11/importlib/resources/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/_adapters.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/_common.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/_itertools.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/_legacy.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/abc.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/readers.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/simple.cpython-311.pyc", + "lib/python3.11/importlib/resources/_adapters.py", + "lib/python3.11/importlib/resources/_common.py", + "lib/python3.11/importlib/resources/_itertools.py", + "lib/python3.11/importlib/resources/_legacy.py", + "lib/python3.11/importlib/resources/abc.py", + "lib/python3.11/importlib/resources/readers.py", + "lib/python3.11/importlib/resources/simple.py", + "lib/python3.11/importlib/simple.py", + "lib/python3.11/importlib/util.py", + "lib/python3.11/inspect.py", + "lib/python3.11/io.py", + "lib/python3.11/ipaddress.py", + "lib/python3.11/json/__init__.py", + "lib/python3.11/json/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/json/__pycache__/decoder.cpython-311.pyc", + "lib/python3.11/json/__pycache__/encoder.cpython-311.pyc", + "lib/python3.11/json/__pycache__/scanner.cpython-311.pyc", + "lib/python3.11/json/__pycache__/tool.cpython-311.pyc", + "lib/python3.11/json/decoder.py", + "lib/python3.11/json/encoder.py", + "lib/python3.11/json/scanner.py", + "lib/python3.11/json/tool.py", + "lib/python3.11/keyword.py", + "lib/python3.11/lib-dynload/_asyncio.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_bisect.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_blake2.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_bz2.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_codecs_cn.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_codecs_hk.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_codecs_iso2022.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_codecs_jp.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_codecs_kr.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_codecs_tw.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_contextvars.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_crypt.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_csv.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_ctypes.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_ctypes_test.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_curses.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_curses_panel.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_datetime.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_dbm.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_decimal.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_elementtree.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_hashlib.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_heapq.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_json.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_lsprof.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_lzma.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_md5.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_multibytecodec.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_multiprocessing.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_opcode.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_pickle.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_posixshmem.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_posixsubprocess.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_queue.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_random.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_scproxy.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_sha1.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_sha256.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_sha3.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_sha512.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_socket.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_sqlite3.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_ssl.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_statistics.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_struct.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_testbuffer.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_testcapi.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_testclinic.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_testimportmultiple.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_testinternalcapi.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_testmultiphase.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_tkinter.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_typing.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_uuid.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_xxsubinterpreters.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_xxtestfuzz.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_zoneinfo.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/array.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/audioop.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/binascii.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/cmath.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/fcntl.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/grp.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/math.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/mmap.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/nis.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/pyexpat.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/readline.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/resource.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/select.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/syslog.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/termios.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/unicodedata.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/xxlimited.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/xxlimited_35.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/zlib.cpython-311-darwin.so", + "lib/python3.11/lib2to3/Grammar.txt", + "lib/python3.11/lib2to3/Grammar3.11.5.final.0.pickle", + "lib/python3.11/lib2to3/PatternGrammar.txt", + "lib/python3.11/lib2to3/PatternGrammar3.11.5.final.0.pickle", + "lib/python3.11/lib2to3/__init__.py", + "lib/python3.11/lib2to3/__main__.py", + "lib/python3.11/lib2to3/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/btm_matcher.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/btm_utils.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/fixer_base.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/fixer_util.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/main.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/patcomp.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/pygram.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/pytree.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/refactor.cpython-311.pyc", + "lib/python3.11/lib2to3/btm_matcher.py", + "lib/python3.11/lib2to3/btm_utils.py", + "lib/python3.11/lib2to3/fixer_base.py", + "lib/python3.11/lib2to3/fixer_util.py", + "lib/python3.11/lib2to3/fixes/__init__.py", + "lib/python3.11/lib2to3/fixes/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_apply.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_asserts.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_basestring.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_buffer.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_dict.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_except.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_exec.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_execfile.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_exitfunc.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_filter.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_funcattrs.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_future.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_getcwdu.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_has_key.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_idioms.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_import.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_imports.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_imports2.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_input.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_intern.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_isinstance.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_itertools.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_itertools_imports.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_long.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_map.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_metaclass.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_methodattrs.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_ne.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_next.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_nonzero.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_numliterals.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_operator.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_paren.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_print.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_raise.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_raw_input.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_reduce.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_reload.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_renames.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_repr.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_set_literal.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_standarderror.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_sys_exc.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_throw.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_tuple_params.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_types.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_unicode.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_urllib.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_ws_comma.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_xrange.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_xreadlines.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_zip.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/fix_apply.py", + "lib/python3.11/lib2to3/fixes/fix_asserts.py", + "lib/python3.11/lib2to3/fixes/fix_basestring.py", + "lib/python3.11/lib2to3/fixes/fix_buffer.py", + "lib/python3.11/lib2to3/fixes/fix_dict.py", + "lib/python3.11/lib2to3/fixes/fix_except.py", + "lib/python3.11/lib2to3/fixes/fix_exec.py", + "lib/python3.11/lib2to3/fixes/fix_execfile.py", + "lib/python3.11/lib2to3/fixes/fix_exitfunc.py", + "lib/python3.11/lib2to3/fixes/fix_filter.py", + "lib/python3.11/lib2to3/fixes/fix_funcattrs.py", + "lib/python3.11/lib2to3/fixes/fix_future.py", + "lib/python3.11/lib2to3/fixes/fix_getcwdu.py", + "lib/python3.11/lib2to3/fixes/fix_has_key.py", + "lib/python3.11/lib2to3/fixes/fix_idioms.py", + "lib/python3.11/lib2to3/fixes/fix_import.py", + "lib/python3.11/lib2to3/fixes/fix_imports.py", + "lib/python3.11/lib2to3/fixes/fix_imports2.py", + "lib/python3.11/lib2to3/fixes/fix_input.py", + "lib/python3.11/lib2to3/fixes/fix_intern.py", + "lib/python3.11/lib2to3/fixes/fix_isinstance.py", + "lib/python3.11/lib2to3/fixes/fix_itertools.py", + "lib/python3.11/lib2to3/fixes/fix_itertools_imports.py", + "lib/python3.11/lib2to3/fixes/fix_long.py", + "lib/python3.11/lib2to3/fixes/fix_map.py", + "lib/python3.11/lib2to3/fixes/fix_metaclass.py", + "lib/python3.11/lib2to3/fixes/fix_methodattrs.py", + "lib/python3.11/lib2to3/fixes/fix_ne.py", + "lib/python3.11/lib2to3/fixes/fix_next.py", + "lib/python3.11/lib2to3/fixes/fix_nonzero.py", + "lib/python3.11/lib2to3/fixes/fix_numliterals.py", + "lib/python3.11/lib2to3/fixes/fix_operator.py", + "lib/python3.11/lib2to3/fixes/fix_paren.py", + "lib/python3.11/lib2to3/fixes/fix_print.py", + "lib/python3.11/lib2to3/fixes/fix_raise.py", + "lib/python3.11/lib2to3/fixes/fix_raw_input.py", + "lib/python3.11/lib2to3/fixes/fix_reduce.py", + "lib/python3.11/lib2to3/fixes/fix_reload.py", + "lib/python3.11/lib2to3/fixes/fix_renames.py", + "lib/python3.11/lib2to3/fixes/fix_repr.py", + "lib/python3.11/lib2to3/fixes/fix_set_literal.py", + "lib/python3.11/lib2to3/fixes/fix_standarderror.py", + "lib/python3.11/lib2to3/fixes/fix_sys_exc.py", + "lib/python3.11/lib2to3/fixes/fix_throw.py", + "lib/python3.11/lib2to3/fixes/fix_tuple_params.py", + "lib/python3.11/lib2to3/fixes/fix_types.py", + "lib/python3.11/lib2to3/fixes/fix_unicode.py", + "lib/python3.11/lib2to3/fixes/fix_urllib.py", + "lib/python3.11/lib2to3/fixes/fix_ws_comma.py", + "lib/python3.11/lib2to3/fixes/fix_xrange.py", + "lib/python3.11/lib2to3/fixes/fix_xreadlines.py", + "lib/python3.11/lib2to3/fixes/fix_zip.py", + "lib/python3.11/lib2to3/main.py", + "lib/python3.11/lib2to3/patcomp.py", + "lib/python3.11/lib2to3/pgen2/__init__.py", + "lib/python3.11/lib2to3/pgen2/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/conv.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/driver.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/grammar.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/literals.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/parse.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/pgen.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/token.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/tokenize.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/conv.py", + "lib/python3.11/lib2to3/pgen2/driver.py", + "lib/python3.11/lib2to3/pgen2/grammar.py", + "lib/python3.11/lib2to3/pgen2/literals.py", + "lib/python3.11/lib2to3/pgen2/parse.py", + "lib/python3.11/lib2to3/pgen2/pgen.py", + "lib/python3.11/lib2to3/pgen2/token.py", + "lib/python3.11/lib2to3/pgen2/tokenize.py", + "lib/python3.11/lib2to3/pygram.py", + "lib/python3.11/lib2to3/pytree.py", + "lib/python3.11/lib2to3/refactor.py", + "lib/python3.11/lib2to3/tests/__init__.py", + "lib/python3.11/lib2to3/tests/__main__.py", + "lib/python3.11/lib2to3/tests/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/pytree_idempotency.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/support.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_all_fixers.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_fixers.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_main.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_parser.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_pytree.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_refactor.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_util.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/README", + "lib/python3.11/lib2to3/tests/data/__pycache__/infinite_recursion.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/__pycache__/py3_test_grammar.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/bom.py", + "lib/python3.11/lib2to3/tests/data/crlf.py", + "lib/python3.11/lib2to3/tests/data/different_encoding.py", + "lib/python3.11/lib2to3/tests/data/false_encoding.py", + "lib/python3.11/lib2to3/tests/data/fixers/__pycache__/bad_order.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/__pycache__/no_fixer_cls.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/__pycache__/parrot_example.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/bad_order.py", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__init__.py", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__pycache__/fix_explicit.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__pycache__/fix_first.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__pycache__/fix_last.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__pycache__/fix_parrot.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__pycache__/fix_preorder.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/fix_explicit.py", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/fix_first.py", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/fix_last.py", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/fix_parrot.py", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/fix_preorder.py", + "lib/python3.11/lib2to3/tests/data/fixers/no_fixer_cls.py", + "lib/python3.11/lib2to3/tests/data/fixers/parrot_example.py", + "lib/python3.11/lib2to3/tests/data/infinite_recursion.py", + "lib/python3.11/lib2to3/tests/data/py2_test_grammar.py", + "lib/python3.11/lib2to3/tests/data/py3_test_grammar.py", + "lib/python3.11/lib2to3/tests/pytree_idempotency.py", + "lib/python3.11/lib2to3/tests/support.py", + "lib/python3.11/lib2to3/tests/test_all_fixers.py", + "lib/python3.11/lib2to3/tests/test_fixers.py", + "lib/python3.11/lib2to3/tests/test_main.py", + "lib/python3.11/lib2to3/tests/test_parser.py", + "lib/python3.11/lib2to3/tests/test_pytree.py", + "lib/python3.11/lib2to3/tests/test_refactor.py", + "lib/python3.11/lib2to3/tests/test_util.py", + "lib/python3.11/linecache.py", + "lib/python3.11/locale.py", + "lib/python3.11/logging/__init__.py", + "lib/python3.11/logging/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/logging/__pycache__/config.cpython-311.pyc", + "lib/python3.11/logging/__pycache__/handlers.cpython-311.pyc", + "lib/python3.11/logging/config.py", + "lib/python3.11/logging/handlers.py", + "lib/python3.11/lzma.py", + "lib/python3.11/mailbox.py", + "lib/python3.11/mailcap.py", + "lib/python3.11/mimetypes.py", + "lib/python3.11/modulefinder.py", + "lib/python3.11/multiprocessing/__init__.py", + "lib/python3.11/multiprocessing/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/connection.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/context.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/forkserver.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/heap.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/managers.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/pool.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/popen_fork.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/popen_forkserver.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/popen_spawn_posix.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/popen_spawn_win32.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/process.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/queues.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/reduction.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/resource_sharer.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/resource_tracker.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/shared_memory.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/sharedctypes.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/spawn.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/synchronize.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/util.cpython-311.pyc", + "lib/python3.11/multiprocessing/connection.py", + "lib/python3.11/multiprocessing/context.py", + "lib/python3.11/multiprocessing/dummy/__init__.py", + "lib/python3.11/multiprocessing/dummy/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/multiprocessing/dummy/__pycache__/connection.cpython-311.pyc", + "lib/python3.11/multiprocessing/dummy/connection.py", + "lib/python3.11/multiprocessing/forkserver.py", + "lib/python3.11/multiprocessing/heap.py", + "lib/python3.11/multiprocessing/managers.py", + "lib/python3.11/multiprocessing/pool.py", + "lib/python3.11/multiprocessing/popen_fork.py", + "lib/python3.11/multiprocessing/popen_forkserver.py", + "lib/python3.11/multiprocessing/popen_spawn_posix.py", + "lib/python3.11/multiprocessing/popen_spawn_win32.py", + "lib/python3.11/multiprocessing/process.py", + "lib/python3.11/multiprocessing/queues.py", + "lib/python3.11/multiprocessing/reduction.py", + "lib/python3.11/multiprocessing/resource_sharer.py", + "lib/python3.11/multiprocessing/resource_tracker.py", + "lib/python3.11/multiprocessing/shared_memory.py", + "lib/python3.11/multiprocessing/sharedctypes.py", + "lib/python3.11/multiprocessing/spawn.py", + "lib/python3.11/multiprocessing/synchronize.py", + "lib/python3.11/multiprocessing/util.py", + "lib/python3.11/netrc.py", + "lib/python3.11/nntplib.py", + "lib/python3.11/ntpath.py", + "lib/python3.11/nturl2path.py", + "lib/python3.11/numbers.py", + "lib/python3.11/opcode.py", + "lib/python3.11/operator.py", + "lib/python3.11/optparse.py", + "lib/python3.11/os.py", + "lib/python3.11/pathlib.py", + "lib/python3.11/pdb.py", + "lib/python3.11/pickle.py", + "lib/python3.11/pickletools.py", + "lib/python3.11/pipes.py", + "lib/python3.11/pkgutil.py", + "lib/python3.11/platform.py", + "lib/python3.11/plistlib.py", + "lib/python3.11/poplib.py", + "lib/python3.11/posixpath.py", + "lib/python3.11/pprint.py", + "lib/python3.11/profile.py", + "lib/python3.11/pstats.py", + "lib/python3.11/pty.py", + "lib/python3.11/py_compile.py", + "lib/python3.11/pyclbr.py", + "lib/python3.11/pydoc.py", + "lib/python3.11/pydoc_data/__init__.py", + "lib/python3.11/pydoc_data/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/pydoc_data/__pycache__/topics.cpython-311.pyc", + "lib/python3.11/pydoc_data/_pydoc.css", + "lib/python3.11/pydoc_data/topics.py", + "lib/python3.11/queue.py", + "lib/python3.11/quopri.py", + "lib/python3.11/random.py", + "lib/python3.11/re/__init__.py", + "lib/python3.11/re/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/re/__pycache__/_casefix.cpython-311.pyc", + "lib/python3.11/re/__pycache__/_compiler.cpython-311.pyc", + "lib/python3.11/re/__pycache__/_constants.cpython-311.pyc", + "lib/python3.11/re/__pycache__/_parser.cpython-311.pyc", + "lib/python3.11/re/_casefix.py", + "lib/python3.11/re/_compiler.py", + "lib/python3.11/re/_constants.py", + "lib/python3.11/re/_parser.py", + "lib/python3.11/reprlib.py", + "lib/python3.11/rlcompleter.py", + "lib/python3.11/runpy.py", + "lib/python3.11/sched.py", + "lib/python3.11/secrets.py", + "lib/python3.11/selectors.py", + "lib/python3.11/shelve.py", + "lib/python3.11/shlex.py", + "lib/python3.11/shutil.py", + "lib/python3.11/signal.py", + "lib/python3.11/site-packages/README.txt", + "lib/python3.11/site.py", + "lib/python3.11/smtpd.py", + "lib/python3.11/smtplib.py", + "lib/python3.11/sndhdr.py", + "lib/python3.11/socket.py", + "lib/python3.11/socketserver.py", + "lib/python3.11/sqlite3/__init__.py", + "lib/python3.11/sqlite3/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/sqlite3/__pycache__/dbapi2.cpython-311.pyc", + "lib/python3.11/sqlite3/__pycache__/dump.cpython-311.pyc", + "lib/python3.11/sqlite3/dbapi2.py", + "lib/python3.11/sqlite3/dump.py", + "lib/python3.11/sre_compile.py", + "lib/python3.11/sre_constants.py", + "lib/python3.11/sre_parse.py", + "lib/python3.11/ssl.py", + "lib/python3.11/stat.py", + "lib/python3.11/statistics.py", + "lib/python3.11/string.py", + "lib/python3.11/stringprep.py", + "lib/python3.11/struct.py", + "lib/python3.11/subprocess.py", + "lib/python3.11/sunau.py", + "lib/python3.11/symtable.py", + "lib/python3.11/sysconfig.py", + "lib/python3.11/tabnanny.py", + "lib/python3.11/tarfile.py", + "lib/python3.11/telnetlib.py", + "lib/python3.11/tempfile.py", + "lib/python3.11/test/__init__.py", + "lib/python3.11/test/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/test/__pycache__/test_script_helper.cpython-311.pyc", + "lib/python3.11/test/__pycache__/test_support.cpython-311.pyc", + "lib/python3.11/test/support/__init__.py", + "lib/python3.11/test/support/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/bytecode_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/hashlib_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/import_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/interpreters.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/logging_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/os_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/script_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/socket_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/testresult.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/threading_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/warnings_helper.cpython-311.pyc", + "lib/python3.11/test/support/bytecode_helper.py", + "lib/python3.11/test/support/hashlib_helper.py", + "lib/python3.11/test/support/import_helper.py", + "lib/python3.11/test/support/interpreters.py", + "lib/python3.11/test/support/logging_helper.py", + "lib/python3.11/test/support/os_helper.py", + "lib/python3.11/test/support/script_helper.py", + "lib/python3.11/test/support/socket_helper.py", + "lib/python3.11/test/support/testresult.py", + "lib/python3.11/test/support/threading_helper.py", + "lib/python3.11/test/support/warnings_helper.py", + "lib/python3.11/test/test_script_helper.py", + "lib/python3.11/test/test_support.py", + "lib/python3.11/textwrap.py", + "lib/python3.11/this.py", + "lib/python3.11/threading.py", + "lib/python3.11/timeit.py", + "lib/python3.11/tkinter/__init__.py", + "lib/python3.11/tkinter/__main__.py", + "lib/python3.11/tkinter/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/colorchooser.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/commondialog.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/constants.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/dialog.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/dnd.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/filedialog.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/font.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/messagebox.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/scrolledtext.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/simpledialog.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/tix.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/ttk.cpython-311.pyc", + "lib/python3.11/tkinter/colorchooser.py", + "lib/python3.11/tkinter/commondialog.py", + "lib/python3.11/tkinter/constants.py", + "lib/python3.11/tkinter/dialog.py", + "lib/python3.11/tkinter/dnd.py", + "lib/python3.11/tkinter/filedialog.py", + "lib/python3.11/tkinter/font.py", + "lib/python3.11/tkinter/messagebox.py", + "lib/python3.11/tkinter/scrolledtext.py", + "lib/python3.11/tkinter/simpledialog.py", + "lib/python3.11/tkinter/tix.py", + "lib/python3.11/tkinter/ttk.py", + "lib/python3.11/token.py", + "lib/python3.11/tokenize.py", + "lib/python3.11/tomllib/__init__.py", + "lib/python3.11/tomllib/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/tomllib/__pycache__/_parser.cpython-311.pyc", + "lib/python3.11/tomllib/__pycache__/_re.cpython-311.pyc", + "lib/python3.11/tomllib/__pycache__/_types.cpython-311.pyc", + "lib/python3.11/tomllib/_parser.py", + "lib/python3.11/tomllib/_re.py", + "lib/python3.11/tomllib/_types.py", + "lib/python3.11/trace.py", + "lib/python3.11/traceback.py", + "lib/python3.11/tracemalloc.py", + "lib/python3.11/tty.py", + "lib/python3.11/turtle.py", + "lib/python3.11/turtledemo/__init__.py", + "lib/python3.11/turtledemo/__main__.py", + "lib/python3.11/turtledemo/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/bytedesign.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/chaos.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/clock.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/colormixer.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/forest.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/fractalcurves.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/lindenmayer.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/minimal_hanoi.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/nim.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/paint.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/peace.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/penrose.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/planet_and_moon.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/rosette.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/round_dance.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/sorting_animate.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/tree.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/two_canvases.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/yinyang.cpython-311.pyc", + "lib/python3.11/turtledemo/bytedesign.py", + "lib/python3.11/turtledemo/chaos.py", + "lib/python3.11/turtledemo/clock.py", + "lib/python3.11/turtledemo/colormixer.py", + "lib/python3.11/turtledemo/forest.py", + "lib/python3.11/turtledemo/fractalcurves.py", + "lib/python3.11/turtledemo/lindenmayer.py", + "lib/python3.11/turtledemo/minimal_hanoi.py", + "lib/python3.11/turtledemo/nim.py", + "lib/python3.11/turtledemo/paint.py", + "lib/python3.11/turtledemo/peace.py", + "lib/python3.11/turtledemo/penrose.py", + "lib/python3.11/turtledemo/planet_and_moon.py", + "lib/python3.11/turtledemo/rosette.py", + "lib/python3.11/turtledemo/round_dance.py", + "lib/python3.11/turtledemo/sorting_animate.py", + "lib/python3.11/turtledemo/tree.py", + "lib/python3.11/turtledemo/turtle.cfg", + "lib/python3.11/turtledemo/two_canvases.py", + "lib/python3.11/turtledemo/yinyang.py", + "lib/python3.11/types.py", + "lib/python3.11/typing.py", + "lib/python3.11/unittest/__init__.py", + "lib/python3.11/unittest/__main__.py", + "lib/python3.11/unittest/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/_log.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/async_case.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/case.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/loader.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/main.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/mock.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/result.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/runner.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/signals.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/suite.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/util.cpython-311.pyc", + "lib/python3.11/unittest/_log.py", + "lib/python3.11/unittest/async_case.py", + "lib/python3.11/unittest/case.py", + "lib/python3.11/unittest/loader.py", + "lib/python3.11/unittest/main.py", + "lib/python3.11/unittest/mock.py", + "lib/python3.11/unittest/result.py", + "lib/python3.11/unittest/runner.py", + "lib/python3.11/unittest/signals.py", + "lib/python3.11/unittest/suite.py", + "lib/python3.11/unittest/util.py", + "lib/python3.11/urllib/__init__.py", + "lib/python3.11/urllib/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/urllib/__pycache__/error.cpython-311.pyc", + "lib/python3.11/urllib/__pycache__/parse.cpython-311.pyc", + "lib/python3.11/urllib/__pycache__/request.cpython-311.pyc", + "lib/python3.11/urllib/__pycache__/response.cpython-311.pyc", + "lib/python3.11/urllib/__pycache__/robotparser.cpython-311.pyc", + "lib/python3.11/urllib/error.py", + "lib/python3.11/urllib/parse.py", + "lib/python3.11/urllib/request.py", + "lib/python3.11/urllib/response.py", + "lib/python3.11/urllib/robotparser.py", + "lib/python3.11/uu.py", + "lib/python3.11/uuid.py", + "lib/python3.11/venv/__init__.py", + "lib/python3.11/venv/__main__.py", + "lib/python3.11/venv/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/venv/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/venv/scripts/common/Activate.ps1", + "lib/python3.11/venv/scripts/common/activate", + "lib/python3.11/venv/scripts/posix/activate.csh", + "lib/python3.11/venv/scripts/posix/activate.fish", + "lib/python3.11/warnings.py", + "lib/python3.11/wave.py", + "lib/python3.11/weakref.py", + "lib/python3.11/webbrowser.py", + "lib/python3.11/wsgiref/__init__.py", + "lib/python3.11/wsgiref/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/wsgiref/__pycache__/handlers.cpython-311.pyc", + "lib/python3.11/wsgiref/__pycache__/headers.cpython-311.pyc", + "lib/python3.11/wsgiref/__pycache__/simple_server.cpython-311.pyc", + "lib/python3.11/wsgiref/__pycache__/types.cpython-311.pyc", + "lib/python3.11/wsgiref/__pycache__/util.cpython-311.pyc", + "lib/python3.11/wsgiref/__pycache__/validate.cpython-311.pyc", + "lib/python3.11/wsgiref/handlers.py", + "lib/python3.11/wsgiref/headers.py", + "lib/python3.11/wsgiref/simple_server.py", + "lib/python3.11/wsgiref/types.py", + "lib/python3.11/wsgiref/util.py", + "lib/python3.11/wsgiref/validate.py", + "lib/python3.11/xdrlib.py", + "lib/python3.11/xml/__init__.py", + "lib/python3.11/xml/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/xml/dom/NodeFilter.py", + "lib/python3.11/xml/dom/__init__.py", + "lib/python3.11/xml/dom/__pycache__/NodeFilter.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/domreg.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/expatbuilder.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/minicompat.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/minidom.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/pulldom.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/xmlbuilder.cpython-311.pyc", + "lib/python3.11/xml/dom/domreg.py", + "lib/python3.11/xml/dom/expatbuilder.py", + "lib/python3.11/xml/dom/minicompat.py", + "lib/python3.11/xml/dom/minidom.py", + "lib/python3.11/xml/dom/pulldom.py", + "lib/python3.11/xml/dom/xmlbuilder.py", + "lib/python3.11/xml/etree/ElementInclude.py", + "lib/python3.11/xml/etree/ElementPath.py", + "lib/python3.11/xml/etree/ElementTree.py", + "lib/python3.11/xml/etree/__init__.py", + "lib/python3.11/xml/etree/__pycache__/ElementInclude.cpython-311.pyc", + "lib/python3.11/xml/etree/__pycache__/ElementPath.cpython-311.pyc", + "lib/python3.11/xml/etree/__pycache__/ElementTree.cpython-311.pyc", + "lib/python3.11/xml/etree/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/xml/etree/__pycache__/cElementTree.cpython-311.pyc", + "lib/python3.11/xml/etree/cElementTree.py", + "lib/python3.11/xml/parsers/__init__.py", + "lib/python3.11/xml/parsers/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/xml/parsers/__pycache__/expat.cpython-311.pyc", + "lib/python3.11/xml/parsers/expat.py", + "lib/python3.11/xml/sax/__init__.py", + "lib/python3.11/xml/sax/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/xml/sax/__pycache__/_exceptions.cpython-311.pyc", + "lib/python3.11/xml/sax/__pycache__/expatreader.cpython-311.pyc", + "lib/python3.11/xml/sax/__pycache__/handler.cpython-311.pyc", + "lib/python3.11/xml/sax/__pycache__/saxutils.cpython-311.pyc", + "lib/python3.11/xml/sax/__pycache__/xmlreader.cpython-311.pyc", + "lib/python3.11/xml/sax/_exceptions.py", + "lib/python3.11/xml/sax/expatreader.py", + "lib/python3.11/xml/sax/handler.py", + "lib/python3.11/xml/sax/saxutils.py", + "lib/python3.11/xml/sax/xmlreader.py", + "lib/python3.11/xmlrpc/__init__.py", + "lib/python3.11/xmlrpc/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/xmlrpc/__pycache__/client.cpython-311.pyc", + "lib/python3.11/xmlrpc/__pycache__/server.cpython-311.pyc", + "lib/python3.11/xmlrpc/client.py", + "lib/python3.11/xmlrpc/server.py", + "lib/python3.11/zipapp.py", + "lib/python3.11/zipfile.py", + "lib/python3.11/zipimport.py", + "lib/python3.11/zoneinfo/__init__.py", + "lib/python3.11/zoneinfo/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/zoneinfo/__pycache__/_common.cpython-311.pyc", + "lib/python3.11/zoneinfo/__pycache__/_tzpath.cpython-311.pyc", + "lib/python3.11/zoneinfo/__pycache__/_zoneinfo.cpython-311.pyc", + "lib/python3.11/zoneinfo/_common.py", + "lib/python3.11/zoneinfo/_tzpath.py", + "lib/python3.11/zoneinfo/_zoneinfo.py", + "share/man/man1/python3.1", + "share/man/man1/python3.11.1" + ], + "fn": "python-3.11.5-hb885b13_0.conda", + "license": "PSF-2.0", + "link": { + "source": "/Users/donjayamanne/miniconda3/pkgs/python-3.11.5-hb885b13_0", + "type": 1 + }, + "md5": "6f528bdf159139704ab578df329dee70", + "name": "python", + "package_tarball_full_path": "/Users/donjayamanne/miniconda3/pkgs/python-3.11.5-hb885b13_0.conda", + "paths_data": { + "paths": [ + { + "_path": "bin/2to3-3.11", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "0eb2a68730c6910e60374b6231605a8fe9e4b1ef889fe6bf6955f00607263096", + "sha256_in_prefix": "db867f95c7e5e3d486928ab316afc7ee322118eace698a5fd9c35dd62a7c77e0", + "size_in_bytes": 347 + }, + { + "_path": "bin/idle3.11", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "9e7c5708a61f7b75f0fa84106b3698fc81e0632eea511e9635cc012d95e8ccec", + "sha256_in_prefix": "2daba7590451fb1240f116ad6c50dfb3fe12ab0d0c90450453672dc5f7992345", + "size_in_bytes": 345 + }, + { + "_path": "bin/pydoc3.11", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "af4b3f428ef9f3708c93b8d6a9c9b211c3e531ad480bac0644e18be3d675de15", + "sha256_in_prefix": "29373357dfd57b431809af8ab17e111c47011f8ed325e4b74075551cfd728dc0", + "size_in_bytes": 330 + }, + { + "_path": "bin/python3.11", + "file_mode": "binary", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "ea6aacf75da0a6e048c0acc7d6f9e7e67f4af4af635965ab25aad7956ed07b40", + "sha256_in_prefix": "5309a862e537b7e20d382f479a016995d2b60e7382673e57a98a8644d62a011a", + "size_in_bytes": 6019216 + }, + { + "_path": "bin/python3.11-config", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "48e7f0c28858cd7dd610f089ebce9d090b15273d6f965b5a665418880b9ad017", + "sha256_in_prefix": "178fb9ee8ae853adc2840a51642fbdfe239d4c189e632be37552f83ee881a9d5", + "size_in_bytes": 2289 + }, + { + "_path": "lib/libpython3.11.dylib", + "file_mode": "binary", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "813d7657214af2a40d6f98ed5ad6cd25bdaf9e1b52299dcc22457b6431f46226", + "sha256_in_prefix": "690e286e2a59750500c44dd3eb0fcc3f607604fd1a24a20da1d5877d9ac09cd0", + "size_in_bytes": 6019152 + }, + { + "_path": "lib/pkgconfig/python-3.11-embed.pc", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "5ce92c1022c5d4af2383596197f518fc12687f8f32bf3f42b96c7ee22ac9dc8d", + "sha256_in_prefix": "2ccb5bf00ff727b7941ad8be49360b25f86860ae2f49931743f628dafc9caac1", + "size_in_bytes": 558 + }, + { + "_path": "lib/pkgconfig/python-3.11.pc", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "46ac102bbce0c0b1ff9cabf905c7d44f3e3ff2911127a08b620cd1231a8a70c4", + "sha256_in_prefix": "01f5747180571713792597c3a4b2278f2e2b0e46aaa926e95cc007a373b589aa", + "size_in_bytes": 531 + }, + { + "_path": "lib/python3.11/_sysconfigdata__darwin_darwin.py", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "49c03531794c8e17dbf3bc3b28b5c731c19647b8430e74a7f05967863a73cd89", + "sha256_in_prefix": "d1fed13472229dad30d35c5cd3e497e4cbb16e5aa2fb66abc1919d55f9fa415c", + "size_in_bytes": 85118 + }, + { + "_path": "lib/python3.11/_sysconfigdata__darwin_darwin.py.orig", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "4e1b965e2665c46a97f8df38da25dc3e2636e6e62a2b525d38bfd9304978f7c9", + "sha256_in_prefix": "dbc742fac6650f3e6159c08dc75d77bbe5704af80a671c3ca09aa3e061ddd992", + "size_in_bytes": 97066 + }, + { + "_path": "lib/python3.11/_sysconfigdata_arm64_apple_darwin20_0_0.py", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "810dab3b07b0633c5d5b180351daecb4d1ebf51ee2216019c5dc08afb5c54fd1", + "sha256_in_prefix": "44ad76b97a9bc58243271c310c497b085745bbe5451b4cbf60d6afb475b49465", + "size_in_bytes": 87139 + }, + { + "_path": "lib/python3.11/config-3.11-darwin/Makefile", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "2a78da281edcb631ddd844a43a4e30d166eb6b13651e43a1664f0e1aa9384d3b", + "sha256_in_prefix": "fee789b4cc5318f60fd6d1b4294c7789bf333b55d6c4f8afa1dd4476e7fa4d5b", + "size_in_bytes": 126865 + }, + { + "_path": "lib/python3.11/config-3.11-darwin/python-config.py", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "48e7f0c28858cd7dd610f089ebce9d090b15273d6f965b5a665418880b9ad017", + "sha256_in_prefix": "178fb9ee8ae853adc2840a51642fbdfe239d4c189e632be37552f83ee881a9d5", + "size_in_bytes": 2289 + } + ], + "paths_version": 1 + }, + "requested_spec": "defaults/osx-arm64::python==3.11.5=hb885b13_0[md5=6f528bdf159139704ab578df329dee70]", + "sha256": "e6ae393f2072f9857ffbd78c56ea28ca345beeba4f0ab2e0d5975e424f71b252", + "size": 16161485, + "subdir": "osx-arm64", + "timestamp": 1694439441000, + "track_features": "", + "url": "https://repo.anaconda.com/pkgs/main/osx-arm64/python-3.11.5-hb885b13_0.conda", + "version": "3.11.5" +} \ No newline at end of file diff --git a/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/anaconda-4.0.0/bin/envs/.conda_envs_dir_test b/native_locator/tests/unix/conda_env_created_using_p_flag/user_home/.conda/environments.txt similarity index 100% rename from native_locator/tests/unix/pyenv/user_home/.pyenv/versions/anaconda-4.0.0/bin/envs/.conda_envs_dir_test rename to native_locator/tests/unix/conda_env_created_using_p_flag/user_home/.conda/environments.txt diff --git a/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/anaconda3-2021.04/bin/envs/.conda_envs_dir_test b/native_locator/tests/unix/conda_env_created_using_p_flag/user_home/anaconda3/bin/conda similarity index 100% rename from native_locator/tests/unix/pyenv/user_home/.pyenv/versions/anaconda3-2021.04/bin/envs/.conda_envs_dir_test rename to native_locator/tests/unix/conda_env_created_using_p_flag/user_home/anaconda3/bin/conda diff --git a/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/mambaforge-4.10.1-4/bin/envs/.conda_envs_dir_test b/native_locator/tests/unix/conda_env_created_using_p_flag/user_home/anaconda3/bin/python similarity index 100% rename from native_locator/tests/unix/pyenv/user_home/.pyenv/versions/mambaforge-4.10.1-4/bin/envs/.conda_envs_dir_test rename to native_locator/tests/unix/conda_env_created_using_p_flag/user_home/anaconda3/bin/python diff --git a/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/mambaforge/bin/envs/.conda_envs_dir_test b/native_locator/tests/unix/conda_env_created_using_p_flag/user_home/anaconda3/conda-meta/conda-4.0.2-pyhd3eb1b0_0.json similarity index 100% rename from native_locator/tests/unix/pyenv/user_home/.pyenv/versions/mambaforge/bin/envs/.conda_envs_dir_test rename to native_locator/tests/unix/conda_env_created_using_p_flag/user_home/anaconda3/conda-meta/conda-4.0.2-pyhd3eb1b0_0.json diff --git a/native_locator/tests/unix/conda/user_home/anaconda3/conda-meta/python-10.0.1-hdf0ec26_0_cpython.json b/native_locator/tests/unix/conda_env_created_using_p_flag/user_home/anaconda3/conda-meta/python-20.1.1-hdf0ec26_0_cpython.json similarity index 100% rename from native_locator/tests/unix/conda/user_home/anaconda3/conda-meta/python-10.0.1-hdf0ec26_0_cpython.json rename to native_locator/tests/unix/conda_env_created_using_p_flag/user_home/anaconda3/conda-meta/python-20.1.1-hdf0ec26_0_cpython.json diff --git a/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda-latest/bin/envs/.conda_envs_dir_test b/native_locator/tests/unix/conda_env_created_using_p_flag/user_home/anaconda3/conda-meta/python-slugify-5.0.2-pyhd3eb1b0_0.json similarity index 100% rename from native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda-latest/bin/envs/.conda_envs_dir_test rename to native_locator/tests/unix/conda_env_created_using_p_flag/user_home/anaconda3/conda-meta/python-slugify-5.0.2-pyhd3eb1b0_0.json diff --git a/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda3-3.10-22.11.1-1/bin/envs/.conda_envs_dir_test b/native_locator/tests/unix/conda_env_created_using_p_flag/user_home/anaconda3/envs/.conda_envs_dir_test similarity index 100% rename from native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda3-3.10-22.11.1-1/bin/envs/.conda_envs_dir_test rename to native_locator/tests/unix/conda_env_created_using_p_flag/user_home/anaconda3/envs/.conda_envs_dir_test diff --git a/native_locator/tests/unix/conda_env_created_using_p_flag/user_home/anaconda3/envs/one/conda-meta/python-10.0.1-hdf0ec26_0_cpython.json b/native_locator/tests/unix/conda_env_created_using_p_flag/user_home/anaconda3/envs/one/conda-meta/python-10.0.1-hdf0ec26_0_cpython.json new file mode 100644 index 000000000000..23127993ac05 --- /dev/null +++ b/native_locator/tests/unix/conda_env_created_using_p_flag/user_home/anaconda3/envs/one/conda-meta/python-10.0.1-hdf0ec26_0_cpython.json @@ -0,0 +1 @@ +10.1.1 diff --git a/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda3-3.10.1/bin/envs/.conda_envs_dir_test b/native_locator/tests/unix/conda_env_created_using_p_flag/user_home/anaconda3/envs/one/conda-meta/python-slugify-5.0.2-pyhd3eb1b0_0.json similarity index 100% rename from native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda3-3.10.1/bin/envs/.conda_envs_dir_test rename to native_locator/tests/unix/conda_env_created_using_p_flag/user_home/anaconda3/envs/one/conda-meta/python-slugify-5.0.2-pyhd3eb1b0_0.json diff --git a/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda3-4.0.5/bin/envs/.conda_envs_dir_test b/native_locator/tests/unix/conda_env_created_using_p_flag/user_home/anaconda3/envs/one/python similarity index 100% rename from native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda3-4.0.5/bin/envs/.conda_envs_dir_test rename to native_locator/tests/unix/conda_env_created_using_p_flag/user_home/anaconda3/envs/one/python diff --git a/native_locator/tests/unix/conda_env_created_using_p_flag/user_home/dev_folder/two/conda-meta/history b/native_locator/tests/unix/conda_env_created_using_p_flag/user_home/dev_folder/two/conda-meta/history new file mode 100644 index 000000000000..3108900f19b3 --- /dev/null +++ b/native_locator/tests/unix/conda_env_created_using_p_flag/user_home/dev_folder/two/conda-meta/history @@ -0,0 +1,62 @@ +==> 2024-02-28 23:23:21 <== +# cmd: /anaconda3/bin/conda create -n conda2 +# conda version: 23.11.0 +==> 2024-02-28 23:52:04 <== +# cmd: /anaconda3/bin/conda install -c conda-forge --name conda2 ipykernel -y +# conda version: 23.11.0 ++conda-forge/noarch::appnope-0.1.4-pyhd8ed1ab_0 ++conda-forge/noarch::asttokens-2.4.1-pyhd8ed1ab_0 ++conda-forge/noarch::comm-0.2.1-pyhd8ed1ab_0 ++conda-forge/noarch::decorator-5.1.1-pyhd8ed1ab_0 ++conda-forge/noarch::exceptiongroup-1.2.0-pyhd8ed1ab_2 ++conda-forge/noarch::executing-2.0.1-pyhd8ed1ab_0 ++conda-forge/noarch::importlib-metadata-7.0.1-pyha770c72_0 ++conda-forge/noarch::importlib_metadata-7.0.1-hd8ed1ab_0 ++conda-forge/noarch::ipykernel-6.29.3-pyh3cd1d5f_0 ++conda-forge/noarch::ipython-8.22.1-pyh707e725_0 ++conda-forge/noarch::jedi-0.19.1-pyhd8ed1ab_0 ++conda-forge/noarch::jupyter_client-8.6.0-pyhd8ed1ab_0 ++conda-forge/noarch::matplotlib-inline-0.1.6-pyhd8ed1ab_0 ++conda-forge/noarch::nest-asyncio-1.6.0-pyhd8ed1ab_0 ++conda-forge/noarch::packaging-23.2-pyhd8ed1ab_0 ++conda-forge/noarch::parso-0.8.3-pyhd8ed1ab_0 ++conda-forge/noarch::pexpect-4.9.0-pyhd8ed1ab_0 ++conda-forge/noarch::pickleshare-0.7.5-py_1003 ++conda-forge/noarch::pip-24.0-pyhd8ed1ab_0 ++conda-forge/noarch::platformdirs-4.2.0-pyhd8ed1ab_0 ++conda-forge/noarch::prompt-toolkit-3.0.42-pyha770c72_0 ++conda-forge/noarch::ptyprocess-0.7.0-pyhd3deb0d_0 ++conda-forge/noarch::pure_eval-0.2.2-pyhd8ed1ab_0 ++conda-forge/noarch::pygments-2.17.2-pyhd8ed1ab_0 ++conda-forge/noarch::python-dateutil-2.8.2-pyhd8ed1ab_0 ++conda-forge/noarch::setuptools-69.1.1-pyhd8ed1ab_0 ++conda-forge/noarch::six-1.16.0-pyh6c4a22f_0 ++conda-forge/noarch::stack_data-0.6.2-pyhd8ed1ab_0 ++conda-forge/noarch::traitlets-5.14.1-pyhd8ed1ab_0 ++conda-forge/noarch::typing_extensions-4.10.0-pyha770c72_0 ++conda-forge/noarch::tzdata-2024a-h0c530f3_0 ++conda-forge/noarch::wcwidth-0.2.13-pyhd8ed1ab_0 ++conda-forge/noarch::wheel-0.42.0-pyhd8ed1ab_0 ++conda-forge/noarch::zipp-3.17.0-pyhd8ed1ab_0 ++conda-forge/osx-arm64::bzip2-1.0.8-h93a5062_5 ++conda-forge/osx-arm64::ca-certificates-2024.2.2-hf0a4a13_0 ++conda-forge/osx-arm64::debugpy-1.8.1-py312h20a0b95_0 ++conda-forge/osx-arm64::jupyter_core-5.7.1-py312h81bd7bf_0 ++conda-forge/osx-arm64::libcxx-16.0.6-h4653b0c_0 ++conda-forge/osx-arm64::libexpat-2.5.0-hb7217d7_1 ++conda-forge/osx-arm64::libffi-3.4.2-h3422bc3_5 ++conda-forge/osx-arm64::libsodium-1.0.18-h27ca646_1 ++conda-forge/osx-arm64::libsqlite-3.45.1-h091b4b1_0 ++conda-forge/osx-arm64::libzlib-1.2.13-h53f4e23_5 ++conda-forge/osx-arm64::ncurses-6.4-h463b476_2 ++conda-forge/osx-arm64::openssl-3.2.1-h0d3ecfb_0 ++conda-forge/osx-arm64::psutil-5.9.8-py312he37b823_0 ++conda-forge/osx-arm64::python-3.12.2-hdf0ec26_0_cpython ++conda-forge/osx-arm64::python_abi-3.12-4_cp312 ++conda-forge/osx-arm64::pyzmq-25.1.2-py312h1edf716_0 ++conda-forge/osx-arm64::readline-8.2-h92ec313_1 ++conda-forge/osx-arm64::tk-8.6.13-h5083fa2_1 ++conda-forge/osx-arm64::tornado-6.4-py312he37b823_0 ++conda-forge/osx-arm64::xz-5.2.6-h57fd34a_0 ++conda-forge/osx-arm64::zeromq-4.3.5-h965bd2d_0 +# update specs: ['ipykernel'] diff --git a/native_locator/tests/unix/conda_env_created_using_p_flag/user_home/dev_folder/two/conda-meta/history.template b/native_locator/tests/unix/conda_env_created_using_p_flag/user_home/dev_folder/two/conda-meta/history.template new file mode 100644 index 000000000000..3108900f19b3 --- /dev/null +++ b/native_locator/tests/unix/conda_env_created_using_p_flag/user_home/dev_folder/two/conda-meta/history.template @@ -0,0 +1,62 @@ +==> 2024-02-28 23:23:21 <== +# cmd: /anaconda3/bin/conda create -n conda2 +# conda version: 23.11.0 +==> 2024-02-28 23:52:04 <== +# cmd: /anaconda3/bin/conda install -c conda-forge --name conda2 ipykernel -y +# conda version: 23.11.0 ++conda-forge/noarch::appnope-0.1.4-pyhd8ed1ab_0 ++conda-forge/noarch::asttokens-2.4.1-pyhd8ed1ab_0 ++conda-forge/noarch::comm-0.2.1-pyhd8ed1ab_0 ++conda-forge/noarch::decorator-5.1.1-pyhd8ed1ab_0 ++conda-forge/noarch::exceptiongroup-1.2.0-pyhd8ed1ab_2 ++conda-forge/noarch::executing-2.0.1-pyhd8ed1ab_0 ++conda-forge/noarch::importlib-metadata-7.0.1-pyha770c72_0 ++conda-forge/noarch::importlib_metadata-7.0.1-hd8ed1ab_0 ++conda-forge/noarch::ipykernel-6.29.3-pyh3cd1d5f_0 ++conda-forge/noarch::ipython-8.22.1-pyh707e725_0 ++conda-forge/noarch::jedi-0.19.1-pyhd8ed1ab_0 ++conda-forge/noarch::jupyter_client-8.6.0-pyhd8ed1ab_0 ++conda-forge/noarch::matplotlib-inline-0.1.6-pyhd8ed1ab_0 ++conda-forge/noarch::nest-asyncio-1.6.0-pyhd8ed1ab_0 ++conda-forge/noarch::packaging-23.2-pyhd8ed1ab_0 ++conda-forge/noarch::parso-0.8.3-pyhd8ed1ab_0 ++conda-forge/noarch::pexpect-4.9.0-pyhd8ed1ab_0 ++conda-forge/noarch::pickleshare-0.7.5-py_1003 ++conda-forge/noarch::pip-24.0-pyhd8ed1ab_0 ++conda-forge/noarch::platformdirs-4.2.0-pyhd8ed1ab_0 ++conda-forge/noarch::prompt-toolkit-3.0.42-pyha770c72_0 ++conda-forge/noarch::ptyprocess-0.7.0-pyhd3deb0d_0 ++conda-forge/noarch::pure_eval-0.2.2-pyhd8ed1ab_0 ++conda-forge/noarch::pygments-2.17.2-pyhd8ed1ab_0 ++conda-forge/noarch::python-dateutil-2.8.2-pyhd8ed1ab_0 ++conda-forge/noarch::setuptools-69.1.1-pyhd8ed1ab_0 ++conda-forge/noarch::six-1.16.0-pyh6c4a22f_0 ++conda-forge/noarch::stack_data-0.6.2-pyhd8ed1ab_0 ++conda-forge/noarch::traitlets-5.14.1-pyhd8ed1ab_0 ++conda-forge/noarch::typing_extensions-4.10.0-pyha770c72_0 ++conda-forge/noarch::tzdata-2024a-h0c530f3_0 ++conda-forge/noarch::wcwidth-0.2.13-pyhd8ed1ab_0 ++conda-forge/noarch::wheel-0.42.0-pyhd8ed1ab_0 ++conda-forge/noarch::zipp-3.17.0-pyhd8ed1ab_0 ++conda-forge/osx-arm64::bzip2-1.0.8-h93a5062_5 ++conda-forge/osx-arm64::ca-certificates-2024.2.2-hf0a4a13_0 ++conda-forge/osx-arm64::debugpy-1.8.1-py312h20a0b95_0 ++conda-forge/osx-arm64::jupyter_core-5.7.1-py312h81bd7bf_0 ++conda-forge/osx-arm64::libcxx-16.0.6-h4653b0c_0 ++conda-forge/osx-arm64::libexpat-2.5.0-hb7217d7_1 ++conda-forge/osx-arm64::libffi-3.4.2-h3422bc3_5 ++conda-forge/osx-arm64::libsodium-1.0.18-h27ca646_1 ++conda-forge/osx-arm64::libsqlite-3.45.1-h091b4b1_0 ++conda-forge/osx-arm64::libzlib-1.2.13-h53f4e23_5 ++conda-forge/osx-arm64::ncurses-6.4-h463b476_2 ++conda-forge/osx-arm64::openssl-3.2.1-h0d3ecfb_0 ++conda-forge/osx-arm64::psutil-5.9.8-py312he37b823_0 ++conda-forge/osx-arm64::python-3.12.2-hdf0ec26_0_cpython ++conda-forge/osx-arm64::python_abi-3.12-4_cp312 ++conda-forge/osx-arm64::pyzmq-25.1.2-py312h1edf716_0 ++conda-forge/osx-arm64::readline-8.2-h92ec313_1 ++conda-forge/osx-arm64::tk-8.6.13-h5083fa2_1 ++conda-forge/osx-arm64::tornado-6.4-py312he37b823_0 ++conda-forge/osx-arm64::xz-5.2.6-h57fd34a_0 ++conda-forge/osx-arm64::zeromq-4.3.5-h965bd2d_0 +# update specs: ['ipykernel'] diff --git a/native_locator/tests/unix/conda_env_created_using_p_flag/user_home/dev_folder/two/conda-meta/python-3.12.2-hdf0ec26_0_cpython.json b/native_locator/tests/unix/conda_env_created_using_p_flag/user_home/dev_folder/two/conda-meta/python-3.12.2-hdf0ec26_0_cpython.json new file mode 100644 index 000000000000..23127993ac05 --- /dev/null +++ b/native_locator/tests/unix/conda_env_created_using_p_flag/user_home/dev_folder/two/conda-meta/python-3.12.2-hdf0ec26_0_cpython.json @@ -0,0 +1 @@ +10.1.1 diff --git a/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniforge3-4.11.0-1/bin/envs/.conda_envs_dir_test b/native_locator/tests/unix/conda_env_created_using_p_flag/user_home/dev_folder/two/conda-meta/python-slugify-5.0.2-pyhd3eb1b0_0.json similarity index 100% rename from native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniforge3-4.11.0-1/bin/envs/.conda_envs_dir_test rename to native_locator/tests/unix/conda_env_created_using_p_flag/user_home/dev_folder/two/conda-meta/python-slugify-5.0.2-pyhd3eb1b0_0.json diff --git a/native_locator/tests/unix/conda_env_created_using_p_flag/user_home/dev_folder/two/python b/native_locator/tests/unix/conda_env_created_using_p_flag/user_home/dev_folder/two/python new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/anaconda-4.0.0/bin/conda b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/anaconda-4.0.0/bin/conda new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/anaconda-4.0.0/conda-meta/conda-23.11.0-py311hca03da5_0.json b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/anaconda-4.0.0/conda-meta/conda-23.11.0-py311hca03da5_0.json new file mode 100644 index 000000000000..3be01e80b809 --- /dev/null +++ b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/anaconda-4.0.0/conda-meta/conda-23.11.0-py311hca03da5_0.json @@ -0,0 +1,632 @@ +{ + "build": "py311hca03da5_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/osx-arm64", + "constrains": [ + "conda-content-trust >=0.1.1", + "conda-build >=3.27", + "conda-env >=2.6" + ], + "depends": [ + "archspec", + "boltons >=23.0.0", + "charset-normalizer", + "conda-libmamba-solver >=23.11.0", + "conda-package-handling >=2.2.0", + "distro >=1.5.0", + "jsonpatch >=1.32", + "menuinst", + "packaging >=23.0", + "platformdirs >=3.10.0", + "pluggy >=1.0.0", + "pycosat >=0.6.3", + "python >=3.11,<3.12.0a0", + "requests >=2.28.0,<3", + "ruamel.yaml >=0.11.14,<0.19", + "setuptools >=60.0.0", + "tqdm >=4", + "truststore >=0.8.0" + ], + "extracted_package_dir": "/Users/donjayamanne/miniconda3/pkgs/conda-23.11.0-py311hca03da5_0", + "features": "", + "files": [ + "bin/activate", + "bin/conda", + "bin/conda-env", + "bin/deactivate", + "condabin/conda", + "etc/fish/conf.d/conda.fish", + "etc/profile.d/conda.csh", + "etc/profile.d/conda.sh", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/INSTALLER", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/METADATA", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/RECORD", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/REQUESTED", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/WHEEL", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/direct_url.json", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/entry_points.txt", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/licenses/AUTHORS.md", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/licenses/LICENSE", + "lib/python3.11/site-packages/conda/__init__.py", + "lib/python3.11/site-packages/conda/__main__.py", + "lib/python3.11/site-packages/conda/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/__version__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/activate.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/api.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/deprecations.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/exception_handler.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/exceptions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/exports.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/history.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/instructions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/misc.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/plan.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/resolve.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/utils.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__version__.py", + "lib/python3.11/site-packages/conda/_vendor/__init__.py", + "lib/python3.11/site-packages/conda/_vendor/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/__pycache__/appdirs.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/__pycache__/distro.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/appdirs.LICENSE.txt", + "lib/python3.11/site-packages/conda/_vendor/appdirs.py", + "lib/python3.11/site-packages/conda/_vendor/boltons/LICENSE", + "lib/python3.11/site-packages/conda/_vendor/boltons/__init__.py", + "lib/python3.11/site-packages/conda/_vendor/boltons/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/boltons/__pycache__/setutils.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/boltons/__pycache__/timeutils.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/boltons/setutils.py", + "lib/python3.11/site-packages/conda/_vendor/boltons/timeutils.py", + "lib/python3.11/site-packages/conda/_vendor/cpuinfo/__init__.py", + "lib/python3.11/site-packages/conda/_vendor/cpuinfo/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/cpuinfo/__pycache__/cpuinfo.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/cpuinfo/cpuinfo.py", + "lib/python3.11/site-packages/conda/_vendor/distro.LICENSE.txt", + "lib/python3.11/site-packages/conda/_vendor/distro.py", + "lib/python3.11/site-packages/conda/_vendor/frozendict/LICENSE.txt", + "lib/python3.11/site-packages/conda/_vendor/frozendict/__init__.py", + "lib/python3.11/site-packages/conda/_vendor/frozendict/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/py_cpuinfo.LICENSE", + "lib/python3.11/site-packages/conda/_vendor/vendor.txt", + "lib/python3.11/site-packages/conda/activate.py", + "lib/python3.11/site-packages/conda/api.py", + "lib/python3.11/site-packages/conda/auxlib/LICENSE", + "lib/python3.11/site-packages/conda/auxlib/__init__.py", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/collection.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/compat.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/decorators.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/entity.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/exceptions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/ish.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/logz.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/packaging.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/type_coercion.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/collection.py", + "lib/python3.11/site-packages/conda/auxlib/compat.py", + "lib/python3.11/site-packages/conda/auxlib/decorators.py", + "lib/python3.11/site-packages/conda/auxlib/entity.py", + "lib/python3.11/site-packages/conda/auxlib/exceptions.py", + "lib/python3.11/site-packages/conda/auxlib/ish.py", + "lib/python3.11/site-packages/conda/auxlib/logz.py", + "lib/python3.11/site-packages/conda/auxlib/packaging.py", + "lib/python3.11/site-packages/conda/auxlib/type_coercion.py", + "lib/python3.11/site-packages/conda/base/__init__.py", + "lib/python3.11/site-packages/conda/base/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/base/__pycache__/constants.cpython-311.pyc", + "lib/python3.11/site-packages/conda/base/__pycache__/context.cpython-311.pyc", + "lib/python3.11/site-packages/conda/base/__pycache__/exceptions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/base/constants.py", + "lib/python3.11/site-packages/conda/base/context.py", + "lib/python3.11/site-packages/conda/base/exceptions.py", + "lib/python3.11/site-packages/conda/cli/__init__.py", + "lib/python3.11/site-packages/conda/cli/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/actions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/common.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/conda_argparse.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/find_commands.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/helpers.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/install.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_clean.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_compare.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_config.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_create.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_info.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_init.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_install.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_list.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_mock_activate.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_mock_deactivate.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_notices.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_package.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_pip.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_remove.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_rename.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_run.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_search.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_update.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/python_api.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/actions.py", + "lib/python3.11/site-packages/conda/cli/common.py", + "lib/python3.11/site-packages/conda/cli/conda_argparse.py", + "lib/python3.11/site-packages/conda/cli/find_commands.py", + "lib/python3.11/site-packages/conda/cli/helpers.py", + "lib/python3.11/site-packages/conda/cli/install.py", + "lib/python3.11/site-packages/conda/cli/main.py", + "lib/python3.11/site-packages/conda/cli/main_clean.py", + "lib/python3.11/site-packages/conda/cli/main_compare.py", + "lib/python3.11/site-packages/conda/cli/main_config.py", + "lib/python3.11/site-packages/conda/cli/main_create.py", + "lib/python3.11/site-packages/conda/cli/main_info.py", + "lib/python3.11/site-packages/conda/cli/main_init.py", + "lib/python3.11/site-packages/conda/cli/main_install.py", + "lib/python3.11/site-packages/conda/cli/main_list.py", + "lib/python3.11/site-packages/conda/cli/main_mock_activate.py", + "lib/python3.11/site-packages/conda/cli/main_mock_deactivate.py", + "lib/python3.11/site-packages/conda/cli/main_notices.py", + "lib/python3.11/site-packages/conda/cli/main_package.py", + "lib/python3.11/site-packages/conda/cli/main_pip.py", + "lib/python3.11/site-packages/conda/cli/main_remove.py", + "lib/python3.11/site-packages/conda/cli/main_rename.py", + "lib/python3.11/site-packages/conda/cli/main_run.py", + "lib/python3.11/site-packages/conda/cli/main_search.py", + "lib/python3.11/site-packages/conda/cli/main_update.py", + "lib/python3.11/site-packages/conda/cli/python_api.py", + "lib/python3.11/site-packages/conda/common/__init__.py", + "lib/python3.11/site-packages/conda/common/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/_logic.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/compat.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/configuration.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/constants.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/decorators.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/disk.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/io.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/iterators.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/logic.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/path.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/serialize.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/signals.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/toposort.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/url.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/_logic.py", + "lib/python3.11/site-packages/conda/common/_os/__init__.py", + "lib/python3.11/site-packages/conda/common/_os/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/_os/__pycache__/linux.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/_os/__pycache__/unix.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/_os/__pycache__/windows.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/_os/linux.py", + "lib/python3.11/site-packages/conda/common/_os/unix.py", + "lib/python3.11/site-packages/conda/common/_os/windows.py", + "lib/python3.11/site-packages/conda/common/compat.py", + "lib/python3.11/site-packages/conda/common/configuration.py", + "lib/python3.11/site-packages/conda/common/constants.py", + "lib/python3.11/site-packages/conda/common/decorators.py", + "lib/python3.11/site-packages/conda/common/disk.py", + "lib/python3.11/site-packages/conda/common/io.py", + "lib/python3.11/site-packages/conda/common/iterators.py", + "lib/python3.11/site-packages/conda/common/logic.py", + "lib/python3.11/site-packages/conda/common/path.py", + "lib/python3.11/site-packages/conda/common/pkg_formats/__init__.py", + "lib/python3.11/site-packages/conda/common/pkg_formats/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/pkg_formats/__pycache__/python.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/pkg_formats/python.py", + "lib/python3.11/site-packages/conda/common/serialize.py", + "lib/python3.11/site-packages/conda/common/signals.py", + "lib/python3.11/site-packages/conda/common/toposort.py", + "lib/python3.11/site-packages/conda/common/url.py", + "lib/python3.11/site-packages/conda/core/__init__.py", + "lib/python3.11/site-packages/conda/core/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/envs_manager.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/index.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/initialize.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/link.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/package_cache.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/package_cache_data.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/path_actions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/portability.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/prefix_data.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/solve.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/subdir_data.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/envs_manager.py", + "lib/python3.11/site-packages/conda/core/index.py", + "lib/python3.11/site-packages/conda/core/initialize.py", + "lib/python3.11/site-packages/conda/core/link.py", + "lib/python3.11/site-packages/conda/core/package_cache.py", + "lib/python3.11/site-packages/conda/core/package_cache_data.py", + "lib/python3.11/site-packages/conda/core/path_actions.py", + "lib/python3.11/site-packages/conda/core/portability.py", + "lib/python3.11/site-packages/conda/core/prefix_data.py", + "lib/python3.11/site-packages/conda/core/solve.py", + "lib/python3.11/site-packages/conda/core/subdir_data.py", + "lib/python3.11/site-packages/conda/deprecations.py", + "lib/python3.11/site-packages/conda/exception_handler.py", + "lib/python3.11/site-packages/conda/exceptions.py", + "lib/python3.11/site-packages/conda/exports.py", + "lib/python3.11/site-packages/conda/gateways/__init__.py", + "lib/python3.11/site-packages/conda/gateways/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/__pycache__/anaconda_client.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/__pycache__/logging.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/__pycache__/subprocess.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/anaconda_client.py", + "lib/python3.11/site-packages/conda/gateways/connection/__init__.py", + "lib/python3.11/site-packages/conda/gateways/connection/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/__pycache__/download.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/__pycache__/session.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/__init__.py", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/__pycache__/ftp.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/__pycache__/http.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/__pycache__/localfs.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/__pycache__/s3.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/ftp.py", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/http.py", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/localfs.py", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/s3.py", + "lib/python3.11/site-packages/conda/gateways/connection/download.py", + "lib/python3.11/site-packages/conda/gateways/connection/session.py", + "lib/python3.11/site-packages/conda/gateways/disk/__init__.py", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/create.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/delete.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/link.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/lock.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/permissions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/read.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/test.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/update.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/create.py", + "lib/python3.11/site-packages/conda/gateways/disk/delete.py", + "lib/python3.11/site-packages/conda/gateways/disk/link.py", + "lib/python3.11/site-packages/conda/gateways/disk/lock.py", + "lib/python3.11/site-packages/conda/gateways/disk/permissions.py", + "lib/python3.11/site-packages/conda/gateways/disk/read.py", + "lib/python3.11/site-packages/conda/gateways/disk/test.py", + "lib/python3.11/site-packages/conda/gateways/disk/update.py", + "lib/python3.11/site-packages/conda/gateways/logging.py", + "lib/python3.11/site-packages/conda/gateways/repodata/__init__.py", + "lib/python3.11/site-packages/conda/gateways/repodata/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/repodata/__pycache__/lock.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/__init__.py", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/__pycache__/core.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/__pycache__/fetch.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/__pycache__/interface.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/core.py", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/fetch.py", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/interface.py", + "lib/python3.11/site-packages/conda/gateways/repodata/lock.py", + "lib/python3.11/site-packages/conda/gateways/subprocess.py", + "lib/python3.11/site-packages/conda/history.py", + "lib/python3.11/site-packages/conda/instructions.py", + "lib/python3.11/site-packages/conda/misc.py", + "lib/python3.11/site-packages/conda/models/__init__.py", + "lib/python3.11/site-packages/conda/models/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/channel.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/dist.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/enums.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/leased_path_entry.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/match_spec.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/package_info.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/prefix_graph.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/records.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/version.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/channel.py", + "lib/python3.11/site-packages/conda/models/dist.py", + "lib/python3.11/site-packages/conda/models/enums.py", + "lib/python3.11/site-packages/conda/models/leased_path_entry.py", + "lib/python3.11/site-packages/conda/models/match_spec.py", + "lib/python3.11/site-packages/conda/models/package_info.py", + "lib/python3.11/site-packages/conda/models/prefix_graph.py", + "lib/python3.11/site-packages/conda/models/records.py", + "lib/python3.11/site-packages/conda/models/version.py", + "lib/python3.11/site-packages/conda/notices/__init__.py", + "lib/python3.11/site-packages/conda/notices/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/notices/__pycache__/cache.cpython-311.pyc", + "lib/python3.11/site-packages/conda/notices/__pycache__/core.cpython-311.pyc", + "lib/python3.11/site-packages/conda/notices/__pycache__/fetch.cpython-311.pyc", + "lib/python3.11/site-packages/conda/notices/__pycache__/types.cpython-311.pyc", + "lib/python3.11/site-packages/conda/notices/__pycache__/views.cpython-311.pyc", + "lib/python3.11/site-packages/conda/notices/cache.py", + "lib/python3.11/site-packages/conda/notices/core.py", + "lib/python3.11/site-packages/conda/notices/fetch.py", + "lib/python3.11/site-packages/conda/notices/types.py", + "lib/python3.11/site-packages/conda/notices/views.py", + "lib/python3.11/site-packages/conda/plan.py", + "lib/python3.11/site-packages/conda/plugins/__init__.py", + "lib/python3.11/site-packages/conda/plugins/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/__pycache__/hookspec.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/__pycache__/manager.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/__pycache__/solvers.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/__pycache__/types.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/hookspec.py", + "lib/python3.11/site-packages/conda/plugins/manager.py", + "lib/python3.11/site-packages/conda/plugins/solvers.py", + "lib/python3.11/site-packages/conda/plugins/subcommands/__init__.py", + "lib/python3.11/site-packages/conda/plugins/subcommands/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/subcommands/doctor/__init__.py", + "lib/python3.11/site-packages/conda/plugins/subcommands/doctor/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/subcommands/doctor/__pycache__/health_checks.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/subcommands/doctor/health_checks.py", + "lib/python3.11/site-packages/conda/plugins/types.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__init__.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/archspec.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/conda.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/cuda.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/freebsd.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/linux.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/osx.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/windows.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/archspec.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/conda.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/cuda.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/freebsd.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/linux.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/osx.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/windows.py", + "lib/python3.11/site-packages/conda/py.typed", + "lib/python3.11/site-packages/conda/resolve.py", + "lib/python3.11/site-packages/conda/shell/Library/bin/conda.bat", + "lib/python3.11/site-packages/conda/shell/Scripts/activate.bat", + "lib/python3.11/site-packages/conda/shell/bin/activate", + "lib/python3.11/site-packages/conda/shell/bin/conda", + "lib/python3.11/site-packages/conda/shell/bin/deactivate", + "lib/python3.11/site-packages/conda/shell/cli-32.exe", + "lib/python3.11/site-packages/conda/shell/cli-64.exe", + "lib/python3.11/site-packages/conda/shell/conda.xsh", + "lib/python3.11/site-packages/conda/shell/conda_icon.ico", + "lib/python3.11/site-packages/conda/shell/condabin/Conda.psm1", + "lib/python3.11/site-packages/conda/shell/condabin/_conda_activate.bat", + "lib/python3.11/site-packages/conda/shell/condabin/activate.bat", + "lib/python3.11/site-packages/conda/shell/condabin/conda-hook.ps1", + "lib/python3.11/site-packages/conda/shell/condabin/conda.bat", + "lib/python3.11/site-packages/conda/shell/condabin/conda_auto_activate.bat", + "lib/python3.11/site-packages/conda/shell/condabin/conda_hook.bat", + "lib/python3.11/site-packages/conda/shell/condabin/deactivate.bat", + "lib/python3.11/site-packages/conda/shell/condabin/rename_tmp.bat", + "lib/python3.11/site-packages/conda/shell/etc/fish/conf.d/conda.fish", + "lib/python3.11/site-packages/conda/shell/etc/profile.d/conda.csh", + "lib/python3.11/site-packages/conda/shell/etc/profile.d/conda.sh", + "lib/python3.11/site-packages/conda/testing/__init__.py", + "lib/python3.11/site-packages/conda/testing/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/__pycache__/cases.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/__pycache__/fixtures.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/__pycache__/helpers.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/__pycache__/integration.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/__pycache__/solver_helpers.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/cases.py", + "lib/python3.11/site-packages/conda/testing/fixtures.py", + "lib/python3.11/site-packages/conda/testing/gateways/__init__.py", + "lib/python3.11/site-packages/conda/testing/gateways/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/gateways/__pycache__/fixtures.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/gateways/fixtures.py", + "lib/python3.11/site-packages/conda/testing/helpers.py", + "lib/python3.11/site-packages/conda/testing/integration.py", + "lib/python3.11/site-packages/conda/testing/notices/__init__.py", + "lib/python3.11/site-packages/conda/testing/notices/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/notices/__pycache__/fixtures.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/notices/__pycache__/helpers.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/notices/fixtures.py", + "lib/python3.11/site-packages/conda/testing/notices/helpers.py", + "lib/python3.11/site-packages/conda/testing/solver_helpers.py", + "lib/python3.11/site-packages/conda/trust/__init__.py", + "lib/python3.11/site-packages/conda/trust/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/trust/__pycache__/constants.cpython-311.pyc", + "lib/python3.11/site-packages/conda/trust/__pycache__/signature_verification.cpython-311.pyc", + "lib/python3.11/site-packages/conda/trust/constants.py", + "lib/python3.11/site-packages/conda/trust/signature_verification.py", + "lib/python3.11/site-packages/conda/utils.py", + "lib/python3.11/site-packages/conda_env/README.md", + "lib/python3.11/site-packages/conda_env/__init__.py", + "lib/python3.11/site-packages/conda_env/__main__.py", + "lib/python3.11/site-packages/conda_env/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/__pycache__/env.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/__pycache__/pip_util.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__init__.py", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/common.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_config.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_create.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_export.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_list.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_remove.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_update.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_vars.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/common.py", + "lib/python3.11/site-packages/conda_env/cli/main.py", + "lib/python3.11/site-packages/conda_env/cli/main_config.py", + "lib/python3.11/site-packages/conda_env/cli/main_create.py", + "lib/python3.11/site-packages/conda_env/cli/main_export.py", + "lib/python3.11/site-packages/conda_env/cli/main_list.py", + "lib/python3.11/site-packages/conda_env/cli/main_remove.py", + "lib/python3.11/site-packages/conda_env/cli/main_update.py", + "lib/python3.11/site-packages/conda_env/cli/main_vars.py", + "lib/python3.11/site-packages/conda_env/env.py", + "lib/python3.11/site-packages/conda_env/installers/__init__.py", + "lib/python3.11/site-packages/conda_env/installers/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/installers/__pycache__/base.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/installers/__pycache__/conda.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/installers/__pycache__/pip.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/installers/base.py", + "lib/python3.11/site-packages/conda_env/installers/conda.py", + "lib/python3.11/site-packages/conda_env/installers/pip.py", + "lib/python3.11/site-packages/conda_env/pip_util.py", + "lib/python3.11/site-packages/conda_env/specs/__init__.py", + "lib/python3.11/site-packages/conda_env/specs/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/specs/__pycache__/binstar.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/specs/__pycache__/requirements.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/specs/__pycache__/yaml_file.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/specs/binstar.py", + "lib/python3.11/site-packages/conda_env/specs/requirements.py", + "lib/python3.11/site-packages/conda_env/specs/yaml_file.py", + "lib/python3.11/site-packages/tests/conda_env/__init__.py", + "lib/python3.11/site-packages/tests/conda_env/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/__pycache__/test_cli.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/__pycache__/test_create.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/__pycache__/test_env.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/__pycache__/test_pip_util.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/__pycache__/utils.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/specs/__init__.py", + "lib/python3.11/site-packages/tests/conda_env/specs/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/specs/__pycache__/test_binstar.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/specs/__pycache__/test_requirements.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/specs/__pycache__/test_yaml_file.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/specs/test_binstar.py", + "lib/python3.11/site-packages/tests/conda_env/specs/test_requirements.py", + "lib/python3.11/site-packages/tests/conda_env/specs/test_yaml_file.py", + "lib/python3.11/site-packages/tests/conda_env/support/add-pip.yml", + "lib/python3.11/site-packages/tests/conda_env/support/advanced-pip/.gitignore", + "lib/python3.11/site-packages/tests/conda_env/support/advanced-pip/another-project-requirements.txt", + "lib/python3.11/site-packages/tests/conda_env/support/advanced-pip/environment.yml", + "lib/python3.11/site-packages/tests/conda_env/support/advanced-pip/module_to_install_in_editable_mode/__pycache__/setup.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/support/advanced-pip/module_to_install_in_editable_mode/setup.py", + "lib/python3.11/site-packages/tests/conda_env/support/channels_with_envvars.yml", + "lib/python3.11/site-packages/tests/conda_env/support/empty_env.yml", + "lib/python3.11/site-packages/tests/conda_env/support/env_with_dependencies.yml", + "lib/python3.11/site-packages/tests/conda_env/support/example-yaml/environment.yaml", + "lib/python3.11/site-packages/tests/conda_env/support/example/environment.yml", + "lib/python3.11/site-packages/tests/conda_env/support/example/environment_host_port.yml", + "lib/python3.11/site-packages/tests/conda_env/support/example/environment_pinned.yml", + "lib/python3.11/site-packages/tests/conda_env/support/example/environment_pinned_updated.yml", + "lib/python3.11/site-packages/tests/conda_env/support/foo/bar/baz/readme", + "lib/python3.11/site-packages/tests/conda_env/support/foo/bar/readme", + "lib/python3.11/site-packages/tests/conda_env/support/foo/environment.yml", + "lib/python3.11/site-packages/tests/conda_env/support/invalid_keys.yml", + "lib/python3.11/site-packages/tests/conda_env/support/notebook.ipynb", + "lib/python3.11/site-packages/tests/conda_env/support/notebook_with_env.ipynb", + "lib/python3.11/site-packages/tests/conda_env/support/pip_argh.yml", + "lib/python3.11/site-packages/tests/conda_env/support/requirements.txt", + "lib/python3.11/site-packages/tests/conda_env/support/saved-env/environment.yml", + "lib/python3.11/site-packages/tests/conda_env/support/simple.yml", + "lib/python3.11/site-packages/tests/conda_env/support/valid_keys.yml", + "lib/python3.11/site-packages/tests/conda_env/support/with-pip.yml", + "lib/python3.11/site-packages/tests/conda_env/test_cli.py", + "lib/python3.11/site-packages/tests/conda_env/test_create.py", + "lib/python3.11/site-packages/tests/conda_env/test_env.py", + "lib/python3.11/site-packages/tests/conda_env/test_pip_util.py", + "lib/python3.11/site-packages/tests/conda_env/utils.py", + "lib/python3.11/site-packages/tests/test-recipes/activate_deactivate_package/src/etc/conda/activate.d/activate.bat", + "lib/python3.11/site-packages/tests/test-recipes/activate_deactivate_package/src/etc/conda/activate.d/activate.sh", + "lib/python3.11/site-packages/tests/test-recipes/activate_deactivate_package/src/etc/conda/deactivate.d/deactivate.bat", + "lib/python3.11/site-packages/tests/test-recipes/activate_deactivate_package/src/etc/conda/deactivate.d/deactivate.sh", + "lib/python3.11/site-packages/xontrib/conda.xsh", + "shell/condabin/Conda.psm1", + "shell/condabin/conda-hook.ps1" + ], + "fn": "conda-23.11.0-py311hca03da5_0.conda", + "license": "BSD-3-Clause", + "link": { + "source": "/Users/donjayamanne/miniconda3/pkgs/conda-23.11.0-py311hca03da5_0", + "type": 1 + }, + "md5": "d40f56a649df2d05c5468713732e005e", + "name": "conda", + "package_tarball_full_path": "/Users/donjayamanne/miniconda3/pkgs/conda-23.11.0-py311hca03da5_0.conda", + "paths_data": { + "paths": [ + { + "_path": "bin/activate", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "92dd3f5997c70939665a9000ba114ba13f28c5ce1341fa75060f48dcb808a127", + "sha256_in_prefix": "4270a26a4429c0dd5a4c35900f8b2211b35c7447367b6f2b8470bdedc1f240ca", + "size_in_bytes": 429 + }, + { + "_path": "bin/conda", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "c6380d731f573d898f146d5580e0447dd44d068d619bda7aff326095f8bc4f88", + "sha256_in_prefix": "b5dd14921f011aa934757f31b62e0fa2be17a1a9f99ccb2d26a1f12a864d64e8", + "size_in_bytes": 756 + }, + { + "_path": "bin/conda-env", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "c7e6fa37766fe556ef4f95c0860a0eb7f7817c6f057ba9369e248bcdd7f37c9d", + "sha256_in_prefix": "88be67a0d6c47edbd65fa3d860a3514daed6b6bac830ec93800cf43fd778379c", + "size_in_bytes": 393 + }, + { + "_path": "bin/deactivate", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "a69da038fee96660c3f47c2c393c05b54986ba0c929aada61cd410df6e09746e", + "sha256_in_prefix": "2af9834dc0f7c2fb9db2f9e67829700c6828774d9ad7996602324c5a5387a89c", + "size_in_bytes": 517 + }, + { + "_path": "condabin/conda", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "c6380d731f573d898f146d5580e0447dd44d068d619bda7aff326095f8bc4f88", + "sha256_in_prefix": "b5dd14921f011aa934757f31b62e0fa2be17a1a9f99ccb2d26a1f12a864d64e8", + "size_in_bytes": 756 + }, + { + "_path": "etc/fish/conf.d/conda.fish", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "85caec3d76f3239e105f88cbafc6acbe04cd97fd4c1db4da4e0dcf4d357a631e", + "sha256_in_prefix": "a1ab61539200ab52ec85d9bf7de9b1cfe4a7fbdd4da2f6a7882d417ea8c7d3e1", + "size_in_bytes": 4880 + }, + { + "_path": "etc/profile.d/conda.csh", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "966581001ffd439152bf4432c7c436e25014aa2386668a00145b4087aa354604", + "sha256_in_prefix": "85a53ef7d70dcb1c16695b970bbc3880b74eaa23fff43dde57796e34fcb2ead7", + "size_in_bytes": 3163 + }, + { + "_path": "etc/profile.d/conda.sh", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "a147ccd49f1579e69c49cb12114421d95b84a1e02ef1df7c4f8c51d44cd026d1", + "sha256_in_prefix": "920d3be6a977141273da05e8d0a1867352013f1e2702a313fea15a101432f344", + "size_in_bytes": 2552 + }, + { + "_path": "lib/python3.11/site-packages/xontrib/conda.xsh", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "e0e9fb9f5d108c70434802b45e51910671b409a3cddd7b4ec887af2b07e2ce05", + "sha256_in_prefix": "c0650607c2cf90f2ce94f3b7370349922fdac5901e3316fa9f065d8773b3f944", + "size_in_bytes": 7565 + }, + { + "_path": "shell/condabin/conda-hook.ps1", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "94f9a90527bf021292a113a9e546e3f5dd042ae3afc0ed2a7a5763ef312ac756", + "sha256_in_prefix": "4edd554f34b2aa567876996da1be4cbc89d866e0e3d958f42d7889ccff8f617f", + "size_in_bytes": 1047 + } + ], + "paths_version": 1 + }, + "requested_spec": "defaults/osx-arm64::conda==23.11.0=py311hca03da5_0[md5=d40f56a649df2d05c5468713732e005e]", + "sha256": "63ade392153a88ba334593059bfce7ab3b6df1dbbd6622655c8a7db587f70a78", + "size": 1317120, + "subdir": "osx-arm64", + "timestamp": 1701719702000, + "track_features": "", + "url": "https://repo.anaconda.com/pkgs/main/osx-arm64/conda-23.11.0-py311hca03da5_0.conda", + "version": "23.11.0" +} \ No newline at end of file diff --git a/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/anaconda-4.0.0/conda-meta/history b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/anaconda-4.0.0/conda-meta/history new file mode 100644 index 000000000000..b196a3e5922b --- /dev/null +++ b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/anaconda-4.0.0/conda-meta/history @@ -0,0 +1,72 @@ +==> 2024-02-14 17:04:16 <== +# cmd: /Users/donjayamanne/miniconda3/conda.exe install --offline --file /Users/donjayamanne/miniconda3/pkgs/env.txt -yp /Users/donjayamanne/miniconda3 +# conda version: 23.10.0 ++defaults/noarch::archspec-0.2.1-pyhd3eb1b0_0 ++defaults/noarch::charset-normalizer-2.0.4-pyhd3eb1b0_0 ++defaults/noarch::conda-libmamba-solver-23.12.0-pyhd3eb1b0_1 ++defaults/noarch::jsonpatch-1.32-pyhd3eb1b0_0 ++defaults/noarch::jsonpointer-2.1-pyhd3eb1b0_0 ++defaults/noarch::pybind11-abi-4-hd3eb1b0_1 ++defaults/noarch::pycparser-2.21-pyhd3eb1b0_0 ++defaults/noarch::tzdata-2023c-h04d1e81_0 ++defaults/osx-arm64::boltons-23.0.0-py311hca03da5_0 ++defaults/osx-arm64::brotli-python-1.0.9-py311h313beb8_7 ++defaults/osx-arm64::bzip2-1.0.8-h620ffc9_4 ++defaults/osx-arm64::c-ares-1.19.1-h80987f9_0 ++defaults/osx-arm64::ca-certificates-2023.12.12-hca03da5_0 ++defaults/osx-arm64::certifi-2023.11.17-py311hca03da5_0 ++defaults/osx-arm64::cffi-1.16.0-py311h80987f9_0 ++defaults/osx-arm64::conda-23.11.0-py311hca03da5_0 ++defaults/osx-arm64::conda-content-trust-0.2.0-py311hca03da5_0 ++defaults/osx-arm64::conda-package-handling-2.2.0-py311hca03da5_0 ++defaults/osx-arm64::conda-package-streaming-0.9.0-py311hca03da5_0 ++defaults/osx-arm64::cryptography-41.0.7-py311hd4332d6_0 ++defaults/osx-arm64::distro-1.8.0-py311hca03da5_0 ++defaults/osx-arm64::fmt-9.1.0-h48ca7d4_0 ++defaults/osx-arm64::icu-73.1-h313beb8_0 ++defaults/osx-arm64::idna-3.4-py311hca03da5_0 ++defaults/osx-arm64::krb5-1.20.1-hf3e1bf2_1 ++defaults/osx-arm64::libarchive-3.6.2-h62fee54_2 ++defaults/osx-arm64::libcurl-8.4.0-h3e2b118_1 ++defaults/osx-arm64::libcxx-14.0.6-h848a8c0_0 ++defaults/osx-arm64::libedit-3.1.20230828-h80987f9_0 ++defaults/osx-arm64::libev-4.33-h1a28f6b_1 ++defaults/osx-arm64::libffi-3.4.4-hca03da5_0 ++defaults/osx-arm64::libiconv-1.16-h1a28f6b_2 ++defaults/osx-arm64::libmamba-1.5.3-h15e39b3_0 ++defaults/osx-arm64::libmambapy-1.5.3-py311h1c5506f_0 ++defaults/osx-arm64::libnghttp2-1.57.0-h62f6fdd_0 ++defaults/osx-arm64::libsolv-0.7.24-h514c7bf_0 ++defaults/osx-arm64::libssh2-1.10.0-h02f6b3c_2 ++defaults/osx-arm64::libxml2-2.10.4-h0dcf63f_1 ++defaults/osx-arm64::lz4-c-1.9.4-h313beb8_0 ++defaults/osx-arm64::menuinst-2.0.1-py311hca03da5_1 ++defaults/osx-arm64::ncurses-6.4-h313beb8_0 ++defaults/osx-arm64::openssl-3.0.12-h1a28f6b_0 ++defaults/osx-arm64::packaging-23.1-py311hca03da5_0 ++defaults/osx-arm64::pcre2-10.42-hb066dcc_0 ++defaults/osx-arm64::pip-23.3.1-py311hca03da5_0 ++defaults/osx-arm64::platformdirs-3.10.0-py311hca03da5_0 ++defaults/osx-arm64::pluggy-1.0.0-py311hca03da5_1 ++defaults/osx-arm64::pycosat-0.6.6-py311h80987f9_0 ++defaults/osx-arm64::pyopenssl-23.2.0-py311hca03da5_0 ++defaults/osx-arm64::pysocks-1.7.1-py311hca03da5_0 ++defaults/osx-arm64::python-3.11.5-hb885b13_0 ++defaults/osx-arm64::python.app-3-py311h80987f9_0 ++defaults/osx-arm64::readline-8.2-h1a28f6b_0 ++defaults/osx-arm64::reproc-14.2.4-hc377ac9_1 ++defaults/osx-arm64::reproc-cpp-14.2.4-hc377ac9_1 ++defaults/osx-arm64::requests-2.31.0-py311hca03da5_0 ++defaults/osx-arm64::ruamel.yaml-0.17.21-py311h80987f9_0 ++defaults/osx-arm64::setuptools-68.2.2-py311hca03da5_0 ++defaults/osx-arm64::sqlite-3.41.2-h80987f9_0 ++defaults/osx-arm64::tk-8.6.12-hb8d0fd4_0 ++defaults/osx-arm64::tqdm-4.65.0-py311hb6e6a13_0 ++defaults/osx-arm64::truststore-0.8.0-py311hca03da5_0 ++defaults/osx-arm64::urllib3-1.26.18-py311hca03da5_0 ++defaults/osx-arm64::wheel-0.41.2-py311hca03da5_0 ++defaults/osx-arm64::xz-5.4.5-h80987f9_0 ++defaults/osx-arm64::yaml-cpp-0.8.0-h313beb8_0 ++defaults/osx-arm64::zlib-1.2.13-h5a0b063_0 ++defaults/osx-arm64::zstandard-0.19.0-py311h80987f9_0 ++defaults/osx-arm64::zstd-1.5.5-hd90d995_0 diff --git a/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/anaconda-4.0.0/conda-meta/python-3.11.5-hb885b13_0.json b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/anaconda-4.0.0/conda-meta/python-3.11.5-hb885b13_0.json new file mode 100644 index 000000000000..90b9af01a4e0 --- /dev/null +++ b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/anaconda-4.0.0/conda-meta/python-3.11.5-hb885b13_0.json @@ -0,0 +1,2280 @@ +{ + "build": "hb885b13_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/osx-arm64", + "constrains": [], + "depends": [ + "bzip2 >=1.0.8,<2.0a0", + "libffi >=3.4,<3.5", + "libffi >=3.4,<4.0a0", + "ncurses >=6.4,<7.0a0", + "openssl >=3.0.10,<4.0a0", + "readline >=8.1.2,<9.0a0", + "sqlite >=3.41.2,<4.0a0", + "tk >=8.6.12,<8.7.0a0", + "tzdata", + "xz >=5.4.2,<6.0a0", + "zlib >=1.2.13,<1.3.0a0", + "pip" + ], + "extracted_package_dir": "/Users/donjayamanne/miniconda3/pkgs/python-3.11.5-hb885b13_0", + "features": "", + "files": [ + "bin/2to3", + "bin/2to3-3.11", + "bin/idle3", + "bin/idle3.11", + "bin/pydoc", + "bin/pydoc3", + "bin/pydoc3.11", + "bin/python", + "bin/python3", + "bin/python3-config", + "bin/python3.1", + "bin/python3.11", + "bin/python3.11-config", + "include/python3.11/Python.h", + "include/python3.11/abstract.h", + "include/python3.11/bltinmodule.h", + "include/python3.11/boolobject.h", + "include/python3.11/bytearrayobject.h", + "include/python3.11/bytesobject.h", + "include/python3.11/ceval.h", + "include/python3.11/codecs.h", + "include/python3.11/compile.h", + "include/python3.11/complexobject.h", + "include/python3.11/cpython/abstract.h", + "include/python3.11/cpython/bytearrayobject.h", + "include/python3.11/cpython/bytesobject.h", + "include/python3.11/cpython/cellobject.h", + "include/python3.11/cpython/ceval.h", + "include/python3.11/cpython/classobject.h", + "include/python3.11/cpython/code.h", + "include/python3.11/cpython/compile.h", + "include/python3.11/cpython/complexobject.h", + "include/python3.11/cpython/context.h", + "include/python3.11/cpython/descrobject.h", + "include/python3.11/cpython/dictobject.h", + "include/python3.11/cpython/fileobject.h", + "include/python3.11/cpython/fileutils.h", + "include/python3.11/cpython/floatobject.h", + "include/python3.11/cpython/frameobject.h", + "include/python3.11/cpython/funcobject.h", + "include/python3.11/cpython/genobject.h", + "include/python3.11/cpython/import.h", + "include/python3.11/cpython/initconfig.h", + "include/python3.11/cpython/listobject.h", + "include/python3.11/cpython/longintrepr.h", + "include/python3.11/cpython/longobject.h", + "include/python3.11/cpython/methodobject.h", + "include/python3.11/cpython/modsupport.h", + "include/python3.11/cpython/object.h", + "include/python3.11/cpython/objimpl.h", + "include/python3.11/cpython/odictobject.h", + "include/python3.11/cpython/picklebufobject.h", + "include/python3.11/cpython/pthread_stubs.h", + "include/python3.11/cpython/pyctype.h", + "include/python3.11/cpython/pydebug.h", + "include/python3.11/cpython/pyerrors.h", + "include/python3.11/cpython/pyfpe.h", + "include/python3.11/cpython/pyframe.h", + "include/python3.11/cpython/pylifecycle.h", + "include/python3.11/cpython/pymem.h", + "include/python3.11/cpython/pystate.h", + "include/python3.11/cpython/pythonrun.h", + "include/python3.11/cpython/pythread.h", + "include/python3.11/cpython/pytime.h", + "include/python3.11/cpython/setobject.h", + "include/python3.11/cpython/sysmodule.h", + "include/python3.11/cpython/traceback.h", + "include/python3.11/cpython/tupleobject.h", + "include/python3.11/cpython/unicodeobject.h", + "include/python3.11/cpython/warnings.h", + "include/python3.11/cpython/weakrefobject.h", + "include/python3.11/datetime.h", + "include/python3.11/descrobject.h", + "include/python3.11/dictobject.h", + "include/python3.11/dynamic_annotations.h", + "include/python3.11/enumobject.h", + "include/python3.11/errcode.h", + "include/python3.11/exports.h", + "include/python3.11/fileobject.h", + "include/python3.11/fileutils.h", + "include/python3.11/floatobject.h", + "include/python3.11/frameobject.h", + "include/python3.11/genericaliasobject.h", + "include/python3.11/import.h", + "include/python3.11/internal/pycore_abstract.h", + "include/python3.11/internal/pycore_accu.h", + "include/python3.11/internal/pycore_asdl.h", + "include/python3.11/internal/pycore_ast.h", + "include/python3.11/internal/pycore_ast_state.h", + "include/python3.11/internal/pycore_atomic.h", + "include/python3.11/internal/pycore_atomic_funcs.h", + "include/python3.11/internal/pycore_bitutils.h", + "include/python3.11/internal/pycore_blocks_output_buffer.h", + "include/python3.11/internal/pycore_bytes_methods.h", + "include/python3.11/internal/pycore_bytesobject.h", + "include/python3.11/internal/pycore_call.h", + "include/python3.11/internal/pycore_ceval.h", + "include/python3.11/internal/pycore_code.h", + "include/python3.11/internal/pycore_compile.h", + "include/python3.11/internal/pycore_condvar.h", + "include/python3.11/internal/pycore_context.h", + "include/python3.11/internal/pycore_dict.h", + "include/python3.11/internal/pycore_dtoa.h", + "include/python3.11/internal/pycore_emscripten_signal.h", + "include/python3.11/internal/pycore_exceptions.h", + "include/python3.11/internal/pycore_fileutils.h", + "include/python3.11/internal/pycore_floatobject.h", + "include/python3.11/internal/pycore_format.h", + "include/python3.11/internal/pycore_frame.h", + "include/python3.11/internal/pycore_function.h", + "include/python3.11/internal/pycore_gc.h", + "include/python3.11/internal/pycore_genobject.h", + "include/python3.11/internal/pycore_getopt.h", + "include/python3.11/internal/pycore_gil.h", + "include/python3.11/internal/pycore_global_objects.h", + "include/python3.11/internal/pycore_global_strings.h", + "include/python3.11/internal/pycore_hamt.h", + "include/python3.11/internal/pycore_hashtable.h", + "include/python3.11/internal/pycore_import.h", + "include/python3.11/internal/pycore_initconfig.h", + "include/python3.11/internal/pycore_interp.h", + "include/python3.11/internal/pycore_interpreteridobject.h", + "include/python3.11/internal/pycore_list.h", + "include/python3.11/internal/pycore_long.h", + "include/python3.11/internal/pycore_moduleobject.h", + "include/python3.11/internal/pycore_namespace.h", + "include/python3.11/internal/pycore_object.h", + "include/python3.11/internal/pycore_opcode.h", + "include/python3.11/internal/pycore_parser.h", + "include/python3.11/internal/pycore_pathconfig.h", + "include/python3.11/internal/pycore_pyarena.h", + "include/python3.11/internal/pycore_pyerrors.h", + "include/python3.11/internal/pycore_pyhash.h", + "include/python3.11/internal/pycore_pylifecycle.h", + "include/python3.11/internal/pycore_pymath.h", + "include/python3.11/internal/pycore_pymem.h", + "include/python3.11/internal/pycore_pystate.h", + "include/python3.11/internal/pycore_runtime.h", + "include/python3.11/internal/pycore_runtime_init.h", + "include/python3.11/internal/pycore_signal.h", + "include/python3.11/internal/pycore_sliceobject.h", + "include/python3.11/internal/pycore_strhex.h", + "include/python3.11/internal/pycore_structseq.h", + "include/python3.11/internal/pycore_symtable.h", + "include/python3.11/internal/pycore_sysmodule.h", + "include/python3.11/internal/pycore_traceback.h", + "include/python3.11/internal/pycore_tuple.h", + "include/python3.11/internal/pycore_typeobject.h", + "include/python3.11/internal/pycore_ucnhash.h", + "include/python3.11/internal/pycore_unicodeobject.h", + "include/python3.11/internal/pycore_unionobject.h", + "include/python3.11/internal/pycore_warnings.h", + "include/python3.11/intrcheck.h", + "include/python3.11/iterobject.h", + "include/python3.11/listobject.h", + "include/python3.11/longobject.h", + "include/python3.11/marshal.h", + "include/python3.11/memoryobject.h", + "include/python3.11/methodobject.h", + "include/python3.11/modsupport.h", + "include/python3.11/moduleobject.h", + "include/python3.11/object.h", + "include/python3.11/objimpl.h", + "include/python3.11/opcode.h", + "include/python3.11/osdefs.h", + "include/python3.11/osmodule.h", + "include/python3.11/patchlevel.h", + "include/python3.11/py_curses.h", + "include/python3.11/pybuffer.h", + "include/python3.11/pycapsule.h", + "include/python3.11/pyconfig.h", + "include/python3.11/pydtrace.h", + "include/python3.11/pyerrors.h", + "include/python3.11/pyexpat.h", + "include/python3.11/pyframe.h", + "include/python3.11/pyhash.h", + "include/python3.11/pylifecycle.h", + "include/python3.11/pymacconfig.h", + "include/python3.11/pymacro.h", + "include/python3.11/pymath.h", + "include/python3.11/pymem.h", + "include/python3.11/pyport.h", + "include/python3.11/pystate.h", + "include/python3.11/pystrcmp.h", + "include/python3.11/pystrtod.h", + "include/python3.11/pythonrun.h", + "include/python3.11/pythread.h", + "include/python3.11/pytypedefs.h", + "include/python3.11/rangeobject.h", + "include/python3.11/setobject.h", + "include/python3.11/sliceobject.h", + "include/python3.11/structmember.h", + "include/python3.11/structseq.h", + "include/python3.11/sysmodule.h", + "include/python3.11/token.h", + "include/python3.11/traceback.h", + "include/python3.11/tracemalloc.h", + "include/python3.11/tupleobject.h", + "include/python3.11/typeslots.h", + "include/python3.11/unicodeobject.h", + "include/python3.11/warnings.h", + "include/python3.11/weakrefobject.h", + "lib/libpython3.11.dylib", + "lib/pkgconfig/python-3.11-embed.pc", + "lib/pkgconfig/python-3.11.pc", + "lib/pkgconfig/python3-embed.pc", + "lib/pkgconfig/python3.pc", + "lib/python3.1", + "lib/python3.11/LICENSE.txt", + "lib/python3.11/__future__.py", + "lib/python3.11/__hello__.py", + "lib/python3.11/__phello__/__init__.py", + "lib/python3.11/__phello__/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/__phello__/__pycache__/spam.cpython-311.pyc", + "lib/python3.11/__phello__/spam.py", + "lib/python3.11/__pycache__/__future__.cpython-311.pyc", + "lib/python3.11/__pycache__/__hello__.cpython-311.pyc", + "lib/python3.11/__pycache__/_aix_support.cpython-311.pyc", + "lib/python3.11/__pycache__/_bootsubprocess.cpython-311.pyc", + "lib/python3.11/__pycache__/_collections_abc.cpython-311.pyc", + "lib/python3.11/__pycache__/_compat_pickle.cpython-311.pyc", + "lib/python3.11/__pycache__/_compression.cpython-311.pyc", + "lib/python3.11/__pycache__/_markupbase.cpython-311.pyc", + "lib/python3.11/__pycache__/_osx_support.cpython-311.pyc", + "lib/python3.11/__pycache__/_py_abc.cpython-311.pyc", + "lib/python3.11/__pycache__/_pydecimal.cpython-311.pyc", + "lib/python3.11/__pycache__/_pyio.cpython-311.pyc", + "lib/python3.11/__pycache__/_sitebuiltins.cpython-311.pyc", + "lib/python3.11/__pycache__/_strptime.cpython-311.pyc", + "lib/python3.11/__pycache__/_sysconfigdata__darwin_darwin.cpython-311.pyc", + "lib/python3.11/__pycache__/_sysconfigdata_arm64_apple_darwin20_0_0.cpython-311.pyc", + "lib/python3.11/__pycache__/_threading_local.cpython-311.pyc", + "lib/python3.11/__pycache__/_weakrefset.cpython-311.pyc", + "lib/python3.11/__pycache__/abc.cpython-311.pyc", + "lib/python3.11/__pycache__/aifc.cpython-311.pyc", + "lib/python3.11/__pycache__/antigravity.cpython-311.pyc", + "lib/python3.11/__pycache__/argparse.cpython-311.pyc", + "lib/python3.11/__pycache__/ast.cpython-311.pyc", + "lib/python3.11/__pycache__/asynchat.cpython-311.pyc", + "lib/python3.11/__pycache__/asyncore.cpython-311.pyc", + "lib/python3.11/__pycache__/base64.cpython-311.pyc", + "lib/python3.11/__pycache__/bdb.cpython-311.pyc", + "lib/python3.11/__pycache__/bisect.cpython-311.pyc", + "lib/python3.11/__pycache__/bz2.cpython-311.pyc", + "lib/python3.11/__pycache__/cProfile.cpython-311.pyc", + "lib/python3.11/__pycache__/calendar.cpython-311.pyc", + "lib/python3.11/__pycache__/cgi.cpython-311.pyc", + "lib/python3.11/__pycache__/cgitb.cpython-311.pyc", + "lib/python3.11/__pycache__/chunk.cpython-311.pyc", + "lib/python3.11/__pycache__/cmd.cpython-311.pyc", + "lib/python3.11/__pycache__/code.cpython-311.pyc", + "lib/python3.11/__pycache__/codecs.cpython-311.pyc", + "lib/python3.11/__pycache__/codeop.cpython-311.pyc", + "lib/python3.11/__pycache__/colorsys.cpython-311.pyc", + "lib/python3.11/__pycache__/compileall.cpython-311.pyc", + "lib/python3.11/__pycache__/configparser.cpython-311.pyc", + "lib/python3.11/__pycache__/contextlib.cpython-311.pyc", + "lib/python3.11/__pycache__/contextvars.cpython-311.pyc", + "lib/python3.11/__pycache__/copy.cpython-311.pyc", + "lib/python3.11/__pycache__/copyreg.cpython-311.pyc", + "lib/python3.11/__pycache__/crypt.cpython-311.pyc", + "lib/python3.11/__pycache__/csv.cpython-311.pyc", + "lib/python3.11/__pycache__/dataclasses.cpython-311.pyc", + "lib/python3.11/__pycache__/datetime.cpython-311.pyc", + "lib/python3.11/__pycache__/decimal.cpython-311.pyc", + "lib/python3.11/__pycache__/difflib.cpython-311.pyc", + "lib/python3.11/__pycache__/dis.cpython-311.pyc", + "lib/python3.11/__pycache__/doctest.cpython-311.pyc", + "lib/python3.11/__pycache__/enum.cpython-311.pyc", + "lib/python3.11/__pycache__/filecmp.cpython-311.pyc", + "lib/python3.11/__pycache__/fileinput.cpython-311.pyc", + "lib/python3.11/__pycache__/fnmatch.cpython-311.pyc", + "lib/python3.11/__pycache__/fractions.cpython-311.pyc", + "lib/python3.11/__pycache__/ftplib.cpython-311.pyc", + "lib/python3.11/__pycache__/functools.cpython-311.pyc", + "lib/python3.11/__pycache__/genericpath.cpython-311.pyc", + "lib/python3.11/__pycache__/getopt.cpython-311.pyc", + "lib/python3.11/__pycache__/getpass.cpython-311.pyc", + "lib/python3.11/__pycache__/gettext.cpython-311.pyc", + "lib/python3.11/__pycache__/glob.cpython-311.pyc", + "lib/python3.11/__pycache__/graphlib.cpython-311.pyc", + "lib/python3.11/__pycache__/gzip.cpython-311.pyc", + "lib/python3.11/__pycache__/hashlib.cpython-311.pyc", + "lib/python3.11/__pycache__/heapq.cpython-311.pyc", + "lib/python3.11/__pycache__/hmac.cpython-311.pyc", + "lib/python3.11/__pycache__/imaplib.cpython-311.pyc", + "lib/python3.11/__pycache__/imghdr.cpython-311.pyc", + "lib/python3.11/__pycache__/imp.cpython-311.pyc", + "lib/python3.11/__pycache__/inspect.cpython-311.pyc", + "lib/python3.11/__pycache__/io.cpython-311.pyc", + "lib/python3.11/__pycache__/ipaddress.cpython-311.pyc", + "lib/python3.11/__pycache__/keyword.cpython-311.pyc", + "lib/python3.11/__pycache__/linecache.cpython-311.pyc", + "lib/python3.11/__pycache__/locale.cpython-311.pyc", + "lib/python3.11/__pycache__/lzma.cpython-311.pyc", + "lib/python3.11/__pycache__/mailbox.cpython-311.pyc", + "lib/python3.11/__pycache__/mailcap.cpython-311.pyc", + "lib/python3.11/__pycache__/mimetypes.cpython-311.pyc", + "lib/python3.11/__pycache__/modulefinder.cpython-311.pyc", + "lib/python3.11/__pycache__/netrc.cpython-311.pyc", + "lib/python3.11/__pycache__/nntplib.cpython-311.pyc", + "lib/python3.11/__pycache__/ntpath.cpython-311.pyc", + "lib/python3.11/__pycache__/nturl2path.cpython-311.pyc", + "lib/python3.11/__pycache__/numbers.cpython-311.pyc", + "lib/python3.11/__pycache__/opcode.cpython-311.pyc", + "lib/python3.11/__pycache__/operator.cpython-311.pyc", + "lib/python3.11/__pycache__/optparse.cpython-311.pyc", + "lib/python3.11/__pycache__/os.cpython-311.pyc", + "lib/python3.11/__pycache__/pathlib.cpython-311.pyc", + "lib/python3.11/__pycache__/pdb.cpython-311.pyc", + "lib/python3.11/__pycache__/pickle.cpython-311.pyc", + "lib/python3.11/__pycache__/pickletools.cpython-311.pyc", + "lib/python3.11/__pycache__/pipes.cpython-311.pyc", + "lib/python3.11/__pycache__/pkgutil.cpython-311.pyc", + "lib/python3.11/__pycache__/platform.cpython-311.pyc", + "lib/python3.11/__pycache__/plistlib.cpython-311.pyc", + "lib/python3.11/__pycache__/poplib.cpython-311.pyc", + "lib/python3.11/__pycache__/posixpath.cpython-311.pyc", + "lib/python3.11/__pycache__/pprint.cpython-311.pyc", + "lib/python3.11/__pycache__/profile.cpython-311.pyc", + "lib/python3.11/__pycache__/pstats.cpython-311.pyc", + "lib/python3.11/__pycache__/pty.cpython-311.pyc", + "lib/python3.11/__pycache__/py_compile.cpython-311.pyc", + "lib/python3.11/__pycache__/pyclbr.cpython-311.pyc", + "lib/python3.11/__pycache__/pydoc.cpython-311.pyc", + "lib/python3.11/__pycache__/queue.cpython-311.pyc", + "lib/python3.11/__pycache__/quopri.cpython-311.pyc", + "lib/python3.11/__pycache__/random.cpython-311.pyc", + "lib/python3.11/__pycache__/reprlib.cpython-311.pyc", + "lib/python3.11/__pycache__/rlcompleter.cpython-311.pyc", + "lib/python3.11/__pycache__/runpy.cpython-311.pyc", + "lib/python3.11/__pycache__/sched.cpython-311.pyc", + "lib/python3.11/__pycache__/secrets.cpython-311.pyc", + "lib/python3.11/__pycache__/selectors.cpython-311.pyc", + "lib/python3.11/__pycache__/shelve.cpython-311.pyc", + "lib/python3.11/__pycache__/shlex.cpython-311.pyc", + "lib/python3.11/__pycache__/shutil.cpython-311.pyc", + "lib/python3.11/__pycache__/signal.cpython-311.pyc", + "lib/python3.11/__pycache__/site.cpython-311.pyc", + "lib/python3.11/__pycache__/smtpd.cpython-311.pyc", + "lib/python3.11/__pycache__/smtplib.cpython-311.pyc", + "lib/python3.11/__pycache__/sndhdr.cpython-311.pyc", + "lib/python3.11/__pycache__/socket.cpython-311.pyc", + "lib/python3.11/__pycache__/socketserver.cpython-311.pyc", + "lib/python3.11/__pycache__/sre_compile.cpython-311.pyc", + "lib/python3.11/__pycache__/sre_constants.cpython-311.pyc", + "lib/python3.11/__pycache__/sre_parse.cpython-311.pyc", + "lib/python3.11/__pycache__/ssl.cpython-311.pyc", + "lib/python3.11/__pycache__/stat.cpython-311.pyc", + "lib/python3.11/__pycache__/statistics.cpython-311.pyc", + "lib/python3.11/__pycache__/string.cpython-311.pyc", + "lib/python3.11/__pycache__/stringprep.cpython-311.pyc", + "lib/python3.11/__pycache__/struct.cpython-311.pyc", + "lib/python3.11/__pycache__/subprocess.cpython-311.pyc", + "lib/python3.11/__pycache__/sunau.cpython-311.pyc", + "lib/python3.11/__pycache__/symtable.cpython-311.pyc", + "lib/python3.11/__pycache__/sysconfig.cpython-311.pyc", + "lib/python3.11/__pycache__/tabnanny.cpython-311.pyc", + "lib/python3.11/__pycache__/tarfile.cpython-311.pyc", + "lib/python3.11/__pycache__/telnetlib.cpython-311.pyc", + "lib/python3.11/__pycache__/tempfile.cpython-311.pyc", + "lib/python3.11/__pycache__/textwrap.cpython-311.pyc", + "lib/python3.11/__pycache__/this.cpython-311.pyc", + "lib/python3.11/__pycache__/threading.cpython-311.pyc", + "lib/python3.11/__pycache__/timeit.cpython-311.pyc", + "lib/python3.11/__pycache__/token.cpython-311.pyc", + "lib/python3.11/__pycache__/tokenize.cpython-311.pyc", + "lib/python3.11/__pycache__/trace.cpython-311.pyc", + "lib/python3.11/__pycache__/traceback.cpython-311.pyc", + "lib/python3.11/__pycache__/tracemalloc.cpython-311.pyc", + "lib/python3.11/__pycache__/tty.cpython-311.pyc", + "lib/python3.11/__pycache__/turtle.cpython-311.pyc", + "lib/python3.11/__pycache__/types.cpython-311.pyc", + "lib/python3.11/__pycache__/typing.cpython-311.pyc", + "lib/python3.11/__pycache__/uu.cpython-311.pyc", + "lib/python3.11/__pycache__/uuid.cpython-311.pyc", + "lib/python3.11/__pycache__/warnings.cpython-311.pyc", + "lib/python3.11/__pycache__/wave.cpython-311.pyc", + "lib/python3.11/__pycache__/weakref.cpython-311.pyc", + "lib/python3.11/__pycache__/webbrowser.cpython-311.pyc", + "lib/python3.11/__pycache__/xdrlib.cpython-311.pyc", + "lib/python3.11/__pycache__/zipapp.cpython-311.pyc", + "lib/python3.11/__pycache__/zipfile.cpython-311.pyc", + "lib/python3.11/__pycache__/zipimport.cpython-311.pyc", + "lib/python3.11/_aix_support.py", + "lib/python3.11/_bootsubprocess.py", + "lib/python3.11/_collections_abc.py", + "lib/python3.11/_compat_pickle.py", + "lib/python3.11/_compression.py", + "lib/python3.11/_markupbase.py", + "lib/python3.11/_osx_support.py", + "lib/python3.11/_py_abc.py", + "lib/python3.11/_pydecimal.py", + "lib/python3.11/_pyio.py", + "lib/python3.11/_sitebuiltins.py", + "lib/python3.11/_strptime.py", + "lib/python3.11/_sysconfigdata__darwin_darwin.py", + "lib/python3.11/_sysconfigdata__darwin_darwin.py.orig", + "lib/python3.11/_sysconfigdata_arm64_apple_darwin20_0_0.py", + "lib/python3.11/_threading_local.py", + "lib/python3.11/_weakrefset.py", + "lib/python3.11/abc.py", + "lib/python3.11/aifc.py", + "lib/python3.11/antigravity.py", + "lib/python3.11/argparse.py", + "lib/python3.11/ast.py", + "lib/python3.11/asynchat.py", + "lib/python3.11/asyncio/__init__.py", + "lib/python3.11/asyncio/__main__.py", + "lib/python3.11/asyncio/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/base_events.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/base_futures.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/base_subprocess.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/base_tasks.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/constants.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/coroutines.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/events.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/exceptions.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/format_helpers.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/futures.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/locks.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/log.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/mixins.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/proactor_events.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/protocols.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/queues.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/runners.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/selector_events.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/sslproto.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/staggered.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/streams.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/subprocess.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/taskgroups.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/tasks.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/threads.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/timeouts.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/transports.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/trsock.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/unix_events.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/windows_events.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/windows_utils.cpython-311.pyc", + "lib/python3.11/asyncio/base_events.py", + "lib/python3.11/asyncio/base_futures.py", + "lib/python3.11/asyncio/base_subprocess.py", + "lib/python3.11/asyncio/base_tasks.py", + "lib/python3.11/asyncio/constants.py", + "lib/python3.11/asyncio/coroutines.py", + "lib/python3.11/asyncio/events.py", + "lib/python3.11/asyncio/exceptions.py", + "lib/python3.11/asyncio/format_helpers.py", + "lib/python3.11/asyncio/futures.py", + "lib/python3.11/asyncio/locks.py", + "lib/python3.11/asyncio/log.py", + "lib/python3.11/asyncio/mixins.py", + "lib/python3.11/asyncio/proactor_events.py", + "lib/python3.11/asyncio/protocols.py", + "lib/python3.11/asyncio/queues.py", + "lib/python3.11/asyncio/runners.py", + "lib/python3.11/asyncio/selector_events.py", + "lib/python3.11/asyncio/sslproto.py", + "lib/python3.11/asyncio/staggered.py", + "lib/python3.11/asyncio/streams.py", + "lib/python3.11/asyncio/subprocess.py", + "lib/python3.11/asyncio/taskgroups.py", + "lib/python3.11/asyncio/tasks.py", + "lib/python3.11/asyncio/threads.py", + "lib/python3.11/asyncio/timeouts.py", + "lib/python3.11/asyncio/transports.py", + "lib/python3.11/asyncio/trsock.py", + "lib/python3.11/asyncio/unix_events.py", + "lib/python3.11/asyncio/windows_events.py", + "lib/python3.11/asyncio/windows_utils.py", + "lib/python3.11/asyncore.py", + "lib/python3.11/base64.py", + "lib/python3.11/bdb.py", + "lib/python3.11/bisect.py", + "lib/python3.11/bz2.py", + "lib/python3.11/cProfile.py", + "lib/python3.11/calendar.py", + "lib/python3.11/cgi.py", + "lib/python3.11/cgitb.py", + "lib/python3.11/chunk.py", + "lib/python3.11/cmd.py", + "lib/python3.11/code.py", + "lib/python3.11/codecs.py", + "lib/python3.11/codeop.py", + "lib/python3.11/collections/__init__.py", + "lib/python3.11/collections/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/collections/__pycache__/abc.cpython-311.pyc", + "lib/python3.11/collections/abc.py", + "lib/python3.11/colorsys.py", + "lib/python3.11/compileall.py", + "lib/python3.11/concurrent/__init__.py", + "lib/python3.11/concurrent/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/concurrent/futures/__init__.py", + "lib/python3.11/concurrent/futures/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/concurrent/futures/__pycache__/_base.cpython-311.pyc", + "lib/python3.11/concurrent/futures/__pycache__/process.cpython-311.pyc", + "lib/python3.11/concurrent/futures/__pycache__/thread.cpython-311.pyc", + "lib/python3.11/concurrent/futures/_base.py", + "lib/python3.11/concurrent/futures/process.py", + "lib/python3.11/concurrent/futures/thread.py", + "lib/python3.11/config-3.11-darwin/Makefile", + "lib/python3.11/config-3.11-darwin/Setup", + "lib/python3.11/config-3.11-darwin/Setup.bootstrap", + "lib/python3.11/config-3.11-darwin/Setup.local", + "lib/python3.11/config-3.11-darwin/Setup.stdlib", + "lib/python3.11/config-3.11-darwin/__pycache__/python-config.cpython-311.pyc", + "lib/python3.11/config-3.11-darwin/config.c", + "lib/python3.11/config-3.11-darwin/config.c.in", + "lib/python3.11/config-3.11-darwin/install-sh", + "lib/python3.11/config-3.11-darwin/makesetup", + "lib/python3.11/config-3.11-darwin/python-config.py", + "lib/python3.11/config-3.11-darwin/python.o", + "lib/python3.11/configparser.py", + "lib/python3.11/contextlib.py", + "lib/python3.11/contextvars.py", + "lib/python3.11/copy.py", + "lib/python3.11/copyreg.py", + "lib/python3.11/crypt.py", + "lib/python3.11/csv.py", + "lib/python3.11/ctypes/__init__.py", + "lib/python3.11/ctypes/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/ctypes/__pycache__/_aix.cpython-311.pyc", + "lib/python3.11/ctypes/__pycache__/_endian.cpython-311.pyc", + "lib/python3.11/ctypes/__pycache__/util.cpython-311.pyc", + "lib/python3.11/ctypes/__pycache__/wintypes.cpython-311.pyc", + "lib/python3.11/ctypes/_aix.py", + "lib/python3.11/ctypes/_endian.py", + "lib/python3.11/ctypes/macholib/README.ctypes", + "lib/python3.11/ctypes/macholib/__init__.py", + "lib/python3.11/ctypes/macholib/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/ctypes/macholib/__pycache__/dyld.cpython-311.pyc", + "lib/python3.11/ctypes/macholib/__pycache__/dylib.cpython-311.pyc", + "lib/python3.11/ctypes/macholib/__pycache__/framework.cpython-311.pyc", + "lib/python3.11/ctypes/macholib/dyld.py", + "lib/python3.11/ctypes/macholib/dylib.py", + "lib/python3.11/ctypes/macholib/fetch_macholib", + "lib/python3.11/ctypes/macholib/fetch_macholib.bat", + "lib/python3.11/ctypes/macholib/framework.py", + "lib/python3.11/ctypes/util.py", + "lib/python3.11/ctypes/wintypes.py", + "lib/python3.11/curses/__init__.py", + "lib/python3.11/curses/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/curses/__pycache__/ascii.cpython-311.pyc", + "lib/python3.11/curses/__pycache__/has_key.cpython-311.pyc", + "lib/python3.11/curses/__pycache__/panel.cpython-311.pyc", + "lib/python3.11/curses/__pycache__/textpad.cpython-311.pyc", + "lib/python3.11/curses/ascii.py", + "lib/python3.11/curses/has_key.py", + "lib/python3.11/curses/panel.py", + "lib/python3.11/curses/textpad.py", + "lib/python3.11/dataclasses.py", + "lib/python3.11/datetime.py", + "lib/python3.11/dbm/__init__.py", + "lib/python3.11/dbm/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/dbm/__pycache__/dumb.cpython-311.pyc", + "lib/python3.11/dbm/__pycache__/gnu.cpython-311.pyc", + "lib/python3.11/dbm/__pycache__/ndbm.cpython-311.pyc", + "lib/python3.11/dbm/dumb.py", + "lib/python3.11/dbm/gnu.py", + "lib/python3.11/dbm/ndbm.py", + "lib/python3.11/decimal.py", + "lib/python3.11/difflib.py", + "lib/python3.11/dis.py", + "lib/python3.11/distutils/README", + "lib/python3.11/distutils/__init__.py", + "lib/python3.11/distutils/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/_msvccompiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/archive_util.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/bcppcompiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/ccompiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/cmd.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/config.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/core.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/cygwinccompiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/debug.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/dep_util.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/dir_util.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/dist.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/errors.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/extension.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/fancy_getopt.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/file_util.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/filelist.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/log.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/msvc9compiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/msvccompiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/spawn.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/sysconfig.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/text_file.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/unixccompiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/util.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/version.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/versionpredicate.cpython-311.pyc", + "lib/python3.11/distutils/_msvccompiler.py", + "lib/python3.11/distutils/archive_util.py", + "lib/python3.11/distutils/bcppcompiler.py", + "lib/python3.11/distutils/ccompiler.py", + "lib/python3.11/distutils/cmd.py", + "lib/python3.11/distutils/command/__init__.py", + "lib/python3.11/distutils/command/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/bdist.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/bdist_dumb.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/bdist_rpm.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/build.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/build_clib.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/build_ext.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/build_py.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/build_scripts.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/check.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/clean.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/config.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/install.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/install_data.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/install_egg_info.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/install_headers.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/install_lib.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/install_scripts.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/register.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/sdist.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/upload.cpython-311.pyc", + "lib/python3.11/distutils/command/bdist.py", + "lib/python3.11/distutils/command/bdist_dumb.py", + "lib/python3.11/distutils/command/bdist_rpm.py", + "lib/python3.11/distutils/command/build.py", + "lib/python3.11/distutils/command/build_clib.py", + "lib/python3.11/distutils/command/build_ext.py", + "lib/python3.11/distutils/command/build_py.py", + "lib/python3.11/distutils/command/build_scripts.py", + "lib/python3.11/distutils/command/check.py", + "lib/python3.11/distutils/command/clean.py", + "lib/python3.11/distutils/command/command_template", + "lib/python3.11/distutils/command/config.py", + "lib/python3.11/distutils/command/install.py", + "lib/python3.11/distutils/command/install_data.py", + "lib/python3.11/distutils/command/install_egg_info.py", + "lib/python3.11/distutils/command/install_headers.py", + "lib/python3.11/distutils/command/install_lib.py", + "lib/python3.11/distutils/command/install_scripts.py", + "lib/python3.11/distutils/command/register.py", + "lib/python3.11/distutils/command/sdist.py", + "lib/python3.11/distutils/command/upload.py", + "lib/python3.11/distutils/config.py", + "lib/python3.11/distutils/core.py", + "lib/python3.11/distutils/cygwinccompiler.py", + "lib/python3.11/distutils/debug.py", + "lib/python3.11/distutils/dep_util.py", + "lib/python3.11/distutils/dir_util.py", + "lib/python3.11/distutils/dist.py", + "lib/python3.11/distutils/errors.py", + "lib/python3.11/distutils/extension.py", + "lib/python3.11/distutils/fancy_getopt.py", + "lib/python3.11/distutils/file_util.py", + "lib/python3.11/distutils/filelist.py", + "lib/python3.11/distutils/log.py", + "lib/python3.11/distutils/msvc9compiler.py", + "lib/python3.11/distutils/msvccompiler.py", + "lib/python3.11/distutils/spawn.py", + "lib/python3.11/distutils/sysconfig.py", + "lib/python3.11/distutils/tests/Setup.sample", + "lib/python3.11/distutils/tests/__init__.py", + "lib/python3.11/distutils/tests/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/support.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_archive_util.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_bdist.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_bdist_dumb.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_bdist_rpm.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_build.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_build_clib.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_build_ext.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_build_py.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_build_scripts.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_check.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_clean.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_cmd.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_config.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_config_cmd.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_core.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_cygwinccompiler.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_dep_util.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_dir_util.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_dist.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_extension.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_file_util.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_filelist.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_install.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_install_data.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_install_headers.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_install_lib.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_install_scripts.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_log.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_msvc9compiler.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_msvccompiler.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_register.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_sdist.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_spawn.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_sysconfig.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_text_file.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_unixccompiler.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_upload.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_util.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_version.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_versionpredicate.cpython-311.pyc", + "lib/python3.11/distutils/tests/includetest.rst", + "lib/python3.11/distutils/tests/support.py", + "lib/python3.11/distutils/tests/test_archive_util.py", + "lib/python3.11/distutils/tests/test_bdist.py", + "lib/python3.11/distutils/tests/test_bdist_dumb.py", + "lib/python3.11/distutils/tests/test_bdist_rpm.py", + "lib/python3.11/distutils/tests/test_build.py", + "lib/python3.11/distutils/tests/test_build_clib.py", + "lib/python3.11/distutils/tests/test_build_ext.py", + "lib/python3.11/distutils/tests/test_build_py.py", + "lib/python3.11/distutils/tests/test_build_scripts.py", + "lib/python3.11/distutils/tests/test_check.py", + "lib/python3.11/distutils/tests/test_clean.py", + "lib/python3.11/distutils/tests/test_cmd.py", + "lib/python3.11/distutils/tests/test_config.py", + "lib/python3.11/distutils/tests/test_config_cmd.py", + "lib/python3.11/distutils/tests/test_core.py", + "lib/python3.11/distutils/tests/test_cygwinccompiler.py", + "lib/python3.11/distutils/tests/test_dep_util.py", + "lib/python3.11/distutils/tests/test_dir_util.py", + "lib/python3.11/distutils/tests/test_dist.py", + "lib/python3.11/distutils/tests/test_extension.py", + "lib/python3.11/distutils/tests/test_file_util.py", + "lib/python3.11/distutils/tests/test_filelist.py", + "lib/python3.11/distutils/tests/test_install.py", + "lib/python3.11/distutils/tests/test_install_data.py", + "lib/python3.11/distutils/tests/test_install_headers.py", + "lib/python3.11/distutils/tests/test_install_lib.py", + "lib/python3.11/distutils/tests/test_install_scripts.py", + "lib/python3.11/distutils/tests/test_log.py", + "lib/python3.11/distutils/tests/test_msvc9compiler.py", + "lib/python3.11/distutils/tests/test_msvccompiler.py", + "lib/python3.11/distutils/tests/test_register.py", + "lib/python3.11/distutils/tests/test_sdist.py", + "lib/python3.11/distutils/tests/test_spawn.py", + "lib/python3.11/distutils/tests/test_sysconfig.py", + "lib/python3.11/distutils/tests/test_text_file.py", + "lib/python3.11/distutils/tests/test_unixccompiler.py", + "lib/python3.11/distutils/tests/test_upload.py", + "lib/python3.11/distutils/tests/test_util.py", + "lib/python3.11/distutils/tests/test_version.py", + "lib/python3.11/distutils/tests/test_versionpredicate.py", + "lib/python3.11/distutils/tests/xxmodule.c", + "lib/python3.11/distutils/text_file.py", + "lib/python3.11/distutils/unixccompiler.py", + "lib/python3.11/distutils/util.py", + "lib/python3.11/distutils/version.py", + "lib/python3.11/distutils/versionpredicate.py", + "lib/python3.11/doctest.py", + "lib/python3.11/email/__init__.py", + "lib/python3.11/email/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/email/__pycache__/_encoded_words.cpython-311.pyc", + "lib/python3.11/email/__pycache__/_header_value_parser.cpython-311.pyc", + "lib/python3.11/email/__pycache__/_parseaddr.cpython-311.pyc", + "lib/python3.11/email/__pycache__/_policybase.cpython-311.pyc", + "lib/python3.11/email/__pycache__/base64mime.cpython-311.pyc", + "lib/python3.11/email/__pycache__/charset.cpython-311.pyc", + "lib/python3.11/email/__pycache__/contentmanager.cpython-311.pyc", + "lib/python3.11/email/__pycache__/encoders.cpython-311.pyc", + "lib/python3.11/email/__pycache__/errors.cpython-311.pyc", + "lib/python3.11/email/__pycache__/feedparser.cpython-311.pyc", + "lib/python3.11/email/__pycache__/generator.cpython-311.pyc", + "lib/python3.11/email/__pycache__/header.cpython-311.pyc", + "lib/python3.11/email/__pycache__/headerregistry.cpython-311.pyc", + "lib/python3.11/email/__pycache__/iterators.cpython-311.pyc", + "lib/python3.11/email/__pycache__/message.cpython-311.pyc", + "lib/python3.11/email/__pycache__/parser.cpython-311.pyc", + "lib/python3.11/email/__pycache__/policy.cpython-311.pyc", + "lib/python3.11/email/__pycache__/quoprimime.cpython-311.pyc", + "lib/python3.11/email/__pycache__/utils.cpython-311.pyc", + "lib/python3.11/email/_encoded_words.py", + "lib/python3.11/email/_header_value_parser.py", + "lib/python3.11/email/_parseaddr.py", + "lib/python3.11/email/_policybase.py", + "lib/python3.11/email/architecture.rst", + "lib/python3.11/email/base64mime.py", + "lib/python3.11/email/charset.py", + "lib/python3.11/email/contentmanager.py", + "lib/python3.11/email/encoders.py", + "lib/python3.11/email/errors.py", + "lib/python3.11/email/feedparser.py", + "lib/python3.11/email/generator.py", + "lib/python3.11/email/header.py", + "lib/python3.11/email/headerregistry.py", + "lib/python3.11/email/iterators.py", + "lib/python3.11/email/message.py", + "lib/python3.11/email/mime/__init__.py", + "lib/python3.11/email/mime/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/application.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/audio.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/base.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/image.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/message.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/multipart.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/nonmultipart.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/text.cpython-311.pyc", + "lib/python3.11/email/mime/application.py", + "lib/python3.11/email/mime/audio.py", + "lib/python3.11/email/mime/base.py", + "lib/python3.11/email/mime/image.py", + "lib/python3.11/email/mime/message.py", + "lib/python3.11/email/mime/multipart.py", + "lib/python3.11/email/mime/nonmultipart.py", + "lib/python3.11/email/mime/text.py", + "lib/python3.11/email/parser.py", + "lib/python3.11/email/policy.py", + "lib/python3.11/email/quoprimime.py", + "lib/python3.11/email/utils.py", + "lib/python3.11/encodings/__init__.py", + "lib/python3.11/encodings/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/aliases.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/ascii.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/base64_codec.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/big5.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/big5hkscs.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/bz2_codec.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/charmap.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp037.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1006.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1026.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1125.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1140.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1250.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1251.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1252.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1253.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1254.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1255.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1256.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1257.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1258.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp273.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp424.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp437.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp500.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp720.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp737.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp775.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp850.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp852.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp855.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp856.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp857.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp858.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp860.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp861.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp862.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp863.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp864.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp865.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp866.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp869.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp874.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp875.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp932.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp949.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp950.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/euc_jis_2004.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/euc_jisx0213.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/euc_jp.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/euc_kr.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/gb18030.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/gb2312.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/gbk.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/hex_codec.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/hp_roman8.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/hz.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/idna.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_jp.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_jp_1.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_jp_2.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_jp_2004.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_jp_3.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_jp_ext.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_kr.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_1.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_10.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_11.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_13.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_14.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_15.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_16.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_2.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_3.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_4.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_5.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_6.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_7.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_8.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_9.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/johab.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/koi8_r.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/koi8_t.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/koi8_u.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/kz1048.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/latin_1.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_arabic.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_croatian.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_cyrillic.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_farsi.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_greek.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_iceland.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_latin2.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_roman.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_romanian.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_turkish.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mbcs.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/oem.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/palmos.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/ptcp154.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/punycode.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/quopri_codec.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/raw_unicode_escape.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/rot_13.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/shift_jis.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/shift_jis_2004.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/shift_jisx0213.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/tis_620.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/undefined.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/unicode_escape.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_16.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_16_be.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_16_le.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_32.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_32_be.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_32_le.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_7.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_8.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_8_sig.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/uu_codec.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/zlib_codec.cpython-311.pyc", + "lib/python3.11/encodings/aliases.py", + "lib/python3.11/encodings/ascii.py", + "lib/python3.11/encodings/base64_codec.py", + "lib/python3.11/encodings/big5.py", + "lib/python3.11/encodings/big5hkscs.py", + "lib/python3.11/encodings/bz2_codec.py", + "lib/python3.11/encodings/charmap.py", + "lib/python3.11/encodings/cp037.py", + "lib/python3.11/encodings/cp1006.py", + "lib/python3.11/encodings/cp1026.py", + "lib/python3.11/encodings/cp1125.py", + "lib/python3.11/encodings/cp1140.py", + "lib/python3.11/encodings/cp1250.py", + "lib/python3.11/encodings/cp1251.py", + "lib/python3.11/encodings/cp1252.py", + "lib/python3.11/encodings/cp1253.py", + "lib/python3.11/encodings/cp1254.py", + "lib/python3.11/encodings/cp1255.py", + "lib/python3.11/encodings/cp1256.py", + "lib/python3.11/encodings/cp1257.py", + "lib/python3.11/encodings/cp1258.py", + "lib/python3.11/encodings/cp273.py", + "lib/python3.11/encodings/cp424.py", + "lib/python3.11/encodings/cp437.py", + "lib/python3.11/encodings/cp500.py", + "lib/python3.11/encodings/cp720.py", + "lib/python3.11/encodings/cp737.py", + "lib/python3.11/encodings/cp775.py", + "lib/python3.11/encodings/cp850.py", + "lib/python3.11/encodings/cp852.py", + "lib/python3.11/encodings/cp855.py", + "lib/python3.11/encodings/cp856.py", + "lib/python3.11/encodings/cp857.py", + "lib/python3.11/encodings/cp858.py", + "lib/python3.11/encodings/cp860.py", + "lib/python3.11/encodings/cp861.py", + "lib/python3.11/encodings/cp862.py", + "lib/python3.11/encodings/cp863.py", + "lib/python3.11/encodings/cp864.py", + "lib/python3.11/encodings/cp865.py", + "lib/python3.11/encodings/cp866.py", + "lib/python3.11/encodings/cp869.py", + "lib/python3.11/encodings/cp874.py", + "lib/python3.11/encodings/cp875.py", + "lib/python3.11/encodings/cp932.py", + "lib/python3.11/encodings/cp949.py", + "lib/python3.11/encodings/cp950.py", + "lib/python3.11/encodings/euc_jis_2004.py", + "lib/python3.11/encodings/euc_jisx0213.py", + "lib/python3.11/encodings/euc_jp.py", + "lib/python3.11/encodings/euc_kr.py", + "lib/python3.11/encodings/gb18030.py", + "lib/python3.11/encodings/gb2312.py", + "lib/python3.11/encodings/gbk.py", + "lib/python3.11/encodings/hex_codec.py", + "lib/python3.11/encodings/hp_roman8.py", + "lib/python3.11/encodings/hz.py", + "lib/python3.11/encodings/idna.py", + "lib/python3.11/encodings/iso2022_jp.py", + "lib/python3.11/encodings/iso2022_jp_1.py", + "lib/python3.11/encodings/iso2022_jp_2.py", + "lib/python3.11/encodings/iso2022_jp_2004.py", + "lib/python3.11/encodings/iso2022_jp_3.py", + "lib/python3.11/encodings/iso2022_jp_ext.py", + "lib/python3.11/encodings/iso2022_kr.py", + "lib/python3.11/encodings/iso8859_1.py", + "lib/python3.11/encodings/iso8859_10.py", + "lib/python3.11/encodings/iso8859_11.py", + "lib/python3.11/encodings/iso8859_13.py", + "lib/python3.11/encodings/iso8859_14.py", + "lib/python3.11/encodings/iso8859_15.py", + "lib/python3.11/encodings/iso8859_16.py", + "lib/python3.11/encodings/iso8859_2.py", + "lib/python3.11/encodings/iso8859_3.py", + "lib/python3.11/encodings/iso8859_4.py", + "lib/python3.11/encodings/iso8859_5.py", + "lib/python3.11/encodings/iso8859_6.py", + "lib/python3.11/encodings/iso8859_7.py", + "lib/python3.11/encodings/iso8859_8.py", + "lib/python3.11/encodings/iso8859_9.py", + "lib/python3.11/encodings/johab.py", + "lib/python3.11/encodings/koi8_r.py", + "lib/python3.11/encodings/koi8_t.py", + "lib/python3.11/encodings/koi8_u.py", + "lib/python3.11/encodings/kz1048.py", + "lib/python3.11/encodings/latin_1.py", + "lib/python3.11/encodings/mac_arabic.py", + "lib/python3.11/encodings/mac_croatian.py", + "lib/python3.11/encodings/mac_cyrillic.py", + "lib/python3.11/encodings/mac_farsi.py", + "lib/python3.11/encodings/mac_greek.py", + "lib/python3.11/encodings/mac_iceland.py", + "lib/python3.11/encodings/mac_latin2.py", + "lib/python3.11/encodings/mac_roman.py", + "lib/python3.11/encodings/mac_romanian.py", + "lib/python3.11/encodings/mac_turkish.py", + "lib/python3.11/encodings/mbcs.py", + "lib/python3.11/encodings/oem.py", + "lib/python3.11/encodings/palmos.py", + "lib/python3.11/encodings/ptcp154.py", + "lib/python3.11/encodings/punycode.py", + "lib/python3.11/encodings/quopri_codec.py", + "lib/python3.11/encodings/raw_unicode_escape.py", + "lib/python3.11/encodings/rot_13.py", + "lib/python3.11/encodings/shift_jis.py", + "lib/python3.11/encodings/shift_jis_2004.py", + "lib/python3.11/encodings/shift_jisx0213.py", + "lib/python3.11/encodings/tis_620.py", + "lib/python3.11/encodings/undefined.py", + "lib/python3.11/encodings/unicode_escape.py", + "lib/python3.11/encodings/utf_16.py", + "lib/python3.11/encodings/utf_16_be.py", + "lib/python3.11/encodings/utf_16_le.py", + "lib/python3.11/encodings/utf_32.py", + "lib/python3.11/encodings/utf_32_be.py", + "lib/python3.11/encodings/utf_32_le.py", + "lib/python3.11/encodings/utf_7.py", + "lib/python3.11/encodings/utf_8.py", + "lib/python3.11/encodings/utf_8_sig.py", + "lib/python3.11/encodings/uu_codec.py", + "lib/python3.11/encodings/zlib_codec.py", + "lib/python3.11/ensurepip/__init__.py", + "lib/python3.11/ensurepip/__main__.py", + "lib/python3.11/ensurepip/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/ensurepip/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/ensurepip/__pycache__/_uninstall.cpython-311.pyc", + "lib/python3.11/ensurepip/_bundled/pip-23.2.1-py3-none-any.whl", + "lib/python3.11/ensurepip/_bundled/setuptools-65.5.0-py3-none-any.whl", + "lib/python3.11/ensurepip/_uninstall.py", + "lib/python3.11/enum.py", + "lib/python3.11/filecmp.py", + "lib/python3.11/fileinput.py", + "lib/python3.11/fnmatch.py", + "lib/python3.11/fractions.py", + "lib/python3.11/ftplib.py", + "lib/python3.11/functools.py", + "lib/python3.11/genericpath.py", + "lib/python3.11/getopt.py", + "lib/python3.11/getpass.py", + "lib/python3.11/gettext.py", + "lib/python3.11/glob.py", + "lib/python3.11/graphlib.py", + "lib/python3.11/gzip.py", + "lib/python3.11/hashlib.py", + "lib/python3.11/heapq.py", + "lib/python3.11/hmac.py", + "lib/python3.11/html/__init__.py", + "lib/python3.11/html/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/html/__pycache__/entities.cpython-311.pyc", + "lib/python3.11/html/__pycache__/parser.cpython-311.pyc", + "lib/python3.11/html/entities.py", + "lib/python3.11/html/parser.py", + "lib/python3.11/http/__init__.py", + "lib/python3.11/http/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/http/__pycache__/client.cpython-311.pyc", + "lib/python3.11/http/__pycache__/cookiejar.cpython-311.pyc", + "lib/python3.11/http/__pycache__/cookies.cpython-311.pyc", + "lib/python3.11/http/__pycache__/server.cpython-311.pyc", + "lib/python3.11/http/client.py", + "lib/python3.11/http/cookiejar.py", + "lib/python3.11/http/cookies.py", + "lib/python3.11/http/server.py", + "lib/python3.11/idlelib/CREDITS.txt", + "lib/python3.11/idlelib/ChangeLog", + "lib/python3.11/idlelib/HISTORY.txt", + "lib/python3.11/idlelib/Icons/README.txt", + "lib/python3.11/idlelib/Icons/folder.gif", + "lib/python3.11/idlelib/Icons/idle.ico", + "lib/python3.11/idlelib/Icons/idle_16.gif", + "lib/python3.11/idlelib/Icons/idle_16.png", + "lib/python3.11/idlelib/Icons/idle_256.png", + "lib/python3.11/idlelib/Icons/idle_32.gif", + "lib/python3.11/idlelib/Icons/idle_32.png", + "lib/python3.11/idlelib/Icons/idle_48.gif", + "lib/python3.11/idlelib/Icons/idle_48.png", + "lib/python3.11/idlelib/Icons/minusnode.gif", + "lib/python3.11/idlelib/Icons/openfolder.gif", + "lib/python3.11/idlelib/Icons/plusnode.gif", + "lib/python3.11/idlelib/Icons/python.gif", + "lib/python3.11/idlelib/Icons/tk.gif", + "lib/python3.11/idlelib/NEWS.txt", + "lib/python3.11/idlelib/NEWS2x.txt", + "lib/python3.11/idlelib/README.txt", + "lib/python3.11/idlelib/TODO.txt", + "lib/python3.11/idlelib/__init__.py", + "lib/python3.11/idlelib/__main__.py", + "lib/python3.11/idlelib/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/autocomplete.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/autocomplete_w.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/autoexpand.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/browser.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/calltip.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/calltip_w.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/codecontext.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/colorizer.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/config.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/config_key.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/configdialog.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/debugger.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/debugger_r.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/debugobj.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/debugobj_r.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/delegator.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/dynoption.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/editor.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/filelist.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/format.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/grep.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/help.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/help_about.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/history.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/hyperparser.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/idle.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/iomenu.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/macosx.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/mainmenu.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/multicall.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/outwin.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/parenmatch.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/pathbrowser.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/percolator.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/pyparse.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/pyshell.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/query.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/redirector.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/replace.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/rpc.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/run.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/runscript.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/scrolledlist.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/search.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/searchbase.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/searchengine.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/sidebar.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/squeezer.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/stackviewer.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/statusbar.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/textview.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/tooltip.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/tree.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/undo.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/util.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/window.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/zoomheight.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/zzdummy.cpython-311.pyc", + "lib/python3.11/idlelib/autocomplete.py", + "lib/python3.11/idlelib/autocomplete_w.py", + "lib/python3.11/idlelib/autoexpand.py", + "lib/python3.11/idlelib/browser.py", + "lib/python3.11/idlelib/calltip.py", + "lib/python3.11/idlelib/calltip_w.py", + "lib/python3.11/idlelib/codecontext.py", + "lib/python3.11/idlelib/colorizer.py", + "lib/python3.11/idlelib/config-extensions.def", + "lib/python3.11/idlelib/config-highlight.def", + "lib/python3.11/idlelib/config-keys.def", + "lib/python3.11/idlelib/config-main.def", + "lib/python3.11/idlelib/config.py", + "lib/python3.11/idlelib/config_key.py", + "lib/python3.11/idlelib/configdialog.py", + "lib/python3.11/idlelib/debugger.py", + "lib/python3.11/idlelib/debugger_r.py", + "lib/python3.11/idlelib/debugobj.py", + "lib/python3.11/idlelib/debugobj_r.py", + "lib/python3.11/idlelib/delegator.py", + "lib/python3.11/idlelib/dynoption.py", + "lib/python3.11/idlelib/editor.py", + "lib/python3.11/idlelib/extend.txt", + "lib/python3.11/idlelib/filelist.py", + "lib/python3.11/idlelib/format.py", + "lib/python3.11/idlelib/grep.py", + "lib/python3.11/idlelib/help.html", + "lib/python3.11/idlelib/help.py", + "lib/python3.11/idlelib/help_about.py", + "lib/python3.11/idlelib/history.py", + "lib/python3.11/idlelib/hyperparser.py", + "lib/python3.11/idlelib/idle.bat", + "lib/python3.11/idlelib/idle.py", + "lib/python3.11/idlelib/idle.pyw", + "lib/python3.11/idlelib/idle_test/README.txt", + "lib/python3.11/idlelib/idle_test/__init__.py", + "lib/python3.11/idlelib/idle_test/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/htest.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/mock_idle.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/mock_tk.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/template.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_autocomplete.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_autocomplete_w.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_autoexpand.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_browser.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_calltip.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_calltip_w.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_codecontext.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_colorizer.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_config.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_config_key.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_configdialog.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_debugger.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_debugger_r.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_debugobj.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_debugobj_r.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_delegator.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_editmenu.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_editor.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_filelist.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_format.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_grep.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_help.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_help_about.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_history.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_hyperparser.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_iomenu.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_macosx.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_mainmenu.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_multicall.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_outwin.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_parenmatch.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_pathbrowser.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_percolator.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_pyparse.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_pyshell.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_query.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_redirector.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_replace.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_rpc.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_run.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_runscript.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_scrolledlist.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_search.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_searchbase.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_searchengine.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_sidebar.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_squeezer.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_stackviewer.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_statusbar.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_text.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_textview.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_tooltip.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_tree.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_undo.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_util.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_warning.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_window.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_zoomheight.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_zzdummy.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/tkinter_testing_utils.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/example_noext", + "lib/python3.11/idlelib/idle_test/example_stub.pyi", + "lib/python3.11/idlelib/idle_test/htest.py", + "lib/python3.11/idlelib/idle_test/mock_idle.py", + "lib/python3.11/idlelib/idle_test/mock_tk.py", + "lib/python3.11/idlelib/idle_test/template.py", + "lib/python3.11/idlelib/idle_test/test_autocomplete.py", + "lib/python3.11/idlelib/idle_test/test_autocomplete_w.py", + "lib/python3.11/idlelib/idle_test/test_autoexpand.py", + "lib/python3.11/idlelib/idle_test/test_browser.py", + "lib/python3.11/idlelib/idle_test/test_calltip.py", + "lib/python3.11/idlelib/idle_test/test_calltip_w.py", + "lib/python3.11/idlelib/idle_test/test_codecontext.py", + "lib/python3.11/idlelib/idle_test/test_colorizer.py", + "lib/python3.11/idlelib/idle_test/test_config.py", + "lib/python3.11/idlelib/idle_test/test_config_key.py", + "lib/python3.11/idlelib/idle_test/test_configdialog.py", + "lib/python3.11/idlelib/idle_test/test_debugger.py", + "lib/python3.11/idlelib/idle_test/test_debugger_r.py", + "lib/python3.11/idlelib/idle_test/test_debugobj.py", + "lib/python3.11/idlelib/idle_test/test_debugobj_r.py", + "lib/python3.11/idlelib/idle_test/test_delegator.py", + "lib/python3.11/idlelib/idle_test/test_editmenu.py", + "lib/python3.11/idlelib/idle_test/test_editor.py", + "lib/python3.11/idlelib/idle_test/test_filelist.py", + "lib/python3.11/idlelib/idle_test/test_format.py", + "lib/python3.11/idlelib/idle_test/test_grep.py", + "lib/python3.11/idlelib/idle_test/test_help.py", + "lib/python3.11/idlelib/idle_test/test_help_about.py", + "lib/python3.11/idlelib/idle_test/test_history.py", + "lib/python3.11/idlelib/idle_test/test_hyperparser.py", + "lib/python3.11/idlelib/idle_test/test_iomenu.py", + "lib/python3.11/idlelib/idle_test/test_macosx.py", + "lib/python3.11/idlelib/idle_test/test_mainmenu.py", + "lib/python3.11/idlelib/idle_test/test_multicall.py", + "lib/python3.11/idlelib/idle_test/test_outwin.py", + "lib/python3.11/idlelib/idle_test/test_parenmatch.py", + "lib/python3.11/idlelib/idle_test/test_pathbrowser.py", + "lib/python3.11/idlelib/idle_test/test_percolator.py", + "lib/python3.11/idlelib/idle_test/test_pyparse.py", + "lib/python3.11/idlelib/idle_test/test_pyshell.py", + "lib/python3.11/idlelib/idle_test/test_query.py", + "lib/python3.11/idlelib/idle_test/test_redirector.py", + "lib/python3.11/idlelib/idle_test/test_replace.py", + "lib/python3.11/idlelib/idle_test/test_rpc.py", + "lib/python3.11/idlelib/idle_test/test_run.py", + "lib/python3.11/idlelib/idle_test/test_runscript.py", + "lib/python3.11/idlelib/idle_test/test_scrolledlist.py", + "lib/python3.11/idlelib/idle_test/test_search.py", + "lib/python3.11/idlelib/idle_test/test_searchbase.py", + "lib/python3.11/idlelib/idle_test/test_searchengine.py", + "lib/python3.11/idlelib/idle_test/test_sidebar.py", + "lib/python3.11/idlelib/idle_test/test_squeezer.py", + "lib/python3.11/idlelib/idle_test/test_stackviewer.py", + "lib/python3.11/idlelib/idle_test/test_statusbar.py", + "lib/python3.11/idlelib/idle_test/test_text.py", + "lib/python3.11/idlelib/idle_test/test_textview.py", + "lib/python3.11/idlelib/idle_test/test_tooltip.py", + "lib/python3.11/idlelib/idle_test/test_tree.py", + "lib/python3.11/idlelib/idle_test/test_undo.py", + "lib/python3.11/idlelib/idle_test/test_util.py", + "lib/python3.11/idlelib/idle_test/test_warning.py", + "lib/python3.11/idlelib/idle_test/test_window.py", + "lib/python3.11/idlelib/idle_test/test_zoomheight.py", + "lib/python3.11/idlelib/idle_test/test_zzdummy.py", + "lib/python3.11/idlelib/idle_test/tkinter_testing_utils.py", + "lib/python3.11/idlelib/iomenu.py", + "lib/python3.11/idlelib/macosx.py", + "lib/python3.11/idlelib/mainmenu.py", + "lib/python3.11/idlelib/multicall.py", + "lib/python3.11/idlelib/outwin.py", + "lib/python3.11/idlelib/parenmatch.py", + "lib/python3.11/idlelib/pathbrowser.py", + "lib/python3.11/idlelib/percolator.py", + "lib/python3.11/idlelib/pyparse.py", + "lib/python3.11/idlelib/pyshell.py", + "lib/python3.11/idlelib/query.py", + "lib/python3.11/idlelib/redirector.py", + "lib/python3.11/idlelib/replace.py", + "lib/python3.11/idlelib/rpc.py", + "lib/python3.11/idlelib/run.py", + "lib/python3.11/idlelib/runscript.py", + "lib/python3.11/idlelib/scrolledlist.py", + "lib/python3.11/idlelib/search.py", + "lib/python3.11/idlelib/searchbase.py", + "lib/python3.11/idlelib/searchengine.py", + "lib/python3.11/idlelib/sidebar.py", + "lib/python3.11/idlelib/squeezer.py", + "lib/python3.11/idlelib/stackviewer.py", + "lib/python3.11/idlelib/statusbar.py", + "lib/python3.11/idlelib/textview.py", + "lib/python3.11/idlelib/tooltip.py", + "lib/python3.11/idlelib/tree.py", + "lib/python3.11/idlelib/undo.py", + "lib/python3.11/idlelib/util.py", + "lib/python3.11/idlelib/window.py", + "lib/python3.11/idlelib/zoomheight.py", + "lib/python3.11/idlelib/zzdummy.py", + "lib/python3.11/imaplib.py", + "lib/python3.11/imghdr.py", + "lib/python3.11/imp.py", + "lib/python3.11/importlib/__init__.py", + "lib/python3.11/importlib/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/_abc.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/_bootstrap.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/_bootstrap_external.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/abc.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/machinery.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/readers.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/simple.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/util.cpython-311.pyc", + "lib/python3.11/importlib/_abc.py", + "lib/python3.11/importlib/_bootstrap.py", + "lib/python3.11/importlib/_bootstrap_external.py", + "lib/python3.11/importlib/abc.py", + "lib/python3.11/importlib/machinery.py", + "lib/python3.11/importlib/metadata/__init__.py", + "lib/python3.11/importlib/metadata/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/importlib/metadata/__pycache__/_adapters.cpython-311.pyc", + "lib/python3.11/importlib/metadata/__pycache__/_collections.cpython-311.pyc", + "lib/python3.11/importlib/metadata/__pycache__/_functools.cpython-311.pyc", + "lib/python3.11/importlib/metadata/__pycache__/_itertools.cpython-311.pyc", + "lib/python3.11/importlib/metadata/__pycache__/_meta.cpython-311.pyc", + "lib/python3.11/importlib/metadata/__pycache__/_text.cpython-311.pyc", + "lib/python3.11/importlib/metadata/_adapters.py", + "lib/python3.11/importlib/metadata/_collections.py", + "lib/python3.11/importlib/metadata/_functools.py", + "lib/python3.11/importlib/metadata/_itertools.py", + "lib/python3.11/importlib/metadata/_meta.py", + "lib/python3.11/importlib/metadata/_text.py", + "lib/python3.11/importlib/readers.py", + "lib/python3.11/importlib/resources/__init__.py", + "lib/python3.11/importlib/resources/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/_adapters.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/_common.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/_itertools.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/_legacy.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/abc.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/readers.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/simple.cpython-311.pyc", + "lib/python3.11/importlib/resources/_adapters.py", + "lib/python3.11/importlib/resources/_common.py", + "lib/python3.11/importlib/resources/_itertools.py", + "lib/python3.11/importlib/resources/_legacy.py", + "lib/python3.11/importlib/resources/abc.py", + "lib/python3.11/importlib/resources/readers.py", + "lib/python3.11/importlib/resources/simple.py", + "lib/python3.11/importlib/simple.py", + "lib/python3.11/importlib/util.py", + "lib/python3.11/inspect.py", + "lib/python3.11/io.py", + "lib/python3.11/ipaddress.py", + "lib/python3.11/json/__init__.py", + "lib/python3.11/json/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/json/__pycache__/decoder.cpython-311.pyc", + "lib/python3.11/json/__pycache__/encoder.cpython-311.pyc", + "lib/python3.11/json/__pycache__/scanner.cpython-311.pyc", + "lib/python3.11/json/__pycache__/tool.cpython-311.pyc", + "lib/python3.11/json/decoder.py", + "lib/python3.11/json/encoder.py", + "lib/python3.11/json/scanner.py", + "lib/python3.11/json/tool.py", + "lib/python3.11/keyword.py", + "lib/python3.11/lib-dynload/_asyncio.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_bisect.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_blake2.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_bz2.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_codecs_cn.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_codecs_hk.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_codecs_iso2022.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_codecs_jp.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_codecs_kr.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_codecs_tw.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_contextvars.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_crypt.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_csv.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_ctypes.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_ctypes_test.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_curses.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_curses_panel.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_datetime.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_dbm.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_decimal.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_elementtree.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_hashlib.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_heapq.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_json.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_lsprof.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_lzma.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_md5.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_multibytecodec.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_multiprocessing.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_opcode.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_pickle.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_posixshmem.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_posixsubprocess.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_queue.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_random.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_scproxy.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_sha1.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_sha256.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_sha3.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_sha512.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_socket.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_sqlite3.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_ssl.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_statistics.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_struct.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_testbuffer.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_testcapi.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_testclinic.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_testimportmultiple.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_testinternalcapi.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_testmultiphase.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_tkinter.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_typing.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_uuid.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_xxsubinterpreters.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_xxtestfuzz.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_zoneinfo.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/array.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/audioop.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/binascii.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/cmath.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/fcntl.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/grp.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/math.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/mmap.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/nis.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/pyexpat.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/readline.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/resource.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/select.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/syslog.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/termios.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/unicodedata.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/xxlimited.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/xxlimited_35.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/zlib.cpython-311-darwin.so", + "lib/python3.11/lib2to3/Grammar.txt", + "lib/python3.11/lib2to3/Grammar3.11.5.final.0.pickle", + "lib/python3.11/lib2to3/PatternGrammar.txt", + "lib/python3.11/lib2to3/PatternGrammar3.11.5.final.0.pickle", + "lib/python3.11/lib2to3/__init__.py", + "lib/python3.11/lib2to3/__main__.py", + "lib/python3.11/lib2to3/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/btm_matcher.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/btm_utils.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/fixer_base.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/fixer_util.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/main.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/patcomp.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/pygram.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/pytree.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/refactor.cpython-311.pyc", + "lib/python3.11/lib2to3/btm_matcher.py", + "lib/python3.11/lib2to3/btm_utils.py", + "lib/python3.11/lib2to3/fixer_base.py", + "lib/python3.11/lib2to3/fixer_util.py", + "lib/python3.11/lib2to3/fixes/__init__.py", + "lib/python3.11/lib2to3/fixes/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_apply.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_asserts.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_basestring.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_buffer.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_dict.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_except.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_exec.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_execfile.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_exitfunc.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_filter.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_funcattrs.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_future.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_getcwdu.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_has_key.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_idioms.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_import.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_imports.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_imports2.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_input.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_intern.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_isinstance.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_itertools.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_itertools_imports.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_long.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_map.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_metaclass.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_methodattrs.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_ne.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_next.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_nonzero.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_numliterals.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_operator.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_paren.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_print.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_raise.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_raw_input.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_reduce.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_reload.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_renames.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_repr.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_set_literal.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_standarderror.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_sys_exc.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_throw.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_tuple_params.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_types.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_unicode.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_urllib.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_ws_comma.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_xrange.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_xreadlines.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_zip.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/fix_apply.py", + "lib/python3.11/lib2to3/fixes/fix_asserts.py", + "lib/python3.11/lib2to3/fixes/fix_basestring.py", + "lib/python3.11/lib2to3/fixes/fix_buffer.py", + "lib/python3.11/lib2to3/fixes/fix_dict.py", + "lib/python3.11/lib2to3/fixes/fix_except.py", + "lib/python3.11/lib2to3/fixes/fix_exec.py", + "lib/python3.11/lib2to3/fixes/fix_execfile.py", + "lib/python3.11/lib2to3/fixes/fix_exitfunc.py", + "lib/python3.11/lib2to3/fixes/fix_filter.py", + "lib/python3.11/lib2to3/fixes/fix_funcattrs.py", + "lib/python3.11/lib2to3/fixes/fix_future.py", + "lib/python3.11/lib2to3/fixes/fix_getcwdu.py", + "lib/python3.11/lib2to3/fixes/fix_has_key.py", + "lib/python3.11/lib2to3/fixes/fix_idioms.py", + "lib/python3.11/lib2to3/fixes/fix_import.py", + "lib/python3.11/lib2to3/fixes/fix_imports.py", + "lib/python3.11/lib2to3/fixes/fix_imports2.py", + "lib/python3.11/lib2to3/fixes/fix_input.py", + "lib/python3.11/lib2to3/fixes/fix_intern.py", + "lib/python3.11/lib2to3/fixes/fix_isinstance.py", + "lib/python3.11/lib2to3/fixes/fix_itertools.py", + "lib/python3.11/lib2to3/fixes/fix_itertools_imports.py", + "lib/python3.11/lib2to3/fixes/fix_long.py", + "lib/python3.11/lib2to3/fixes/fix_map.py", + "lib/python3.11/lib2to3/fixes/fix_metaclass.py", + "lib/python3.11/lib2to3/fixes/fix_methodattrs.py", + "lib/python3.11/lib2to3/fixes/fix_ne.py", + "lib/python3.11/lib2to3/fixes/fix_next.py", + "lib/python3.11/lib2to3/fixes/fix_nonzero.py", + "lib/python3.11/lib2to3/fixes/fix_numliterals.py", + "lib/python3.11/lib2to3/fixes/fix_operator.py", + "lib/python3.11/lib2to3/fixes/fix_paren.py", + "lib/python3.11/lib2to3/fixes/fix_print.py", + "lib/python3.11/lib2to3/fixes/fix_raise.py", + "lib/python3.11/lib2to3/fixes/fix_raw_input.py", + "lib/python3.11/lib2to3/fixes/fix_reduce.py", + "lib/python3.11/lib2to3/fixes/fix_reload.py", + "lib/python3.11/lib2to3/fixes/fix_renames.py", + "lib/python3.11/lib2to3/fixes/fix_repr.py", + "lib/python3.11/lib2to3/fixes/fix_set_literal.py", + "lib/python3.11/lib2to3/fixes/fix_standarderror.py", + "lib/python3.11/lib2to3/fixes/fix_sys_exc.py", + "lib/python3.11/lib2to3/fixes/fix_throw.py", + "lib/python3.11/lib2to3/fixes/fix_tuple_params.py", + "lib/python3.11/lib2to3/fixes/fix_types.py", + "lib/python3.11/lib2to3/fixes/fix_unicode.py", + "lib/python3.11/lib2to3/fixes/fix_urllib.py", + "lib/python3.11/lib2to3/fixes/fix_ws_comma.py", + "lib/python3.11/lib2to3/fixes/fix_xrange.py", + "lib/python3.11/lib2to3/fixes/fix_xreadlines.py", + "lib/python3.11/lib2to3/fixes/fix_zip.py", + "lib/python3.11/lib2to3/main.py", + "lib/python3.11/lib2to3/patcomp.py", + "lib/python3.11/lib2to3/pgen2/__init__.py", + "lib/python3.11/lib2to3/pgen2/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/conv.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/driver.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/grammar.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/literals.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/parse.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/pgen.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/token.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/tokenize.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/conv.py", + "lib/python3.11/lib2to3/pgen2/driver.py", + "lib/python3.11/lib2to3/pgen2/grammar.py", + "lib/python3.11/lib2to3/pgen2/literals.py", + "lib/python3.11/lib2to3/pgen2/parse.py", + "lib/python3.11/lib2to3/pgen2/pgen.py", + "lib/python3.11/lib2to3/pgen2/token.py", + "lib/python3.11/lib2to3/pgen2/tokenize.py", + "lib/python3.11/lib2to3/pygram.py", + "lib/python3.11/lib2to3/pytree.py", + "lib/python3.11/lib2to3/refactor.py", + "lib/python3.11/lib2to3/tests/__init__.py", + "lib/python3.11/lib2to3/tests/__main__.py", + "lib/python3.11/lib2to3/tests/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/pytree_idempotency.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/support.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_all_fixers.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_fixers.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_main.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_parser.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_pytree.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_refactor.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_util.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/README", + "lib/python3.11/lib2to3/tests/data/__pycache__/infinite_recursion.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/__pycache__/py3_test_grammar.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/bom.py", + "lib/python3.11/lib2to3/tests/data/crlf.py", + "lib/python3.11/lib2to3/tests/data/different_encoding.py", + "lib/python3.11/lib2to3/tests/data/false_encoding.py", + "lib/python3.11/lib2to3/tests/data/fixers/__pycache__/bad_order.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/__pycache__/no_fixer_cls.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/__pycache__/parrot_example.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/bad_order.py", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__init__.py", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__pycache__/fix_explicit.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__pycache__/fix_first.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__pycache__/fix_last.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__pycache__/fix_parrot.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__pycache__/fix_preorder.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/fix_explicit.py", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/fix_first.py", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/fix_last.py", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/fix_parrot.py", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/fix_preorder.py", + "lib/python3.11/lib2to3/tests/data/fixers/no_fixer_cls.py", + "lib/python3.11/lib2to3/tests/data/fixers/parrot_example.py", + "lib/python3.11/lib2to3/tests/data/infinite_recursion.py", + "lib/python3.11/lib2to3/tests/data/py2_test_grammar.py", + "lib/python3.11/lib2to3/tests/data/py3_test_grammar.py", + "lib/python3.11/lib2to3/tests/pytree_idempotency.py", + "lib/python3.11/lib2to3/tests/support.py", + "lib/python3.11/lib2to3/tests/test_all_fixers.py", + "lib/python3.11/lib2to3/tests/test_fixers.py", + "lib/python3.11/lib2to3/tests/test_main.py", + "lib/python3.11/lib2to3/tests/test_parser.py", + "lib/python3.11/lib2to3/tests/test_pytree.py", + "lib/python3.11/lib2to3/tests/test_refactor.py", + "lib/python3.11/lib2to3/tests/test_util.py", + "lib/python3.11/linecache.py", + "lib/python3.11/locale.py", + "lib/python3.11/logging/__init__.py", + "lib/python3.11/logging/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/logging/__pycache__/config.cpython-311.pyc", + "lib/python3.11/logging/__pycache__/handlers.cpython-311.pyc", + "lib/python3.11/logging/config.py", + "lib/python3.11/logging/handlers.py", + "lib/python3.11/lzma.py", + "lib/python3.11/mailbox.py", + "lib/python3.11/mailcap.py", + "lib/python3.11/mimetypes.py", + "lib/python3.11/modulefinder.py", + "lib/python3.11/multiprocessing/__init__.py", + "lib/python3.11/multiprocessing/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/connection.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/context.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/forkserver.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/heap.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/managers.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/pool.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/popen_fork.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/popen_forkserver.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/popen_spawn_posix.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/popen_spawn_win32.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/process.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/queues.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/reduction.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/resource_sharer.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/resource_tracker.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/shared_memory.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/sharedctypes.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/spawn.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/synchronize.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/util.cpython-311.pyc", + "lib/python3.11/multiprocessing/connection.py", + "lib/python3.11/multiprocessing/context.py", + "lib/python3.11/multiprocessing/dummy/__init__.py", + "lib/python3.11/multiprocessing/dummy/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/multiprocessing/dummy/__pycache__/connection.cpython-311.pyc", + "lib/python3.11/multiprocessing/dummy/connection.py", + "lib/python3.11/multiprocessing/forkserver.py", + "lib/python3.11/multiprocessing/heap.py", + "lib/python3.11/multiprocessing/managers.py", + "lib/python3.11/multiprocessing/pool.py", + "lib/python3.11/multiprocessing/popen_fork.py", + "lib/python3.11/multiprocessing/popen_forkserver.py", + "lib/python3.11/multiprocessing/popen_spawn_posix.py", + "lib/python3.11/multiprocessing/popen_spawn_win32.py", + "lib/python3.11/multiprocessing/process.py", + "lib/python3.11/multiprocessing/queues.py", + "lib/python3.11/multiprocessing/reduction.py", + "lib/python3.11/multiprocessing/resource_sharer.py", + "lib/python3.11/multiprocessing/resource_tracker.py", + "lib/python3.11/multiprocessing/shared_memory.py", + "lib/python3.11/multiprocessing/sharedctypes.py", + "lib/python3.11/multiprocessing/spawn.py", + "lib/python3.11/multiprocessing/synchronize.py", + "lib/python3.11/multiprocessing/util.py", + "lib/python3.11/netrc.py", + "lib/python3.11/nntplib.py", + "lib/python3.11/ntpath.py", + "lib/python3.11/nturl2path.py", + "lib/python3.11/numbers.py", + "lib/python3.11/opcode.py", + "lib/python3.11/operator.py", + "lib/python3.11/optparse.py", + "lib/python3.11/os.py", + "lib/python3.11/pathlib.py", + "lib/python3.11/pdb.py", + "lib/python3.11/pickle.py", + "lib/python3.11/pickletools.py", + "lib/python3.11/pipes.py", + "lib/python3.11/pkgutil.py", + "lib/python3.11/platform.py", + "lib/python3.11/plistlib.py", + "lib/python3.11/poplib.py", + "lib/python3.11/posixpath.py", + "lib/python3.11/pprint.py", + "lib/python3.11/profile.py", + "lib/python3.11/pstats.py", + "lib/python3.11/pty.py", + "lib/python3.11/py_compile.py", + "lib/python3.11/pyclbr.py", + "lib/python3.11/pydoc.py", + "lib/python3.11/pydoc_data/__init__.py", + "lib/python3.11/pydoc_data/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/pydoc_data/__pycache__/topics.cpython-311.pyc", + "lib/python3.11/pydoc_data/_pydoc.css", + "lib/python3.11/pydoc_data/topics.py", + "lib/python3.11/queue.py", + "lib/python3.11/quopri.py", + "lib/python3.11/random.py", + "lib/python3.11/re/__init__.py", + "lib/python3.11/re/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/re/__pycache__/_casefix.cpython-311.pyc", + "lib/python3.11/re/__pycache__/_compiler.cpython-311.pyc", + "lib/python3.11/re/__pycache__/_constants.cpython-311.pyc", + "lib/python3.11/re/__pycache__/_parser.cpython-311.pyc", + "lib/python3.11/re/_casefix.py", + "lib/python3.11/re/_compiler.py", + "lib/python3.11/re/_constants.py", + "lib/python3.11/re/_parser.py", + "lib/python3.11/reprlib.py", + "lib/python3.11/rlcompleter.py", + "lib/python3.11/runpy.py", + "lib/python3.11/sched.py", + "lib/python3.11/secrets.py", + "lib/python3.11/selectors.py", + "lib/python3.11/shelve.py", + "lib/python3.11/shlex.py", + "lib/python3.11/shutil.py", + "lib/python3.11/signal.py", + "lib/python3.11/site-packages/README.txt", + "lib/python3.11/site.py", + "lib/python3.11/smtpd.py", + "lib/python3.11/smtplib.py", + "lib/python3.11/sndhdr.py", + "lib/python3.11/socket.py", + "lib/python3.11/socketserver.py", + "lib/python3.11/sqlite3/__init__.py", + "lib/python3.11/sqlite3/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/sqlite3/__pycache__/dbapi2.cpython-311.pyc", + "lib/python3.11/sqlite3/__pycache__/dump.cpython-311.pyc", + "lib/python3.11/sqlite3/dbapi2.py", + "lib/python3.11/sqlite3/dump.py", + "lib/python3.11/sre_compile.py", + "lib/python3.11/sre_constants.py", + "lib/python3.11/sre_parse.py", + "lib/python3.11/ssl.py", + "lib/python3.11/stat.py", + "lib/python3.11/statistics.py", + "lib/python3.11/string.py", + "lib/python3.11/stringprep.py", + "lib/python3.11/struct.py", + "lib/python3.11/subprocess.py", + "lib/python3.11/sunau.py", + "lib/python3.11/symtable.py", + "lib/python3.11/sysconfig.py", + "lib/python3.11/tabnanny.py", + "lib/python3.11/tarfile.py", + "lib/python3.11/telnetlib.py", + "lib/python3.11/tempfile.py", + "lib/python3.11/test/__init__.py", + "lib/python3.11/test/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/test/__pycache__/test_script_helper.cpython-311.pyc", + "lib/python3.11/test/__pycache__/test_support.cpython-311.pyc", + "lib/python3.11/test/support/__init__.py", + "lib/python3.11/test/support/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/bytecode_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/hashlib_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/import_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/interpreters.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/logging_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/os_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/script_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/socket_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/testresult.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/threading_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/warnings_helper.cpython-311.pyc", + "lib/python3.11/test/support/bytecode_helper.py", + "lib/python3.11/test/support/hashlib_helper.py", + "lib/python3.11/test/support/import_helper.py", + "lib/python3.11/test/support/interpreters.py", + "lib/python3.11/test/support/logging_helper.py", + "lib/python3.11/test/support/os_helper.py", + "lib/python3.11/test/support/script_helper.py", + "lib/python3.11/test/support/socket_helper.py", + "lib/python3.11/test/support/testresult.py", + "lib/python3.11/test/support/threading_helper.py", + "lib/python3.11/test/support/warnings_helper.py", + "lib/python3.11/test/test_script_helper.py", + "lib/python3.11/test/test_support.py", + "lib/python3.11/textwrap.py", + "lib/python3.11/this.py", + "lib/python3.11/threading.py", + "lib/python3.11/timeit.py", + "lib/python3.11/tkinter/__init__.py", + "lib/python3.11/tkinter/__main__.py", + "lib/python3.11/tkinter/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/colorchooser.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/commondialog.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/constants.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/dialog.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/dnd.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/filedialog.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/font.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/messagebox.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/scrolledtext.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/simpledialog.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/tix.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/ttk.cpython-311.pyc", + "lib/python3.11/tkinter/colorchooser.py", + "lib/python3.11/tkinter/commondialog.py", + "lib/python3.11/tkinter/constants.py", + "lib/python3.11/tkinter/dialog.py", + "lib/python3.11/tkinter/dnd.py", + "lib/python3.11/tkinter/filedialog.py", + "lib/python3.11/tkinter/font.py", + "lib/python3.11/tkinter/messagebox.py", + "lib/python3.11/tkinter/scrolledtext.py", + "lib/python3.11/tkinter/simpledialog.py", + "lib/python3.11/tkinter/tix.py", + "lib/python3.11/tkinter/ttk.py", + "lib/python3.11/token.py", + "lib/python3.11/tokenize.py", + "lib/python3.11/tomllib/__init__.py", + "lib/python3.11/tomllib/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/tomllib/__pycache__/_parser.cpython-311.pyc", + "lib/python3.11/tomllib/__pycache__/_re.cpython-311.pyc", + "lib/python3.11/tomllib/__pycache__/_types.cpython-311.pyc", + "lib/python3.11/tomllib/_parser.py", + "lib/python3.11/tomllib/_re.py", + "lib/python3.11/tomllib/_types.py", + "lib/python3.11/trace.py", + "lib/python3.11/traceback.py", + "lib/python3.11/tracemalloc.py", + "lib/python3.11/tty.py", + "lib/python3.11/turtle.py", + "lib/python3.11/turtledemo/__init__.py", + "lib/python3.11/turtledemo/__main__.py", + "lib/python3.11/turtledemo/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/bytedesign.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/chaos.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/clock.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/colormixer.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/forest.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/fractalcurves.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/lindenmayer.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/minimal_hanoi.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/nim.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/paint.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/peace.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/penrose.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/planet_and_moon.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/rosette.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/round_dance.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/sorting_animate.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/tree.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/two_canvases.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/yinyang.cpython-311.pyc", + "lib/python3.11/turtledemo/bytedesign.py", + "lib/python3.11/turtledemo/chaos.py", + "lib/python3.11/turtledemo/clock.py", + "lib/python3.11/turtledemo/colormixer.py", + "lib/python3.11/turtledemo/forest.py", + "lib/python3.11/turtledemo/fractalcurves.py", + "lib/python3.11/turtledemo/lindenmayer.py", + "lib/python3.11/turtledemo/minimal_hanoi.py", + "lib/python3.11/turtledemo/nim.py", + "lib/python3.11/turtledemo/paint.py", + "lib/python3.11/turtledemo/peace.py", + "lib/python3.11/turtledemo/penrose.py", + "lib/python3.11/turtledemo/planet_and_moon.py", + "lib/python3.11/turtledemo/rosette.py", + "lib/python3.11/turtledemo/round_dance.py", + "lib/python3.11/turtledemo/sorting_animate.py", + "lib/python3.11/turtledemo/tree.py", + "lib/python3.11/turtledemo/turtle.cfg", + "lib/python3.11/turtledemo/two_canvases.py", + "lib/python3.11/turtledemo/yinyang.py", + "lib/python3.11/types.py", + "lib/python3.11/typing.py", + "lib/python3.11/unittest/__init__.py", + "lib/python3.11/unittest/__main__.py", + "lib/python3.11/unittest/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/_log.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/async_case.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/case.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/loader.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/main.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/mock.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/result.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/runner.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/signals.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/suite.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/util.cpython-311.pyc", + "lib/python3.11/unittest/_log.py", + "lib/python3.11/unittest/async_case.py", + "lib/python3.11/unittest/case.py", + "lib/python3.11/unittest/loader.py", + "lib/python3.11/unittest/main.py", + "lib/python3.11/unittest/mock.py", + "lib/python3.11/unittest/result.py", + "lib/python3.11/unittest/runner.py", + "lib/python3.11/unittest/signals.py", + "lib/python3.11/unittest/suite.py", + "lib/python3.11/unittest/util.py", + "lib/python3.11/urllib/__init__.py", + "lib/python3.11/urllib/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/urllib/__pycache__/error.cpython-311.pyc", + "lib/python3.11/urllib/__pycache__/parse.cpython-311.pyc", + "lib/python3.11/urllib/__pycache__/request.cpython-311.pyc", + "lib/python3.11/urllib/__pycache__/response.cpython-311.pyc", + "lib/python3.11/urllib/__pycache__/robotparser.cpython-311.pyc", + "lib/python3.11/urllib/error.py", + "lib/python3.11/urllib/parse.py", + "lib/python3.11/urllib/request.py", + "lib/python3.11/urllib/response.py", + "lib/python3.11/urllib/robotparser.py", + "lib/python3.11/uu.py", + "lib/python3.11/uuid.py", + "lib/python3.11/venv/__init__.py", + "lib/python3.11/venv/__main__.py", + "lib/python3.11/venv/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/venv/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/venv/scripts/common/Activate.ps1", + "lib/python3.11/venv/scripts/common/activate", + "lib/python3.11/venv/scripts/posix/activate.csh", + "lib/python3.11/venv/scripts/posix/activate.fish", + "lib/python3.11/warnings.py", + "lib/python3.11/wave.py", + "lib/python3.11/weakref.py", + "lib/python3.11/webbrowser.py", + "lib/python3.11/wsgiref/__init__.py", + "lib/python3.11/wsgiref/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/wsgiref/__pycache__/handlers.cpython-311.pyc", + "lib/python3.11/wsgiref/__pycache__/headers.cpython-311.pyc", + "lib/python3.11/wsgiref/__pycache__/simple_server.cpython-311.pyc", + "lib/python3.11/wsgiref/__pycache__/types.cpython-311.pyc", + "lib/python3.11/wsgiref/__pycache__/util.cpython-311.pyc", + "lib/python3.11/wsgiref/__pycache__/validate.cpython-311.pyc", + "lib/python3.11/wsgiref/handlers.py", + "lib/python3.11/wsgiref/headers.py", + "lib/python3.11/wsgiref/simple_server.py", + "lib/python3.11/wsgiref/types.py", + "lib/python3.11/wsgiref/util.py", + "lib/python3.11/wsgiref/validate.py", + "lib/python3.11/xdrlib.py", + "lib/python3.11/xml/__init__.py", + "lib/python3.11/xml/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/xml/dom/NodeFilter.py", + "lib/python3.11/xml/dom/__init__.py", + "lib/python3.11/xml/dom/__pycache__/NodeFilter.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/domreg.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/expatbuilder.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/minicompat.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/minidom.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/pulldom.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/xmlbuilder.cpython-311.pyc", + "lib/python3.11/xml/dom/domreg.py", + "lib/python3.11/xml/dom/expatbuilder.py", + "lib/python3.11/xml/dom/minicompat.py", + "lib/python3.11/xml/dom/minidom.py", + "lib/python3.11/xml/dom/pulldom.py", + "lib/python3.11/xml/dom/xmlbuilder.py", + "lib/python3.11/xml/etree/ElementInclude.py", + "lib/python3.11/xml/etree/ElementPath.py", + "lib/python3.11/xml/etree/ElementTree.py", + "lib/python3.11/xml/etree/__init__.py", + "lib/python3.11/xml/etree/__pycache__/ElementInclude.cpython-311.pyc", + "lib/python3.11/xml/etree/__pycache__/ElementPath.cpython-311.pyc", + "lib/python3.11/xml/etree/__pycache__/ElementTree.cpython-311.pyc", + "lib/python3.11/xml/etree/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/xml/etree/__pycache__/cElementTree.cpython-311.pyc", + "lib/python3.11/xml/etree/cElementTree.py", + "lib/python3.11/xml/parsers/__init__.py", + "lib/python3.11/xml/parsers/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/xml/parsers/__pycache__/expat.cpython-311.pyc", + "lib/python3.11/xml/parsers/expat.py", + "lib/python3.11/xml/sax/__init__.py", + "lib/python3.11/xml/sax/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/xml/sax/__pycache__/_exceptions.cpython-311.pyc", + "lib/python3.11/xml/sax/__pycache__/expatreader.cpython-311.pyc", + "lib/python3.11/xml/sax/__pycache__/handler.cpython-311.pyc", + "lib/python3.11/xml/sax/__pycache__/saxutils.cpython-311.pyc", + "lib/python3.11/xml/sax/__pycache__/xmlreader.cpython-311.pyc", + "lib/python3.11/xml/sax/_exceptions.py", + "lib/python3.11/xml/sax/expatreader.py", + "lib/python3.11/xml/sax/handler.py", + "lib/python3.11/xml/sax/saxutils.py", + "lib/python3.11/xml/sax/xmlreader.py", + "lib/python3.11/xmlrpc/__init__.py", + "lib/python3.11/xmlrpc/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/xmlrpc/__pycache__/client.cpython-311.pyc", + "lib/python3.11/xmlrpc/__pycache__/server.cpython-311.pyc", + "lib/python3.11/xmlrpc/client.py", + "lib/python3.11/xmlrpc/server.py", + "lib/python3.11/zipapp.py", + "lib/python3.11/zipfile.py", + "lib/python3.11/zipimport.py", + "lib/python3.11/zoneinfo/__init__.py", + "lib/python3.11/zoneinfo/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/zoneinfo/__pycache__/_common.cpython-311.pyc", + "lib/python3.11/zoneinfo/__pycache__/_tzpath.cpython-311.pyc", + "lib/python3.11/zoneinfo/__pycache__/_zoneinfo.cpython-311.pyc", + "lib/python3.11/zoneinfo/_common.py", + "lib/python3.11/zoneinfo/_tzpath.py", + "lib/python3.11/zoneinfo/_zoneinfo.py", + "share/man/man1/python3.1", + "share/man/man1/python3.11.1" + ], + "fn": "python-3.11.5-hb885b13_0.conda", + "license": "PSF-2.0", + "link": { + "source": "/Users/donjayamanne/miniconda3/pkgs/python-3.11.5-hb885b13_0", + "type": 1 + }, + "md5": "6f528bdf159139704ab578df329dee70", + "name": "python", + "package_tarball_full_path": "/Users/donjayamanne/miniconda3/pkgs/python-3.11.5-hb885b13_0.conda", + "paths_data": { + "paths": [ + { + "_path": "bin/2to3-3.11", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "0eb2a68730c6910e60374b6231605a8fe9e4b1ef889fe6bf6955f00607263096", + "sha256_in_prefix": "db867f95c7e5e3d486928ab316afc7ee322118eace698a5fd9c35dd62a7c77e0", + "size_in_bytes": 347 + }, + { + "_path": "bin/idle3.11", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "9e7c5708a61f7b75f0fa84106b3698fc81e0632eea511e9635cc012d95e8ccec", + "sha256_in_prefix": "2daba7590451fb1240f116ad6c50dfb3fe12ab0d0c90450453672dc5f7992345", + "size_in_bytes": 345 + }, + { + "_path": "bin/pydoc3.11", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "af4b3f428ef9f3708c93b8d6a9c9b211c3e531ad480bac0644e18be3d675de15", + "sha256_in_prefix": "29373357dfd57b431809af8ab17e111c47011f8ed325e4b74075551cfd728dc0", + "size_in_bytes": 330 + }, + { + "_path": "bin/python3.11", + "file_mode": "binary", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "ea6aacf75da0a6e048c0acc7d6f9e7e67f4af4af635965ab25aad7956ed07b40", + "sha256_in_prefix": "5309a862e537b7e20d382f479a016995d2b60e7382673e57a98a8644d62a011a", + "size_in_bytes": 6019216 + }, + { + "_path": "bin/python3.11-config", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "48e7f0c28858cd7dd610f089ebce9d090b15273d6f965b5a665418880b9ad017", + "sha256_in_prefix": "178fb9ee8ae853adc2840a51642fbdfe239d4c189e632be37552f83ee881a9d5", + "size_in_bytes": 2289 + }, + { + "_path": "lib/libpython3.11.dylib", + "file_mode": "binary", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "813d7657214af2a40d6f98ed5ad6cd25bdaf9e1b52299dcc22457b6431f46226", + "sha256_in_prefix": "690e286e2a59750500c44dd3eb0fcc3f607604fd1a24a20da1d5877d9ac09cd0", + "size_in_bytes": 6019152 + }, + { + "_path": "lib/pkgconfig/python-3.11-embed.pc", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "5ce92c1022c5d4af2383596197f518fc12687f8f32bf3f42b96c7ee22ac9dc8d", + "sha256_in_prefix": "2ccb5bf00ff727b7941ad8be49360b25f86860ae2f49931743f628dafc9caac1", + "size_in_bytes": 558 + }, + { + "_path": "lib/pkgconfig/python-3.11.pc", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "46ac102bbce0c0b1ff9cabf905c7d44f3e3ff2911127a08b620cd1231a8a70c4", + "sha256_in_prefix": "01f5747180571713792597c3a4b2278f2e2b0e46aaa926e95cc007a373b589aa", + "size_in_bytes": 531 + }, + { + "_path": "lib/python3.11/_sysconfigdata__darwin_darwin.py", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "49c03531794c8e17dbf3bc3b28b5c731c19647b8430e74a7f05967863a73cd89", + "sha256_in_prefix": "d1fed13472229dad30d35c5cd3e497e4cbb16e5aa2fb66abc1919d55f9fa415c", + "size_in_bytes": 85118 + }, + { + "_path": "lib/python3.11/_sysconfigdata__darwin_darwin.py.orig", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "4e1b965e2665c46a97f8df38da25dc3e2636e6e62a2b525d38bfd9304978f7c9", + "sha256_in_prefix": "dbc742fac6650f3e6159c08dc75d77bbe5704af80a671c3ca09aa3e061ddd992", + "size_in_bytes": 97066 + }, + { + "_path": "lib/python3.11/_sysconfigdata_arm64_apple_darwin20_0_0.py", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "810dab3b07b0633c5d5b180351daecb4d1ebf51ee2216019c5dc08afb5c54fd1", + "sha256_in_prefix": "44ad76b97a9bc58243271c310c497b085745bbe5451b4cbf60d6afb475b49465", + "size_in_bytes": 87139 + }, + { + "_path": "lib/python3.11/config-3.11-darwin/Makefile", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "2a78da281edcb631ddd844a43a4e30d166eb6b13651e43a1664f0e1aa9384d3b", + "sha256_in_prefix": "fee789b4cc5318f60fd6d1b4294c7789bf333b55d6c4f8afa1dd4476e7fa4d5b", + "size_in_bytes": 126865 + }, + { + "_path": "lib/python3.11/config-3.11-darwin/python-config.py", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "48e7f0c28858cd7dd610f089ebce9d090b15273d6f965b5a665418880b9ad017", + "sha256_in_prefix": "178fb9ee8ae853adc2840a51642fbdfe239d4c189e632be37552f83ee881a9d5", + "size_in_bytes": 2289 + } + ], + "paths_version": 1 + }, + "requested_spec": "defaults/osx-arm64::python==3.11.5=hb885b13_0[md5=6f528bdf159139704ab578df329dee70]", + "sha256": "e6ae393f2072f9857ffbd78c56ea28ca345beeba4f0ab2e0d5975e424f71b252", + "size": 16161485, + "subdir": "osx-arm64", + "timestamp": 1694439441000, + "track_features": "", + "url": "https://repo.anaconda.com/pkgs/main/osx-arm64/python-3.11.5-hb885b13_0.conda", + "version": "3.11.5" +} \ No newline at end of file diff --git a/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/anaconda-4.0.0/conda-meta/python-slugify-5.0.2-pyhd3eb1b0_0.json b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/anaconda-4.0.0/conda-meta/python-slugify-5.0.2-pyhd3eb1b0_0.json new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/anaconda-4.0.0/envs/.conda_envs_dir_test b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/anaconda-4.0.0/envs/.conda_envs_dir_test new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/anaconda-4.0.0/envs/one/conda-meta/python-3.11.1-hdf0ec26_0_cpython.json b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/anaconda-4.0.0/envs/one/conda-meta/python-3.11.1-hdf0ec26_0_cpython.json new file mode 100644 index 000000000000..d1a31fecc362 --- /dev/null +++ b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/anaconda-4.0.0/envs/one/conda-meta/python-3.11.1-hdf0ec26_0_cpython.json @@ -0,0 +1,2281 @@ +10.1.1 +{ + "build": "hb885b13_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/osx-arm64", + "constrains": [], + "depends": [ + "bzip2 >=1.0.8,<2.0a0", + "libffi >=3.4,<3.5", + "libffi >=3.4,<4.0a0", + "ncurses >=6.4,<7.0a0", + "openssl >=3.0.10,<4.0a0", + "readline >=8.1.2,<9.0a0", + "sqlite >=3.41.2,<4.0a0", + "tk >=8.6.12,<8.7.0a0", + "tzdata", + "xz >=5.4.2,<6.0a0", + "zlib >=1.2.13,<1.3.0a0", + "pip" + ], + "extracted_package_dir": "/Users/donjayamanne/miniconda3/pkgs/python-3.11.5-hb885b13_0", + "features": "", + "files": [ + "bin/2to3", + "bin/2to3-3.11", + "bin/idle3", + "bin/idle3.11", + "bin/pydoc", + "bin/pydoc3", + "bin/pydoc3.11", + "bin/python", + "bin/python3", + "bin/python3-config", + "bin/python3.1", + "bin/python3.11", + "bin/python3.11-config", + "include/python3.11/Python.h", + "include/python3.11/abstract.h", + "include/python3.11/bltinmodule.h", + "include/python3.11/boolobject.h", + "include/python3.11/bytearrayobject.h", + "include/python3.11/bytesobject.h", + "include/python3.11/ceval.h", + "include/python3.11/codecs.h", + "include/python3.11/compile.h", + "include/python3.11/complexobject.h", + "include/python3.11/cpython/abstract.h", + "include/python3.11/cpython/bytearrayobject.h", + "include/python3.11/cpython/bytesobject.h", + "include/python3.11/cpython/cellobject.h", + "include/python3.11/cpython/ceval.h", + "include/python3.11/cpython/classobject.h", + "include/python3.11/cpython/code.h", + "include/python3.11/cpython/compile.h", + "include/python3.11/cpython/complexobject.h", + "include/python3.11/cpython/context.h", + "include/python3.11/cpython/descrobject.h", + "include/python3.11/cpython/dictobject.h", + "include/python3.11/cpython/fileobject.h", + "include/python3.11/cpython/fileutils.h", + "include/python3.11/cpython/floatobject.h", + "include/python3.11/cpython/frameobject.h", + "include/python3.11/cpython/funcobject.h", + "include/python3.11/cpython/genobject.h", + "include/python3.11/cpython/import.h", + "include/python3.11/cpython/initconfig.h", + "include/python3.11/cpython/listobject.h", + "include/python3.11/cpython/longintrepr.h", + "include/python3.11/cpython/longobject.h", + "include/python3.11/cpython/methodobject.h", + "include/python3.11/cpython/modsupport.h", + "include/python3.11/cpython/object.h", + "include/python3.11/cpython/objimpl.h", + "include/python3.11/cpython/odictobject.h", + "include/python3.11/cpython/picklebufobject.h", + "include/python3.11/cpython/pthread_stubs.h", + "include/python3.11/cpython/pyctype.h", + "include/python3.11/cpython/pydebug.h", + "include/python3.11/cpython/pyerrors.h", + "include/python3.11/cpython/pyfpe.h", + "include/python3.11/cpython/pyframe.h", + "include/python3.11/cpython/pylifecycle.h", + "include/python3.11/cpython/pymem.h", + "include/python3.11/cpython/pystate.h", + "include/python3.11/cpython/pythonrun.h", + "include/python3.11/cpython/pythread.h", + "include/python3.11/cpython/pytime.h", + "include/python3.11/cpython/setobject.h", + "include/python3.11/cpython/sysmodule.h", + "include/python3.11/cpython/traceback.h", + "include/python3.11/cpython/tupleobject.h", + "include/python3.11/cpython/unicodeobject.h", + "include/python3.11/cpython/warnings.h", + "include/python3.11/cpython/weakrefobject.h", + "include/python3.11/datetime.h", + "include/python3.11/descrobject.h", + "include/python3.11/dictobject.h", + "include/python3.11/dynamic_annotations.h", + "include/python3.11/enumobject.h", + "include/python3.11/errcode.h", + "include/python3.11/exports.h", + "include/python3.11/fileobject.h", + "include/python3.11/fileutils.h", + "include/python3.11/floatobject.h", + "include/python3.11/frameobject.h", + "include/python3.11/genericaliasobject.h", + "include/python3.11/import.h", + "include/python3.11/internal/pycore_abstract.h", + "include/python3.11/internal/pycore_accu.h", + "include/python3.11/internal/pycore_asdl.h", + "include/python3.11/internal/pycore_ast.h", + "include/python3.11/internal/pycore_ast_state.h", + "include/python3.11/internal/pycore_atomic.h", + "include/python3.11/internal/pycore_atomic_funcs.h", + "include/python3.11/internal/pycore_bitutils.h", + "include/python3.11/internal/pycore_blocks_output_buffer.h", + "include/python3.11/internal/pycore_bytes_methods.h", + "include/python3.11/internal/pycore_bytesobject.h", + "include/python3.11/internal/pycore_call.h", + "include/python3.11/internal/pycore_ceval.h", + "include/python3.11/internal/pycore_code.h", + "include/python3.11/internal/pycore_compile.h", + "include/python3.11/internal/pycore_condvar.h", + "include/python3.11/internal/pycore_context.h", + "include/python3.11/internal/pycore_dict.h", + "include/python3.11/internal/pycore_dtoa.h", + "include/python3.11/internal/pycore_emscripten_signal.h", + "include/python3.11/internal/pycore_exceptions.h", + "include/python3.11/internal/pycore_fileutils.h", + "include/python3.11/internal/pycore_floatobject.h", + "include/python3.11/internal/pycore_format.h", + "include/python3.11/internal/pycore_frame.h", + "include/python3.11/internal/pycore_function.h", + "include/python3.11/internal/pycore_gc.h", + "include/python3.11/internal/pycore_genobject.h", + "include/python3.11/internal/pycore_getopt.h", + "include/python3.11/internal/pycore_gil.h", + "include/python3.11/internal/pycore_global_objects.h", + "include/python3.11/internal/pycore_global_strings.h", + "include/python3.11/internal/pycore_hamt.h", + "include/python3.11/internal/pycore_hashtable.h", + "include/python3.11/internal/pycore_import.h", + "include/python3.11/internal/pycore_initconfig.h", + "include/python3.11/internal/pycore_interp.h", + "include/python3.11/internal/pycore_interpreteridobject.h", + "include/python3.11/internal/pycore_list.h", + "include/python3.11/internal/pycore_long.h", + "include/python3.11/internal/pycore_moduleobject.h", + "include/python3.11/internal/pycore_namespace.h", + "include/python3.11/internal/pycore_object.h", + "include/python3.11/internal/pycore_opcode.h", + "include/python3.11/internal/pycore_parser.h", + "include/python3.11/internal/pycore_pathconfig.h", + "include/python3.11/internal/pycore_pyarena.h", + "include/python3.11/internal/pycore_pyerrors.h", + "include/python3.11/internal/pycore_pyhash.h", + "include/python3.11/internal/pycore_pylifecycle.h", + "include/python3.11/internal/pycore_pymath.h", + "include/python3.11/internal/pycore_pymem.h", + "include/python3.11/internal/pycore_pystate.h", + "include/python3.11/internal/pycore_runtime.h", + "include/python3.11/internal/pycore_runtime_init.h", + "include/python3.11/internal/pycore_signal.h", + "include/python3.11/internal/pycore_sliceobject.h", + "include/python3.11/internal/pycore_strhex.h", + "include/python3.11/internal/pycore_structseq.h", + "include/python3.11/internal/pycore_symtable.h", + "include/python3.11/internal/pycore_sysmodule.h", + "include/python3.11/internal/pycore_traceback.h", + "include/python3.11/internal/pycore_tuple.h", + "include/python3.11/internal/pycore_typeobject.h", + "include/python3.11/internal/pycore_ucnhash.h", + "include/python3.11/internal/pycore_unicodeobject.h", + "include/python3.11/internal/pycore_unionobject.h", + "include/python3.11/internal/pycore_warnings.h", + "include/python3.11/intrcheck.h", + "include/python3.11/iterobject.h", + "include/python3.11/listobject.h", + "include/python3.11/longobject.h", + "include/python3.11/marshal.h", + "include/python3.11/memoryobject.h", + "include/python3.11/methodobject.h", + "include/python3.11/modsupport.h", + "include/python3.11/moduleobject.h", + "include/python3.11/object.h", + "include/python3.11/objimpl.h", + "include/python3.11/opcode.h", + "include/python3.11/osdefs.h", + "include/python3.11/osmodule.h", + "include/python3.11/patchlevel.h", + "include/python3.11/py_curses.h", + "include/python3.11/pybuffer.h", + "include/python3.11/pycapsule.h", + "include/python3.11/pyconfig.h", + "include/python3.11/pydtrace.h", + "include/python3.11/pyerrors.h", + "include/python3.11/pyexpat.h", + "include/python3.11/pyframe.h", + "include/python3.11/pyhash.h", + "include/python3.11/pylifecycle.h", + "include/python3.11/pymacconfig.h", + "include/python3.11/pymacro.h", + "include/python3.11/pymath.h", + "include/python3.11/pymem.h", + "include/python3.11/pyport.h", + "include/python3.11/pystate.h", + "include/python3.11/pystrcmp.h", + "include/python3.11/pystrtod.h", + "include/python3.11/pythonrun.h", + "include/python3.11/pythread.h", + "include/python3.11/pytypedefs.h", + "include/python3.11/rangeobject.h", + "include/python3.11/setobject.h", + "include/python3.11/sliceobject.h", + "include/python3.11/structmember.h", + "include/python3.11/structseq.h", + "include/python3.11/sysmodule.h", + "include/python3.11/token.h", + "include/python3.11/traceback.h", + "include/python3.11/tracemalloc.h", + "include/python3.11/tupleobject.h", + "include/python3.11/typeslots.h", + "include/python3.11/unicodeobject.h", + "include/python3.11/warnings.h", + "include/python3.11/weakrefobject.h", + "lib/libpython3.11.dylib", + "lib/pkgconfig/python-3.11-embed.pc", + "lib/pkgconfig/python-3.11.pc", + "lib/pkgconfig/python3-embed.pc", + "lib/pkgconfig/python3.pc", + "lib/python3.1", + "lib/python3.11/LICENSE.txt", + "lib/python3.11/__future__.py", + "lib/python3.11/__hello__.py", + "lib/python3.11/__phello__/__init__.py", + "lib/python3.11/__phello__/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/__phello__/__pycache__/spam.cpython-311.pyc", + "lib/python3.11/__phello__/spam.py", + "lib/python3.11/__pycache__/__future__.cpython-311.pyc", + "lib/python3.11/__pycache__/__hello__.cpython-311.pyc", + "lib/python3.11/__pycache__/_aix_support.cpython-311.pyc", + "lib/python3.11/__pycache__/_bootsubprocess.cpython-311.pyc", + "lib/python3.11/__pycache__/_collections_abc.cpython-311.pyc", + "lib/python3.11/__pycache__/_compat_pickle.cpython-311.pyc", + "lib/python3.11/__pycache__/_compression.cpython-311.pyc", + "lib/python3.11/__pycache__/_markupbase.cpython-311.pyc", + "lib/python3.11/__pycache__/_osx_support.cpython-311.pyc", + "lib/python3.11/__pycache__/_py_abc.cpython-311.pyc", + "lib/python3.11/__pycache__/_pydecimal.cpython-311.pyc", + "lib/python3.11/__pycache__/_pyio.cpython-311.pyc", + "lib/python3.11/__pycache__/_sitebuiltins.cpython-311.pyc", + "lib/python3.11/__pycache__/_strptime.cpython-311.pyc", + "lib/python3.11/__pycache__/_sysconfigdata__darwin_darwin.cpython-311.pyc", + "lib/python3.11/__pycache__/_sysconfigdata_arm64_apple_darwin20_0_0.cpython-311.pyc", + "lib/python3.11/__pycache__/_threading_local.cpython-311.pyc", + "lib/python3.11/__pycache__/_weakrefset.cpython-311.pyc", + "lib/python3.11/__pycache__/abc.cpython-311.pyc", + "lib/python3.11/__pycache__/aifc.cpython-311.pyc", + "lib/python3.11/__pycache__/antigravity.cpython-311.pyc", + "lib/python3.11/__pycache__/argparse.cpython-311.pyc", + "lib/python3.11/__pycache__/ast.cpython-311.pyc", + "lib/python3.11/__pycache__/asynchat.cpython-311.pyc", + "lib/python3.11/__pycache__/asyncore.cpython-311.pyc", + "lib/python3.11/__pycache__/base64.cpython-311.pyc", + "lib/python3.11/__pycache__/bdb.cpython-311.pyc", + "lib/python3.11/__pycache__/bisect.cpython-311.pyc", + "lib/python3.11/__pycache__/bz2.cpython-311.pyc", + "lib/python3.11/__pycache__/cProfile.cpython-311.pyc", + "lib/python3.11/__pycache__/calendar.cpython-311.pyc", + "lib/python3.11/__pycache__/cgi.cpython-311.pyc", + "lib/python3.11/__pycache__/cgitb.cpython-311.pyc", + "lib/python3.11/__pycache__/chunk.cpython-311.pyc", + "lib/python3.11/__pycache__/cmd.cpython-311.pyc", + "lib/python3.11/__pycache__/code.cpython-311.pyc", + "lib/python3.11/__pycache__/codecs.cpython-311.pyc", + "lib/python3.11/__pycache__/codeop.cpython-311.pyc", + "lib/python3.11/__pycache__/colorsys.cpython-311.pyc", + "lib/python3.11/__pycache__/compileall.cpython-311.pyc", + "lib/python3.11/__pycache__/configparser.cpython-311.pyc", + "lib/python3.11/__pycache__/contextlib.cpython-311.pyc", + "lib/python3.11/__pycache__/contextvars.cpython-311.pyc", + "lib/python3.11/__pycache__/copy.cpython-311.pyc", + "lib/python3.11/__pycache__/copyreg.cpython-311.pyc", + "lib/python3.11/__pycache__/crypt.cpython-311.pyc", + "lib/python3.11/__pycache__/csv.cpython-311.pyc", + "lib/python3.11/__pycache__/dataclasses.cpython-311.pyc", + "lib/python3.11/__pycache__/datetime.cpython-311.pyc", + "lib/python3.11/__pycache__/decimal.cpython-311.pyc", + "lib/python3.11/__pycache__/difflib.cpython-311.pyc", + "lib/python3.11/__pycache__/dis.cpython-311.pyc", + "lib/python3.11/__pycache__/doctest.cpython-311.pyc", + "lib/python3.11/__pycache__/enum.cpython-311.pyc", + "lib/python3.11/__pycache__/filecmp.cpython-311.pyc", + "lib/python3.11/__pycache__/fileinput.cpython-311.pyc", + "lib/python3.11/__pycache__/fnmatch.cpython-311.pyc", + "lib/python3.11/__pycache__/fractions.cpython-311.pyc", + "lib/python3.11/__pycache__/ftplib.cpython-311.pyc", + "lib/python3.11/__pycache__/functools.cpython-311.pyc", + "lib/python3.11/__pycache__/genericpath.cpython-311.pyc", + "lib/python3.11/__pycache__/getopt.cpython-311.pyc", + "lib/python3.11/__pycache__/getpass.cpython-311.pyc", + "lib/python3.11/__pycache__/gettext.cpython-311.pyc", + "lib/python3.11/__pycache__/glob.cpython-311.pyc", + "lib/python3.11/__pycache__/graphlib.cpython-311.pyc", + "lib/python3.11/__pycache__/gzip.cpython-311.pyc", + "lib/python3.11/__pycache__/hashlib.cpython-311.pyc", + "lib/python3.11/__pycache__/heapq.cpython-311.pyc", + "lib/python3.11/__pycache__/hmac.cpython-311.pyc", + "lib/python3.11/__pycache__/imaplib.cpython-311.pyc", + "lib/python3.11/__pycache__/imghdr.cpython-311.pyc", + "lib/python3.11/__pycache__/imp.cpython-311.pyc", + "lib/python3.11/__pycache__/inspect.cpython-311.pyc", + "lib/python3.11/__pycache__/io.cpython-311.pyc", + "lib/python3.11/__pycache__/ipaddress.cpython-311.pyc", + "lib/python3.11/__pycache__/keyword.cpython-311.pyc", + "lib/python3.11/__pycache__/linecache.cpython-311.pyc", + "lib/python3.11/__pycache__/locale.cpython-311.pyc", + "lib/python3.11/__pycache__/lzma.cpython-311.pyc", + "lib/python3.11/__pycache__/mailbox.cpython-311.pyc", + "lib/python3.11/__pycache__/mailcap.cpython-311.pyc", + "lib/python3.11/__pycache__/mimetypes.cpython-311.pyc", + "lib/python3.11/__pycache__/modulefinder.cpython-311.pyc", + "lib/python3.11/__pycache__/netrc.cpython-311.pyc", + "lib/python3.11/__pycache__/nntplib.cpython-311.pyc", + "lib/python3.11/__pycache__/ntpath.cpython-311.pyc", + "lib/python3.11/__pycache__/nturl2path.cpython-311.pyc", + "lib/python3.11/__pycache__/numbers.cpython-311.pyc", + "lib/python3.11/__pycache__/opcode.cpython-311.pyc", + "lib/python3.11/__pycache__/operator.cpython-311.pyc", + "lib/python3.11/__pycache__/optparse.cpython-311.pyc", + "lib/python3.11/__pycache__/os.cpython-311.pyc", + "lib/python3.11/__pycache__/pathlib.cpython-311.pyc", + "lib/python3.11/__pycache__/pdb.cpython-311.pyc", + "lib/python3.11/__pycache__/pickle.cpython-311.pyc", + "lib/python3.11/__pycache__/pickletools.cpython-311.pyc", + "lib/python3.11/__pycache__/pipes.cpython-311.pyc", + "lib/python3.11/__pycache__/pkgutil.cpython-311.pyc", + "lib/python3.11/__pycache__/platform.cpython-311.pyc", + "lib/python3.11/__pycache__/plistlib.cpython-311.pyc", + "lib/python3.11/__pycache__/poplib.cpython-311.pyc", + "lib/python3.11/__pycache__/posixpath.cpython-311.pyc", + "lib/python3.11/__pycache__/pprint.cpython-311.pyc", + "lib/python3.11/__pycache__/profile.cpython-311.pyc", + "lib/python3.11/__pycache__/pstats.cpython-311.pyc", + "lib/python3.11/__pycache__/pty.cpython-311.pyc", + "lib/python3.11/__pycache__/py_compile.cpython-311.pyc", + "lib/python3.11/__pycache__/pyclbr.cpython-311.pyc", + "lib/python3.11/__pycache__/pydoc.cpython-311.pyc", + "lib/python3.11/__pycache__/queue.cpython-311.pyc", + "lib/python3.11/__pycache__/quopri.cpython-311.pyc", + "lib/python3.11/__pycache__/random.cpython-311.pyc", + "lib/python3.11/__pycache__/reprlib.cpython-311.pyc", + "lib/python3.11/__pycache__/rlcompleter.cpython-311.pyc", + "lib/python3.11/__pycache__/runpy.cpython-311.pyc", + "lib/python3.11/__pycache__/sched.cpython-311.pyc", + "lib/python3.11/__pycache__/secrets.cpython-311.pyc", + "lib/python3.11/__pycache__/selectors.cpython-311.pyc", + "lib/python3.11/__pycache__/shelve.cpython-311.pyc", + "lib/python3.11/__pycache__/shlex.cpython-311.pyc", + "lib/python3.11/__pycache__/shutil.cpython-311.pyc", + "lib/python3.11/__pycache__/signal.cpython-311.pyc", + "lib/python3.11/__pycache__/site.cpython-311.pyc", + "lib/python3.11/__pycache__/smtpd.cpython-311.pyc", + "lib/python3.11/__pycache__/smtplib.cpython-311.pyc", + "lib/python3.11/__pycache__/sndhdr.cpython-311.pyc", + "lib/python3.11/__pycache__/socket.cpython-311.pyc", + "lib/python3.11/__pycache__/socketserver.cpython-311.pyc", + "lib/python3.11/__pycache__/sre_compile.cpython-311.pyc", + "lib/python3.11/__pycache__/sre_constants.cpython-311.pyc", + "lib/python3.11/__pycache__/sre_parse.cpython-311.pyc", + "lib/python3.11/__pycache__/ssl.cpython-311.pyc", + "lib/python3.11/__pycache__/stat.cpython-311.pyc", + "lib/python3.11/__pycache__/statistics.cpython-311.pyc", + "lib/python3.11/__pycache__/string.cpython-311.pyc", + "lib/python3.11/__pycache__/stringprep.cpython-311.pyc", + "lib/python3.11/__pycache__/struct.cpython-311.pyc", + "lib/python3.11/__pycache__/subprocess.cpython-311.pyc", + "lib/python3.11/__pycache__/sunau.cpython-311.pyc", + "lib/python3.11/__pycache__/symtable.cpython-311.pyc", + "lib/python3.11/__pycache__/sysconfig.cpython-311.pyc", + "lib/python3.11/__pycache__/tabnanny.cpython-311.pyc", + "lib/python3.11/__pycache__/tarfile.cpython-311.pyc", + "lib/python3.11/__pycache__/telnetlib.cpython-311.pyc", + "lib/python3.11/__pycache__/tempfile.cpython-311.pyc", + "lib/python3.11/__pycache__/textwrap.cpython-311.pyc", + "lib/python3.11/__pycache__/this.cpython-311.pyc", + "lib/python3.11/__pycache__/threading.cpython-311.pyc", + "lib/python3.11/__pycache__/timeit.cpython-311.pyc", + "lib/python3.11/__pycache__/token.cpython-311.pyc", + "lib/python3.11/__pycache__/tokenize.cpython-311.pyc", + "lib/python3.11/__pycache__/trace.cpython-311.pyc", + "lib/python3.11/__pycache__/traceback.cpython-311.pyc", + "lib/python3.11/__pycache__/tracemalloc.cpython-311.pyc", + "lib/python3.11/__pycache__/tty.cpython-311.pyc", + "lib/python3.11/__pycache__/turtle.cpython-311.pyc", + "lib/python3.11/__pycache__/types.cpython-311.pyc", + "lib/python3.11/__pycache__/typing.cpython-311.pyc", + "lib/python3.11/__pycache__/uu.cpython-311.pyc", + "lib/python3.11/__pycache__/uuid.cpython-311.pyc", + "lib/python3.11/__pycache__/warnings.cpython-311.pyc", + "lib/python3.11/__pycache__/wave.cpython-311.pyc", + "lib/python3.11/__pycache__/weakref.cpython-311.pyc", + "lib/python3.11/__pycache__/webbrowser.cpython-311.pyc", + "lib/python3.11/__pycache__/xdrlib.cpython-311.pyc", + "lib/python3.11/__pycache__/zipapp.cpython-311.pyc", + "lib/python3.11/__pycache__/zipfile.cpython-311.pyc", + "lib/python3.11/__pycache__/zipimport.cpython-311.pyc", + "lib/python3.11/_aix_support.py", + "lib/python3.11/_bootsubprocess.py", + "lib/python3.11/_collections_abc.py", + "lib/python3.11/_compat_pickle.py", + "lib/python3.11/_compression.py", + "lib/python3.11/_markupbase.py", + "lib/python3.11/_osx_support.py", + "lib/python3.11/_py_abc.py", + "lib/python3.11/_pydecimal.py", + "lib/python3.11/_pyio.py", + "lib/python3.11/_sitebuiltins.py", + "lib/python3.11/_strptime.py", + "lib/python3.11/_sysconfigdata__darwin_darwin.py", + "lib/python3.11/_sysconfigdata__darwin_darwin.py.orig", + "lib/python3.11/_sysconfigdata_arm64_apple_darwin20_0_0.py", + "lib/python3.11/_threading_local.py", + "lib/python3.11/_weakrefset.py", + "lib/python3.11/abc.py", + "lib/python3.11/aifc.py", + "lib/python3.11/antigravity.py", + "lib/python3.11/argparse.py", + "lib/python3.11/ast.py", + "lib/python3.11/asynchat.py", + "lib/python3.11/asyncio/__init__.py", + "lib/python3.11/asyncio/__main__.py", + "lib/python3.11/asyncio/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/base_events.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/base_futures.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/base_subprocess.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/base_tasks.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/constants.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/coroutines.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/events.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/exceptions.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/format_helpers.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/futures.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/locks.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/log.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/mixins.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/proactor_events.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/protocols.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/queues.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/runners.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/selector_events.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/sslproto.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/staggered.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/streams.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/subprocess.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/taskgroups.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/tasks.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/threads.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/timeouts.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/transports.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/trsock.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/unix_events.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/windows_events.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/windows_utils.cpython-311.pyc", + "lib/python3.11/asyncio/base_events.py", + "lib/python3.11/asyncio/base_futures.py", + "lib/python3.11/asyncio/base_subprocess.py", + "lib/python3.11/asyncio/base_tasks.py", + "lib/python3.11/asyncio/constants.py", + "lib/python3.11/asyncio/coroutines.py", + "lib/python3.11/asyncio/events.py", + "lib/python3.11/asyncio/exceptions.py", + "lib/python3.11/asyncio/format_helpers.py", + "lib/python3.11/asyncio/futures.py", + "lib/python3.11/asyncio/locks.py", + "lib/python3.11/asyncio/log.py", + "lib/python3.11/asyncio/mixins.py", + "lib/python3.11/asyncio/proactor_events.py", + "lib/python3.11/asyncio/protocols.py", + "lib/python3.11/asyncio/queues.py", + "lib/python3.11/asyncio/runners.py", + "lib/python3.11/asyncio/selector_events.py", + "lib/python3.11/asyncio/sslproto.py", + "lib/python3.11/asyncio/staggered.py", + "lib/python3.11/asyncio/streams.py", + "lib/python3.11/asyncio/subprocess.py", + "lib/python3.11/asyncio/taskgroups.py", + "lib/python3.11/asyncio/tasks.py", + "lib/python3.11/asyncio/threads.py", + "lib/python3.11/asyncio/timeouts.py", + "lib/python3.11/asyncio/transports.py", + "lib/python3.11/asyncio/trsock.py", + "lib/python3.11/asyncio/unix_events.py", + "lib/python3.11/asyncio/windows_events.py", + "lib/python3.11/asyncio/windows_utils.py", + "lib/python3.11/asyncore.py", + "lib/python3.11/base64.py", + "lib/python3.11/bdb.py", + "lib/python3.11/bisect.py", + "lib/python3.11/bz2.py", + "lib/python3.11/cProfile.py", + "lib/python3.11/calendar.py", + "lib/python3.11/cgi.py", + "lib/python3.11/cgitb.py", + "lib/python3.11/chunk.py", + "lib/python3.11/cmd.py", + "lib/python3.11/code.py", + "lib/python3.11/codecs.py", + "lib/python3.11/codeop.py", + "lib/python3.11/collections/__init__.py", + "lib/python3.11/collections/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/collections/__pycache__/abc.cpython-311.pyc", + "lib/python3.11/collections/abc.py", + "lib/python3.11/colorsys.py", + "lib/python3.11/compileall.py", + "lib/python3.11/concurrent/__init__.py", + "lib/python3.11/concurrent/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/concurrent/futures/__init__.py", + "lib/python3.11/concurrent/futures/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/concurrent/futures/__pycache__/_base.cpython-311.pyc", + "lib/python3.11/concurrent/futures/__pycache__/process.cpython-311.pyc", + "lib/python3.11/concurrent/futures/__pycache__/thread.cpython-311.pyc", + "lib/python3.11/concurrent/futures/_base.py", + "lib/python3.11/concurrent/futures/process.py", + "lib/python3.11/concurrent/futures/thread.py", + "lib/python3.11/config-3.11-darwin/Makefile", + "lib/python3.11/config-3.11-darwin/Setup", + "lib/python3.11/config-3.11-darwin/Setup.bootstrap", + "lib/python3.11/config-3.11-darwin/Setup.local", + "lib/python3.11/config-3.11-darwin/Setup.stdlib", + "lib/python3.11/config-3.11-darwin/__pycache__/python-config.cpython-311.pyc", + "lib/python3.11/config-3.11-darwin/config.c", + "lib/python3.11/config-3.11-darwin/config.c.in", + "lib/python3.11/config-3.11-darwin/install-sh", + "lib/python3.11/config-3.11-darwin/makesetup", + "lib/python3.11/config-3.11-darwin/python-config.py", + "lib/python3.11/config-3.11-darwin/python.o", + "lib/python3.11/configparser.py", + "lib/python3.11/contextlib.py", + "lib/python3.11/contextvars.py", + "lib/python3.11/copy.py", + "lib/python3.11/copyreg.py", + "lib/python3.11/crypt.py", + "lib/python3.11/csv.py", + "lib/python3.11/ctypes/__init__.py", + "lib/python3.11/ctypes/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/ctypes/__pycache__/_aix.cpython-311.pyc", + "lib/python3.11/ctypes/__pycache__/_endian.cpython-311.pyc", + "lib/python3.11/ctypes/__pycache__/util.cpython-311.pyc", + "lib/python3.11/ctypes/__pycache__/wintypes.cpython-311.pyc", + "lib/python3.11/ctypes/_aix.py", + "lib/python3.11/ctypes/_endian.py", + "lib/python3.11/ctypes/macholib/README.ctypes", + "lib/python3.11/ctypes/macholib/__init__.py", + "lib/python3.11/ctypes/macholib/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/ctypes/macholib/__pycache__/dyld.cpython-311.pyc", + "lib/python3.11/ctypes/macholib/__pycache__/dylib.cpython-311.pyc", + "lib/python3.11/ctypes/macholib/__pycache__/framework.cpython-311.pyc", + "lib/python3.11/ctypes/macholib/dyld.py", + "lib/python3.11/ctypes/macholib/dylib.py", + "lib/python3.11/ctypes/macholib/fetch_macholib", + "lib/python3.11/ctypes/macholib/fetch_macholib.bat", + "lib/python3.11/ctypes/macholib/framework.py", + "lib/python3.11/ctypes/util.py", + "lib/python3.11/ctypes/wintypes.py", + "lib/python3.11/curses/__init__.py", + "lib/python3.11/curses/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/curses/__pycache__/ascii.cpython-311.pyc", + "lib/python3.11/curses/__pycache__/has_key.cpython-311.pyc", + "lib/python3.11/curses/__pycache__/panel.cpython-311.pyc", + "lib/python3.11/curses/__pycache__/textpad.cpython-311.pyc", + "lib/python3.11/curses/ascii.py", + "lib/python3.11/curses/has_key.py", + "lib/python3.11/curses/panel.py", + "lib/python3.11/curses/textpad.py", + "lib/python3.11/dataclasses.py", + "lib/python3.11/datetime.py", + "lib/python3.11/dbm/__init__.py", + "lib/python3.11/dbm/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/dbm/__pycache__/dumb.cpython-311.pyc", + "lib/python3.11/dbm/__pycache__/gnu.cpython-311.pyc", + "lib/python3.11/dbm/__pycache__/ndbm.cpython-311.pyc", + "lib/python3.11/dbm/dumb.py", + "lib/python3.11/dbm/gnu.py", + "lib/python3.11/dbm/ndbm.py", + "lib/python3.11/decimal.py", + "lib/python3.11/difflib.py", + "lib/python3.11/dis.py", + "lib/python3.11/distutils/README", + "lib/python3.11/distutils/__init__.py", + "lib/python3.11/distutils/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/_msvccompiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/archive_util.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/bcppcompiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/ccompiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/cmd.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/config.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/core.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/cygwinccompiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/debug.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/dep_util.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/dir_util.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/dist.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/errors.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/extension.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/fancy_getopt.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/file_util.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/filelist.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/log.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/msvc9compiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/msvccompiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/spawn.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/sysconfig.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/text_file.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/unixccompiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/util.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/version.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/versionpredicate.cpython-311.pyc", + "lib/python3.11/distutils/_msvccompiler.py", + "lib/python3.11/distutils/archive_util.py", + "lib/python3.11/distutils/bcppcompiler.py", + "lib/python3.11/distutils/ccompiler.py", + "lib/python3.11/distutils/cmd.py", + "lib/python3.11/distutils/command/__init__.py", + "lib/python3.11/distutils/command/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/bdist.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/bdist_dumb.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/bdist_rpm.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/build.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/build_clib.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/build_ext.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/build_py.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/build_scripts.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/check.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/clean.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/config.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/install.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/install_data.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/install_egg_info.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/install_headers.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/install_lib.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/install_scripts.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/register.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/sdist.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/upload.cpython-311.pyc", + "lib/python3.11/distutils/command/bdist.py", + "lib/python3.11/distutils/command/bdist_dumb.py", + "lib/python3.11/distutils/command/bdist_rpm.py", + "lib/python3.11/distutils/command/build.py", + "lib/python3.11/distutils/command/build_clib.py", + "lib/python3.11/distutils/command/build_ext.py", + "lib/python3.11/distutils/command/build_py.py", + "lib/python3.11/distutils/command/build_scripts.py", + "lib/python3.11/distutils/command/check.py", + "lib/python3.11/distutils/command/clean.py", + "lib/python3.11/distutils/command/command_template", + "lib/python3.11/distutils/command/config.py", + "lib/python3.11/distutils/command/install.py", + "lib/python3.11/distutils/command/install_data.py", + "lib/python3.11/distutils/command/install_egg_info.py", + "lib/python3.11/distutils/command/install_headers.py", + "lib/python3.11/distutils/command/install_lib.py", + "lib/python3.11/distutils/command/install_scripts.py", + "lib/python3.11/distutils/command/register.py", + "lib/python3.11/distutils/command/sdist.py", + "lib/python3.11/distutils/command/upload.py", + "lib/python3.11/distutils/config.py", + "lib/python3.11/distutils/core.py", + "lib/python3.11/distutils/cygwinccompiler.py", + "lib/python3.11/distutils/debug.py", + "lib/python3.11/distutils/dep_util.py", + "lib/python3.11/distutils/dir_util.py", + "lib/python3.11/distutils/dist.py", + "lib/python3.11/distutils/errors.py", + "lib/python3.11/distutils/extension.py", + "lib/python3.11/distutils/fancy_getopt.py", + "lib/python3.11/distutils/file_util.py", + "lib/python3.11/distutils/filelist.py", + "lib/python3.11/distutils/log.py", + "lib/python3.11/distutils/msvc9compiler.py", + "lib/python3.11/distutils/msvccompiler.py", + "lib/python3.11/distutils/spawn.py", + "lib/python3.11/distutils/sysconfig.py", + "lib/python3.11/distutils/tests/Setup.sample", + "lib/python3.11/distutils/tests/__init__.py", + "lib/python3.11/distutils/tests/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/support.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_archive_util.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_bdist.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_bdist_dumb.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_bdist_rpm.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_build.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_build_clib.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_build_ext.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_build_py.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_build_scripts.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_check.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_clean.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_cmd.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_config.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_config_cmd.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_core.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_cygwinccompiler.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_dep_util.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_dir_util.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_dist.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_extension.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_file_util.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_filelist.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_install.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_install_data.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_install_headers.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_install_lib.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_install_scripts.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_log.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_msvc9compiler.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_msvccompiler.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_register.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_sdist.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_spawn.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_sysconfig.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_text_file.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_unixccompiler.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_upload.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_util.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_version.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_versionpredicate.cpython-311.pyc", + "lib/python3.11/distutils/tests/includetest.rst", + "lib/python3.11/distutils/tests/support.py", + "lib/python3.11/distutils/tests/test_archive_util.py", + "lib/python3.11/distutils/tests/test_bdist.py", + "lib/python3.11/distutils/tests/test_bdist_dumb.py", + "lib/python3.11/distutils/tests/test_bdist_rpm.py", + "lib/python3.11/distutils/tests/test_build.py", + "lib/python3.11/distutils/tests/test_build_clib.py", + "lib/python3.11/distutils/tests/test_build_ext.py", + "lib/python3.11/distutils/tests/test_build_py.py", + "lib/python3.11/distutils/tests/test_build_scripts.py", + "lib/python3.11/distutils/tests/test_check.py", + "lib/python3.11/distutils/tests/test_clean.py", + "lib/python3.11/distutils/tests/test_cmd.py", + "lib/python3.11/distutils/tests/test_config.py", + "lib/python3.11/distutils/tests/test_config_cmd.py", + "lib/python3.11/distutils/tests/test_core.py", + "lib/python3.11/distutils/tests/test_cygwinccompiler.py", + "lib/python3.11/distutils/tests/test_dep_util.py", + "lib/python3.11/distutils/tests/test_dir_util.py", + "lib/python3.11/distutils/tests/test_dist.py", + "lib/python3.11/distutils/tests/test_extension.py", + "lib/python3.11/distutils/tests/test_file_util.py", + "lib/python3.11/distutils/tests/test_filelist.py", + "lib/python3.11/distutils/tests/test_install.py", + "lib/python3.11/distutils/tests/test_install_data.py", + "lib/python3.11/distutils/tests/test_install_headers.py", + "lib/python3.11/distutils/tests/test_install_lib.py", + "lib/python3.11/distutils/tests/test_install_scripts.py", + "lib/python3.11/distutils/tests/test_log.py", + "lib/python3.11/distutils/tests/test_msvc9compiler.py", + "lib/python3.11/distutils/tests/test_msvccompiler.py", + "lib/python3.11/distutils/tests/test_register.py", + "lib/python3.11/distutils/tests/test_sdist.py", + "lib/python3.11/distutils/tests/test_spawn.py", + "lib/python3.11/distutils/tests/test_sysconfig.py", + "lib/python3.11/distutils/tests/test_text_file.py", + "lib/python3.11/distutils/tests/test_unixccompiler.py", + "lib/python3.11/distutils/tests/test_upload.py", + "lib/python3.11/distutils/tests/test_util.py", + "lib/python3.11/distutils/tests/test_version.py", + "lib/python3.11/distutils/tests/test_versionpredicate.py", + "lib/python3.11/distutils/tests/xxmodule.c", + "lib/python3.11/distutils/text_file.py", + "lib/python3.11/distutils/unixccompiler.py", + "lib/python3.11/distutils/util.py", + "lib/python3.11/distutils/version.py", + "lib/python3.11/distutils/versionpredicate.py", + "lib/python3.11/doctest.py", + "lib/python3.11/email/__init__.py", + "lib/python3.11/email/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/email/__pycache__/_encoded_words.cpython-311.pyc", + "lib/python3.11/email/__pycache__/_header_value_parser.cpython-311.pyc", + "lib/python3.11/email/__pycache__/_parseaddr.cpython-311.pyc", + "lib/python3.11/email/__pycache__/_policybase.cpython-311.pyc", + "lib/python3.11/email/__pycache__/base64mime.cpython-311.pyc", + "lib/python3.11/email/__pycache__/charset.cpython-311.pyc", + "lib/python3.11/email/__pycache__/contentmanager.cpython-311.pyc", + "lib/python3.11/email/__pycache__/encoders.cpython-311.pyc", + "lib/python3.11/email/__pycache__/errors.cpython-311.pyc", + "lib/python3.11/email/__pycache__/feedparser.cpython-311.pyc", + "lib/python3.11/email/__pycache__/generator.cpython-311.pyc", + "lib/python3.11/email/__pycache__/header.cpython-311.pyc", + "lib/python3.11/email/__pycache__/headerregistry.cpython-311.pyc", + "lib/python3.11/email/__pycache__/iterators.cpython-311.pyc", + "lib/python3.11/email/__pycache__/message.cpython-311.pyc", + "lib/python3.11/email/__pycache__/parser.cpython-311.pyc", + "lib/python3.11/email/__pycache__/policy.cpython-311.pyc", + "lib/python3.11/email/__pycache__/quoprimime.cpython-311.pyc", + "lib/python3.11/email/__pycache__/utils.cpython-311.pyc", + "lib/python3.11/email/_encoded_words.py", + "lib/python3.11/email/_header_value_parser.py", + "lib/python3.11/email/_parseaddr.py", + "lib/python3.11/email/_policybase.py", + "lib/python3.11/email/architecture.rst", + "lib/python3.11/email/base64mime.py", + "lib/python3.11/email/charset.py", + "lib/python3.11/email/contentmanager.py", + "lib/python3.11/email/encoders.py", + "lib/python3.11/email/errors.py", + "lib/python3.11/email/feedparser.py", + "lib/python3.11/email/generator.py", + "lib/python3.11/email/header.py", + "lib/python3.11/email/headerregistry.py", + "lib/python3.11/email/iterators.py", + "lib/python3.11/email/message.py", + "lib/python3.11/email/mime/__init__.py", + "lib/python3.11/email/mime/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/application.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/audio.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/base.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/image.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/message.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/multipart.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/nonmultipart.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/text.cpython-311.pyc", + "lib/python3.11/email/mime/application.py", + "lib/python3.11/email/mime/audio.py", + "lib/python3.11/email/mime/base.py", + "lib/python3.11/email/mime/image.py", + "lib/python3.11/email/mime/message.py", + "lib/python3.11/email/mime/multipart.py", + "lib/python3.11/email/mime/nonmultipart.py", + "lib/python3.11/email/mime/text.py", + "lib/python3.11/email/parser.py", + "lib/python3.11/email/policy.py", + "lib/python3.11/email/quoprimime.py", + "lib/python3.11/email/utils.py", + "lib/python3.11/encodings/__init__.py", + "lib/python3.11/encodings/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/aliases.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/ascii.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/base64_codec.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/big5.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/big5hkscs.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/bz2_codec.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/charmap.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp037.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1006.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1026.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1125.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1140.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1250.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1251.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1252.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1253.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1254.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1255.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1256.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1257.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1258.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp273.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp424.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp437.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp500.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp720.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp737.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp775.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp850.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp852.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp855.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp856.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp857.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp858.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp860.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp861.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp862.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp863.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp864.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp865.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp866.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp869.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp874.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp875.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp932.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp949.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp950.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/euc_jis_2004.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/euc_jisx0213.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/euc_jp.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/euc_kr.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/gb18030.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/gb2312.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/gbk.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/hex_codec.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/hp_roman8.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/hz.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/idna.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_jp.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_jp_1.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_jp_2.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_jp_2004.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_jp_3.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_jp_ext.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_kr.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_1.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_10.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_11.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_13.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_14.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_15.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_16.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_2.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_3.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_4.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_5.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_6.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_7.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_8.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_9.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/johab.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/koi8_r.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/koi8_t.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/koi8_u.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/kz1048.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/latin_1.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_arabic.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_croatian.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_cyrillic.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_farsi.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_greek.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_iceland.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_latin2.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_roman.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_romanian.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_turkish.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mbcs.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/oem.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/palmos.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/ptcp154.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/punycode.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/quopri_codec.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/raw_unicode_escape.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/rot_13.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/shift_jis.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/shift_jis_2004.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/shift_jisx0213.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/tis_620.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/undefined.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/unicode_escape.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_16.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_16_be.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_16_le.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_32.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_32_be.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_32_le.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_7.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_8.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_8_sig.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/uu_codec.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/zlib_codec.cpython-311.pyc", + "lib/python3.11/encodings/aliases.py", + "lib/python3.11/encodings/ascii.py", + "lib/python3.11/encodings/base64_codec.py", + "lib/python3.11/encodings/big5.py", + "lib/python3.11/encodings/big5hkscs.py", + "lib/python3.11/encodings/bz2_codec.py", + "lib/python3.11/encodings/charmap.py", + "lib/python3.11/encodings/cp037.py", + "lib/python3.11/encodings/cp1006.py", + "lib/python3.11/encodings/cp1026.py", + "lib/python3.11/encodings/cp1125.py", + "lib/python3.11/encodings/cp1140.py", + "lib/python3.11/encodings/cp1250.py", + "lib/python3.11/encodings/cp1251.py", + "lib/python3.11/encodings/cp1252.py", + "lib/python3.11/encodings/cp1253.py", + "lib/python3.11/encodings/cp1254.py", + "lib/python3.11/encodings/cp1255.py", + "lib/python3.11/encodings/cp1256.py", + "lib/python3.11/encodings/cp1257.py", + "lib/python3.11/encodings/cp1258.py", + "lib/python3.11/encodings/cp273.py", + "lib/python3.11/encodings/cp424.py", + "lib/python3.11/encodings/cp437.py", + "lib/python3.11/encodings/cp500.py", + "lib/python3.11/encodings/cp720.py", + "lib/python3.11/encodings/cp737.py", + "lib/python3.11/encodings/cp775.py", + "lib/python3.11/encodings/cp850.py", + "lib/python3.11/encodings/cp852.py", + "lib/python3.11/encodings/cp855.py", + "lib/python3.11/encodings/cp856.py", + "lib/python3.11/encodings/cp857.py", + "lib/python3.11/encodings/cp858.py", + "lib/python3.11/encodings/cp860.py", + "lib/python3.11/encodings/cp861.py", + "lib/python3.11/encodings/cp862.py", + "lib/python3.11/encodings/cp863.py", + "lib/python3.11/encodings/cp864.py", + "lib/python3.11/encodings/cp865.py", + "lib/python3.11/encodings/cp866.py", + "lib/python3.11/encodings/cp869.py", + "lib/python3.11/encodings/cp874.py", + "lib/python3.11/encodings/cp875.py", + "lib/python3.11/encodings/cp932.py", + "lib/python3.11/encodings/cp949.py", + "lib/python3.11/encodings/cp950.py", + "lib/python3.11/encodings/euc_jis_2004.py", + "lib/python3.11/encodings/euc_jisx0213.py", + "lib/python3.11/encodings/euc_jp.py", + "lib/python3.11/encodings/euc_kr.py", + "lib/python3.11/encodings/gb18030.py", + "lib/python3.11/encodings/gb2312.py", + "lib/python3.11/encodings/gbk.py", + "lib/python3.11/encodings/hex_codec.py", + "lib/python3.11/encodings/hp_roman8.py", + "lib/python3.11/encodings/hz.py", + "lib/python3.11/encodings/idna.py", + "lib/python3.11/encodings/iso2022_jp.py", + "lib/python3.11/encodings/iso2022_jp_1.py", + "lib/python3.11/encodings/iso2022_jp_2.py", + "lib/python3.11/encodings/iso2022_jp_2004.py", + "lib/python3.11/encodings/iso2022_jp_3.py", + "lib/python3.11/encodings/iso2022_jp_ext.py", + "lib/python3.11/encodings/iso2022_kr.py", + "lib/python3.11/encodings/iso8859_1.py", + "lib/python3.11/encodings/iso8859_10.py", + "lib/python3.11/encodings/iso8859_11.py", + "lib/python3.11/encodings/iso8859_13.py", + "lib/python3.11/encodings/iso8859_14.py", + "lib/python3.11/encodings/iso8859_15.py", + "lib/python3.11/encodings/iso8859_16.py", + "lib/python3.11/encodings/iso8859_2.py", + "lib/python3.11/encodings/iso8859_3.py", + "lib/python3.11/encodings/iso8859_4.py", + "lib/python3.11/encodings/iso8859_5.py", + "lib/python3.11/encodings/iso8859_6.py", + "lib/python3.11/encodings/iso8859_7.py", + "lib/python3.11/encodings/iso8859_8.py", + "lib/python3.11/encodings/iso8859_9.py", + "lib/python3.11/encodings/johab.py", + "lib/python3.11/encodings/koi8_r.py", + "lib/python3.11/encodings/koi8_t.py", + "lib/python3.11/encodings/koi8_u.py", + "lib/python3.11/encodings/kz1048.py", + "lib/python3.11/encodings/latin_1.py", + "lib/python3.11/encodings/mac_arabic.py", + "lib/python3.11/encodings/mac_croatian.py", + "lib/python3.11/encodings/mac_cyrillic.py", + "lib/python3.11/encodings/mac_farsi.py", + "lib/python3.11/encodings/mac_greek.py", + "lib/python3.11/encodings/mac_iceland.py", + "lib/python3.11/encodings/mac_latin2.py", + "lib/python3.11/encodings/mac_roman.py", + "lib/python3.11/encodings/mac_romanian.py", + "lib/python3.11/encodings/mac_turkish.py", + "lib/python3.11/encodings/mbcs.py", + "lib/python3.11/encodings/oem.py", + "lib/python3.11/encodings/palmos.py", + "lib/python3.11/encodings/ptcp154.py", + "lib/python3.11/encodings/punycode.py", + "lib/python3.11/encodings/quopri_codec.py", + "lib/python3.11/encodings/raw_unicode_escape.py", + "lib/python3.11/encodings/rot_13.py", + "lib/python3.11/encodings/shift_jis.py", + "lib/python3.11/encodings/shift_jis_2004.py", + "lib/python3.11/encodings/shift_jisx0213.py", + "lib/python3.11/encodings/tis_620.py", + "lib/python3.11/encodings/undefined.py", + "lib/python3.11/encodings/unicode_escape.py", + "lib/python3.11/encodings/utf_16.py", + "lib/python3.11/encodings/utf_16_be.py", + "lib/python3.11/encodings/utf_16_le.py", + "lib/python3.11/encodings/utf_32.py", + "lib/python3.11/encodings/utf_32_be.py", + "lib/python3.11/encodings/utf_32_le.py", + "lib/python3.11/encodings/utf_7.py", + "lib/python3.11/encodings/utf_8.py", + "lib/python3.11/encodings/utf_8_sig.py", + "lib/python3.11/encodings/uu_codec.py", + "lib/python3.11/encodings/zlib_codec.py", + "lib/python3.11/ensurepip/__init__.py", + "lib/python3.11/ensurepip/__main__.py", + "lib/python3.11/ensurepip/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/ensurepip/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/ensurepip/__pycache__/_uninstall.cpython-311.pyc", + "lib/python3.11/ensurepip/_bundled/pip-23.2.1-py3-none-any.whl", + "lib/python3.11/ensurepip/_bundled/setuptools-65.5.0-py3-none-any.whl", + "lib/python3.11/ensurepip/_uninstall.py", + "lib/python3.11/enum.py", + "lib/python3.11/filecmp.py", + "lib/python3.11/fileinput.py", + "lib/python3.11/fnmatch.py", + "lib/python3.11/fractions.py", + "lib/python3.11/ftplib.py", + "lib/python3.11/functools.py", + "lib/python3.11/genericpath.py", + "lib/python3.11/getopt.py", + "lib/python3.11/getpass.py", + "lib/python3.11/gettext.py", + "lib/python3.11/glob.py", + "lib/python3.11/graphlib.py", + "lib/python3.11/gzip.py", + "lib/python3.11/hashlib.py", + "lib/python3.11/heapq.py", + "lib/python3.11/hmac.py", + "lib/python3.11/html/__init__.py", + "lib/python3.11/html/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/html/__pycache__/entities.cpython-311.pyc", + "lib/python3.11/html/__pycache__/parser.cpython-311.pyc", + "lib/python3.11/html/entities.py", + "lib/python3.11/html/parser.py", + "lib/python3.11/http/__init__.py", + "lib/python3.11/http/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/http/__pycache__/client.cpython-311.pyc", + "lib/python3.11/http/__pycache__/cookiejar.cpython-311.pyc", + "lib/python3.11/http/__pycache__/cookies.cpython-311.pyc", + "lib/python3.11/http/__pycache__/server.cpython-311.pyc", + "lib/python3.11/http/client.py", + "lib/python3.11/http/cookiejar.py", + "lib/python3.11/http/cookies.py", + "lib/python3.11/http/server.py", + "lib/python3.11/idlelib/CREDITS.txt", + "lib/python3.11/idlelib/ChangeLog", + "lib/python3.11/idlelib/HISTORY.txt", + "lib/python3.11/idlelib/Icons/README.txt", + "lib/python3.11/idlelib/Icons/folder.gif", + "lib/python3.11/idlelib/Icons/idle.ico", + "lib/python3.11/idlelib/Icons/idle_16.gif", + "lib/python3.11/idlelib/Icons/idle_16.png", + "lib/python3.11/idlelib/Icons/idle_256.png", + "lib/python3.11/idlelib/Icons/idle_32.gif", + "lib/python3.11/idlelib/Icons/idle_32.png", + "lib/python3.11/idlelib/Icons/idle_48.gif", + "lib/python3.11/idlelib/Icons/idle_48.png", + "lib/python3.11/idlelib/Icons/minusnode.gif", + "lib/python3.11/idlelib/Icons/openfolder.gif", + "lib/python3.11/idlelib/Icons/plusnode.gif", + "lib/python3.11/idlelib/Icons/python.gif", + "lib/python3.11/idlelib/Icons/tk.gif", + "lib/python3.11/idlelib/NEWS.txt", + "lib/python3.11/idlelib/NEWS2x.txt", + "lib/python3.11/idlelib/README.txt", + "lib/python3.11/idlelib/TODO.txt", + "lib/python3.11/idlelib/__init__.py", + "lib/python3.11/idlelib/__main__.py", + "lib/python3.11/idlelib/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/autocomplete.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/autocomplete_w.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/autoexpand.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/browser.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/calltip.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/calltip_w.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/codecontext.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/colorizer.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/config.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/config_key.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/configdialog.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/debugger.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/debugger_r.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/debugobj.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/debugobj_r.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/delegator.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/dynoption.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/editor.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/filelist.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/format.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/grep.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/help.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/help_about.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/history.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/hyperparser.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/idle.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/iomenu.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/macosx.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/mainmenu.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/multicall.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/outwin.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/parenmatch.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/pathbrowser.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/percolator.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/pyparse.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/pyshell.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/query.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/redirector.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/replace.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/rpc.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/run.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/runscript.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/scrolledlist.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/search.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/searchbase.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/searchengine.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/sidebar.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/squeezer.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/stackviewer.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/statusbar.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/textview.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/tooltip.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/tree.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/undo.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/util.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/window.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/zoomheight.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/zzdummy.cpython-311.pyc", + "lib/python3.11/idlelib/autocomplete.py", + "lib/python3.11/idlelib/autocomplete_w.py", + "lib/python3.11/idlelib/autoexpand.py", + "lib/python3.11/idlelib/browser.py", + "lib/python3.11/idlelib/calltip.py", + "lib/python3.11/idlelib/calltip_w.py", + "lib/python3.11/idlelib/codecontext.py", + "lib/python3.11/idlelib/colorizer.py", + "lib/python3.11/idlelib/config-extensions.def", + "lib/python3.11/idlelib/config-highlight.def", + "lib/python3.11/idlelib/config-keys.def", + "lib/python3.11/idlelib/config-main.def", + "lib/python3.11/idlelib/config.py", + "lib/python3.11/idlelib/config_key.py", + "lib/python3.11/idlelib/configdialog.py", + "lib/python3.11/idlelib/debugger.py", + "lib/python3.11/idlelib/debugger_r.py", + "lib/python3.11/idlelib/debugobj.py", + "lib/python3.11/idlelib/debugobj_r.py", + "lib/python3.11/idlelib/delegator.py", + "lib/python3.11/idlelib/dynoption.py", + "lib/python3.11/idlelib/editor.py", + "lib/python3.11/idlelib/extend.txt", + "lib/python3.11/idlelib/filelist.py", + "lib/python3.11/idlelib/format.py", + "lib/python3.11/idlelib/grep.py", + "lib/python3.11/idlelib/help.html", + "lib/python3.11/idlelib/help.py", + "lib/python3.11/idlelib/help_about.py", + "lib/python3.11/idlelib/history.py", + "lib/python3.11/idlelib/hyperparser.py", + "lib/python3.11/idlelib/idle.bat", + "lib/python3.11/idlelib/idle.py", + "lib/python3.11/idlelib/idle.pyw", + "lib/python3.11/idlelib/idle_test/README.txt", + "lib/python3.11/idlelib/idle_test/__init__.py", + "lib/python3.11/idlelib/idle_test/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/htest.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/mock_idle.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/mock_tk.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/template.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_autocomplete.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_autocomplete_w.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_autoexpand.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_browser.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_calltip.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_calltip_w.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_codecontext.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_colorizer.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_config.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_config_key.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_configdialog.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_debugger.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_debugger_r.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_debugobj.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_debugobj_r.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_delegator.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_editmenu.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_editor.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_filelist.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_format.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_grep.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_help.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_help_about.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_history.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_hyperparser.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_iomenu.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_macosx.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_mainmenu.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_multicall.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_outwin.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_parenmatch.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_pathbrowser.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_percolator.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_pyparse.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_pyshell.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_query.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_redirector.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_replace.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_rpc.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_run.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_runscript.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_scrolledlist.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_search.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_searchbase.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_searchengine.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_sidebar.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_squeezer.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_stackviewer.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_statusbar.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_text.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_textview.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_tooltip.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_tree.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_undo.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_util.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_warning.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_window.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_zoomheight.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_zzdummy.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/tkinter_testing_utils.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/example_noext", + "lib/python3.11/idlelib/idle_test/example_stub.pyi", + "lib/python3.11/idlelib/idle_test/htest.py", + "lib/python3.11/idlelib/idle_test/mock_idle.py", + "lib/python3.11/idlelib/idle_test/mock_tk.py", + "lib/python3.11/idlelib/idle_test/template.py", + "lib/python3.11/idlelib/idle_test/test_autocomplete.py", + "lib/python3.11/idlelib/idle_test/test_autocomplete_w.py", + "lib/python3.11/idlelib/idle_test/test_autoexpand.py", + "lib/python3.11/idlelib/idle_test/test_browser.py", + "lib/python3.11/idlelib/idle_test/test_calltip.py", + "lib/python3.11/idlelib/idle_test/test_calltip_w.py", + "lib/python3.11/idlelib/idle_test/test_codecontext.py", + "lib/python3.11/idlelib/idle_test/test_colorizer.py", + "lib/python3.11/idlelib/idle_test/test_config.py", + "lib/python3.11/idlelib/idle_test/test_config_key.py", + "lib/python3.11/idlelib/idle_test/test_configdialog.py", + "lib/python3.11/idlelib/idle_test/test_debugger.py", + "lib/python3.11/idlelib/idle_test/test_debugger_r.py", + "lib/python3.11/idlelib/idle_test/test_debugobj.py", + "lib/python3.11/idlelib/idle_test/test_debugobj_r.py", + "lib/python3.11/idlelib/idle_test/test_delegator.py", + "lib/python3.11/idlelib/idle_test/test_editmenu.py", + "lib/python3.11/idlelib/idle_test/test_editor.py", + "lib/python3.11/idlelib/idle_test/test_filelist.py", + "lib/python3.11/idlelib/idle_test/test_format.py", + "lib/python3.11/idlelib/idle_test/test_grep.py", + "lib/python3.11/idlelib/idle_test/test_help.py", + "lib/python3.11/idlelib/idle_test/test_help_about.py", + "lib/python3.11/idlelib/idle_test/test_history.py", + "lib/python3.11/idlelib/idle_test/test_hyperparser.py", + "lib/python3.11/idlelib/idle_test/test_iomenu.py", + "lib/python3.11/idlelib/idle_test/test_macosx.py", + "lib/python3.11/idlelib/idle_test/test_mainmenu.py", + "lib/python3.11/idlelib/idle_test/test_multicall.py", + "lib/python3.11/idlelib/idle_test/test_outwin.py", + "lib/python3.11/idlelib/idle_test/test_parenmatch.py", + "lib/python3.11/idlelib/idle_test/test_pathbrowser.py", + "lib/python3.11/idlelib/idle_test/test_percolator.py", + "lib/python3.11/idlelib/idle_test/test_pyparse.py", + "lib/python3.11/idlelib/idle_test/test_pyshell.py", + "lib/python3.11/idlelib/idle_test/test_query.py", + "lib/python3.11/idlelib/idle_test/test_redirector.py", + "lib/python3.11/idlelib/idle_test/test_replace.py", + "lib/python3.11/idlelib/idle_test/test_rpc.py", + "lib/python3.11/idlelib/idle_test/test_run.py", + "lib/python3.11/idlelib/idle_test/test_runscript.py", + "lib/python3.11/idlelib/idle_test/test_scrolledlist.py", + "lib/python3.11/idlelib/idle_test/test_search.py", + "lib/python3.11/idlelib/idle_test/test_searchbase.py", + "lib/python3.11/idlelib/idle_test/test_searchengine.py", + "lib/python3.11/idlelib/idle_test/test_sidebar.py", + "lib/python3.11/idlelib/idle_test/test_squeezer.py", + "lib/python3.11/idlelib/idle_test/test_stackviewer.py", + "lib/python3.11/idlelib/idle_test/test_statusbar.py", + "lib/python3.11/idlelib/idle_test/test_text.py", + "lib/python3.11/idlelib/idle_test/test_textview.py", + "lib/python3.11/idlelib/idle_test/test_tooltip.py", + "lib/python3.11/idlelib/idle_test/test_tree.py", + "lib/python3.11/idlelib/idle_test/test_undo.py", + "lib/python3.11/idlelib/idle_test/test_util.py", + "lib/python3.11/idlelib/idle_test/test_warning.py", + "lib/python3.11/idlelib/idle_test/test_window.py", + "lib/python3.11/idlelib/idle_test/test_zoomheight.py", + "lib/python3.11/idlelib/idle_test/test_zzdummy.py", + "lib/python3.11/idlelib/idle_test/tkinter_testing_utils.py", + "lib/python3.11/idlelib/iomenu.py", + "lib/python3.11/idlelib/macosx.py", + "lib/python3.11/idlelib/mainmenu.py", + "lib/python3.11/idlelib/multicall.py", + "lib/python3.11/idlelib/outwin.py", + "lib/python3.11/idlelib/parenmatch.py", + "lib/python3.11/idlelib/pathbrowser.py", + "lib/python3.11/idlelib/percolator.py", + "lib/python3.11/idlelib/pyparse.py", + "lib/python3.11/idlelib/pyshell.py", + "lib/python3.11/idlelib/query.py", + "lib/python3.11/idlelib/redirector.py", + "lib/python3.11/idlelib/replace.py", + "lib/python3.11/idlelib/rpc.py", + "lib/python3.11/idlelib/run.py", + "lib/python3.11/idlelib/runscript.py", + "lib/python3.11/idlelib/scrolledlist.py", + "lib/python3.11/idlelib/search.py", + "lib/python3.11/idlelib/searchbase.py", + "lib/python3.11/idlelib/searchengine.py", + "lib/python3.11/idlelib/sidebar.py", + "lib/python3.11/idlelib/squeezer.py", + "lib/python3.11/idlelib/stackviewer.py", + "lib/python3.11/idlelib/statusbar.py", + "lib/python3.11/idlelib/textview.py", + "lib/python3.11/idlelib/tooltip.py", + "lib/python3.11/idlelib/tree.py", + "lib/python3.11/idlelib/undo.py", + "lib/python3.11/idlelib/util.py", + "lib/python3.11/idlelib/window.py", + "lib/python3.11/idlelib/zoomheight.py", + "lib/python3.11/idlelib/zzdummy.py", + "lib/python3.11/imaplib.py", + "lib/python3.11/imghdr.py", + "lib/python3.11/imp.py", + "lib/python3.11/importlib/__init__.py", + "lib/python3.11/importlib/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/_abc.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/_bootstrap.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/_bootstrap_external.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/abc.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/machinery.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/readers.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/simple.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/util.cpython-311.pyc", + "lib/python3.11/importlib/_abc.py", + "lib/python3.11/importlib/_bootstrap.py", + "lib/python3.11/importlib/_bootstrap_external.py", + "lib/python3.11/importlib/abc.py", + "lib/python3.11/importlib/machinery.py", + "lib/python3.11/importlib/metadata/__init__.py", + "lib/python3.11/importlib/metadata/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/importlib/metadata/__pycache__/_adapters.cpython-311.pyc", + "lib/python3.11/importlib/metadata/__pycache__/_collections.cpython-311.pyc", + "lib/python3.11/importlib/metadata/__pycache__/_functools.cpython-311.pyc", + "lib/python3.11/importlib/metadata/__pycache__/_itertools.cpython-311.pyc", + "lib/python3.11/importlib/metadata/__pycache__/_meta.cpython-311.pyc", + "lib/python3.11/importlib/metadata/__pycache__/_text.cpython-311.pyc", + "lib/python3.11/importlib/metadata/_adapters.py", + "lib/python3.11/importlib/metadata/_collections.py", + "lib/python3.11/importlib/metadata/_functools.py", + "lib/python3.11/importlib/metadata/_itertools.py", + "lib/python3.11/importlib/metadata/_meta.py", + "lib/python3.11/importlib/metadata/_text.py", + "lib/python3.11/importlib/readers.py", + "lib/python3.11/importlib/resources/__init__.py", + "lib/python3.11/importlib/resources/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/_adapters.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/_common.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/_itertools.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/_legacy.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/abc.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/readers.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/simple.cpython-311.pyc", + "lib/python3.11/importlib/resources/_adapters.py", + "lib/python3.11/importlib/resources/_common.py", + "lib/python3.11/importlib/resources/_itertools.py", + "lib/python3.11/importlib/resources/_legacy.py", + "lib/python3.11/importlib/resources/abc.py", + "lib/python3.11/importlib/resources/readers.py", + "lib/python3.11/importlib/resources/simple.py", + "lib/python3.11/importlib/simple.py", + "lib/python3.11/importlib/util.py", + "lib/python3.11/inspect.py", + "lib/python3.11/io.py", + "lib/python3.11/ipaddress.py", + "lib/python3.11/json/__init__.py", + "lib/python3.11/json/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/json/__pycache__/decoder.cpython-311.pyc", + "lib/python3.11/json/__pycache__/encoder.cpython-311.pyc", + "lib/python3.11/json/__pycache__/scanner.cpython-311.pyc", + "lib/python3.11/json/__pycache__/tool.cpython-311.pyc", + "lib/python3.11/json/decoder.py", + "lib/python3.11/json/encoder.py", + "lib/python3.11/json/scanner.py", + "lib/python3.11/json/tool.py", + "lib/python3.11/keyword.py", + "lib/python3.11/lib-dynload/_asyncio.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_bisect.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_blake2.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_bz2.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_codecs_cn.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_codecs_hk.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_codecs_iso2022.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_codecs_jp.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_codecs_kr.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_codecs_tw.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_contextvars.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_crypt.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_csv.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_ctypes.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_ctypes_test.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_curses.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_curses_panel.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_datetime.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_dbm.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_decimal.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_elementtree.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_hashlib.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_heapq.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_json.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_lsprof.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_lzma.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_md5.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_multibytecodec.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_multiprocessing.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_opcode.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_pickle.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_posixshmem.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_posixsubprocess.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_queue.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_random.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_scproxy.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_sha1.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_sha256.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_sha3.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_sha512.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_socket.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_sqlite3.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_ssl.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_statistics.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_struct.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_testbuffer.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_testcapi.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_testclinic.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_testimportmultiple.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_testinternalcapi.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_testmultiphase.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_tkinter.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_typing.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_uuid.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_xxsubinterpreters.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_xxtestfuzz.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_zoneinfo.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/array.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/audioop.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/binascii.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/cmath.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/fcntl.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/grp.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/math.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/mmap.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/nis.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/pyexpat.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/readline.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/resource.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/select.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/syslog.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/termios.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/unicodedata.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/xxlimited.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/xxlimited_35.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/zlib.cpython-311-darwin.so", + "lib/python3.11/lib2to3/Grammar.txt", + "lib/python3.11/lib2to3/Grammar3.11.5.final.0.pickle", + "lib/python3.11/lib2to3/PatternGrammar.txt", + "lib/python3.11/lib2to3/PatternGrammar3.11.5.final.0.pickle", + "lib/python3.11/lib2to3/__init__.py", + "lib/python3.11/lib2to3/__main__.py", + "lib/python3.11/lib2to3/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/btm_matcher.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/btm_utils.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/fixer_base.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/fixer_util.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/main.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/patcomp.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/pygram.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/pytree.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/refactor.cpython-311.pyc", + "lib/python3.11/lib2to3/btm_matcher.py", + "lib/python3.11/lib2to3/btm_utils.py", + "lib/python3.11/lib2to3/fixer_base.py", + "lib/python3.11/lib2to3/fixer_util.py", + "lib/python3.11/lib2to3/fixes/__init__.py", + "lib/python3.11/lib2to3/fixes/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_apply.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_asserts.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_basestring.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_buffer.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_dict.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_except.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_exec.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_execfile.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_exitfunc.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_filter.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_funcattrs.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_future.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_getcwdu.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_has_key.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_idioms.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_import.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_imports.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_imports2.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_input.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_intern.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_isinstance.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_itertools.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_itertools_imports.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_long.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_map.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_metaclass.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_methodattrs.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_ne.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_next.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_nonzero.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_numliterals.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_operator.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_paren.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_print.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_raise.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_raw_input.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_reduce.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_reload.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_renames.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_repr.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_set_literal.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_standarderror.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_sys_exc.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_throw.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_tuple_params.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_types.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_unicode.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_urllib.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_ws_comma.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_xrange.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_xreadlines.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_zip.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/fix_apply.py", + "lib/python3.11/lib2to3/fixes/fix_asserts.py", + "lib/python3.11/lib2to3/fixes/fix_basestring.py", + "lib/python3.11/lib2to3/fixes/fix_buffer.py", + "lib/python3.11/lib2to3/fixes/fix_dict.py", + "lib/python3.11/lib2to3/fixes/fix_except.py", + "lib/python3.11/lib2to3/fixes/fix_exec.py", + "lib/python3.11/lib2to3/fixes/fix_execfile.py", + "lib/python3.11/lib2to3/fixes/fix_exitfunc.py", + "lib/python3.11/lib2to3/fixes/fix_filter.py", + "lib/python3.11/lib2to3/fixes/fix_funcattrs.py", + "lib/python3.11/lib2to3/fixes/fix_future.py", + "lib/python3.11/lib2to3/fixes/fix_getcwdu.py", + "lib/python3.11/lib2to3/fixes/fix_has_key.py", + "lib/python3.11/lib2to3/fixes/fix_idioms.py", + "lib/python3.11/lib2to3/fixes/fix_import.py", + "lib/python3.11/lib2to3/fixes/fix_imports.py", + "lib/python3.11/lib2to3/fixes/fix_imports2.py", + "lib/python3.11/lib2to3/fixes/fix_input.py", + "lib/python3.11/lib2to3/fixes/fix_intern.py", + "lib/python3.11/lib2to3/fixes/fix_isinstance.py", + "lib/python3.11/lib2to3/fixes/fix_itertools.py", + "lib/python3.11/lib2to3/fixes/fix_itertools_imports.py", + "lib/python3.11/lib2to3/fixes/fix_long.py", + "lib/python3.11/lib2to3/fixes/fix_map.py", + "lib/python3.11/lib2to3/fixes/fix_metaclass.py", + "lib/python3.11/lib2to3/fixes/fix_methodattrs.py", + "lib/python3.11/lib2to3/fixes/fix_ne.py", + "lib/python3.11/lib2to3/fixes/fix_next.py", + "lib/python3.11/lib2to3/fixes/fix_nonzero.py", + "lib/python3.11/lib2to3/fixes/fix_numliterals.py", + "lib/python3.11/lib2to3/fixes/fix_operator.py", + "lib/python3.11/lib2to3/fixes/fix_paren.py", + "lib/python3.11/lib2to3/fixes/fix_print.py", + "lib/python3.11/lib2to3/fixes/fix_raise.py", + "lib/python3.11/lib2to3/fixes/fix_raw_input.py", + "lib/python3.11/lib2to3/fixes/fix_reduce.py", + "lib/python3.11/lib2to3/fixes/fix_reload.py", + "lib/python3.11/lib2to3/fixes/fix_renames.py", + "lib/python3.11/lib2to3/fixes/fix_repr.py", + "lib/python3.11/lib2to3/fixes/fix_set_literal.py", + "lib/python3.11/lib2to3/fixes/fix_standarderror.py", + "lib/python3.11/lib2to3/fixes/fix_sys_exc.py", + "lib/python3.11/lib2to3/fixes/fix_throw.py", + "lib/python3.11/lib2to3/fixes/fix_tuple_params.py", + "lib/python3.11/lib2to3/fixes/fix_types.py", + "lib/python3.11/lib2to3/fixes/fix_unicode.py", + "lib/python3.11/lib2to3/fixes/fix_urllib.py", + "lib/python3.11/lib2to3/fixes/fix_ws_comma.py", + "lib/python3.11/lib2to3/fixes/fix_xrange.py", + "lib/python3.11/lib2to3/fixes/fix_xreadlines.py", + "lib/python3.11/lib2to3/fixes/fix_zip.py", + "lib/python3.11/lib2to3/main.py", + "lib/python3.11/lib2to3/patcomp.py", + "lib/python3.11/lib2to3/pgen2/__init__.py", + "lib/python3.11/lib2to3/pgen2/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/conv.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/driver.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/grammar.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/literals.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/parse.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/pgen.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/token.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/tokenize.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/conv.py", + "lib/python3.11/lib2to3/pgen2/driver.py", + "lib/python3.11/lib2to3/pgen2/grammar.py", + "lib/python3.11/lib2to3/pgen2/literals.py", + "lib/python3.11/lib2to3/pgen2/parse.py", + "lib/python3.11/lib2to3/pgen2/pgen.py", + "lib/python3.11/lib2to3/pgen2/token.py", + "lib/python3.11/lib2to3/pgen2/tokenize.py", + "lib/python3.11/lib2to3/pygram.py", + "lib/python3.11/lib2to3/pytree.py", + "lib/python3.11/lib2to3/refactor.py", + "lib/python3.11/lib2to3/tests/__init__.py", + "lib/python3.11/lib2to3/tests/__main__.py", + "lib/python3.11/lib2to3/tests/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/pytree_idempotency.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/support.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_all_fixers.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_fixers.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_main.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_parser.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_pytree.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_refactor.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_util.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/README", + "lib/python3.11/lib2to3/tests/data/__pycache__/infinite_recursion.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/__pycache__/py3_test_grammar.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/bom.py", + "lib/python3.11/lib2to3/tests/data/crlf.py", + "lib/python3.11/lib2to3/tests/data/different_encoding.py", + "lib/python3.11/lib2to3/tests/data/false_encoding.py", + "lib/python3.11/lib2to3/tests/data/fixers/__pycache__/bad_order.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/__pycache__/no_fixer_cls.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/__pycache__/parrot_example.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/bad_order.py", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__init__.py", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__pycache__/fix_explicit.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__pycache__/fix_first.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__pycache__/fix_last.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__pycache__/fix_parrot.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__pycache__/fix_preorder.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/fix_explicit.py", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/fix_first.py", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/fix_last.py", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/fix_parrot.py", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/fix_preorder.py", + "lib/python3.11/lib2to3/tests/data/fixers/no_fixer_cls.py", + "lib/python3.11/lib2to3/tests/data/fixers/parrot_example.py", + "lib/python3.11/lib2to3/tests/data/infinite_recursion.py", + "lib/python3.11/lib2to3/tests/data/py2_test_grammar.py", + "lib/python3.11/lib2to3/tests/data/py3_test_grammar.py", + "lib/python3.11/lib2to3/tests/pytree_idempotency.py", + "lib/python3.11/lib2to3/tests/support.py", + "lib/python3.11/lib2to3/tests/test_all_fixers.py", + "lib/python3.11/lib2to3/tests/test_fixers.py", + "lib/python3.11/lib2to3/tests/test_main.py", + "lib/python3.11/lib2to3/tests/test_parser.py", + "lib/python3.11/lib2to3/tests/test_pytree.py", + "lib/python3.11/lib2to3/tests/test_refactor.py", + "lib/python3.11/lib2to3/tests/test_util.py", + "lib/python3.11/linecache.py", + "lib/python3.11/locale.py", + "lib/python3.11/logging/__init__.py", + "lib/python3.11/logging/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/logging/__pycache__/config.cpython-311.pyc", + "lib/python3.11/logging/__pycache__/handlers.cpython-311.pyc", + "lib/python3.11/logging/config.py", + "lib/python3.11/logging/handlers.py", + "lib/python3.11/lzma.py", + "lib/python3.11/mailbox.py", + "lib/python3.11/mailcap.py", + "lib/python3.11/mimetypes.py", + "lib/python3.11/modulefinder.py", + "lib/python3.11/multiprocessing/__init__.py", + "lib/python3.11/multiprocessing/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/connection.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/context.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/forkserver.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/heap.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/managers.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/pool.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/popen_fork.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/popen_forkserver.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/popen_spawn_posix.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/popen_spawn_win32.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/process.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/queues.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/reduction.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/resource_sharer.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/resource_tracker.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/shared_memory.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/sharedctypes.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/spawn.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/synchronize.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/util.cpython-311.pyc", + "lib/python3.11/multiprocessing/connection.py", + "lib/python3.11/multiprocessing/context.py", + "lib/python3.11/multiprocessing/dummy/__init__.py", + "lib/python3.11/multiprocessing/dummy/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/multiprocessing/dummy/__pycache__/connection.cpython-311.pyc", + "lib/python3.11/multiprocessing/dummy/connection.py", + "lib/python3.11/multiprocessing/forkserver.py", + "lib/python3.11/multiprocessing/heap.py", + "lib/python3.11/multiprocessing/managers.py", + "lib/python3.11/multiprocessing/pool.py", + "lib/python3.11/multiprocessing/popen_fork.py", + "lib/python3.11/multiprocessing/popen_forkserver.py", + "lib/python3.11/multiprocessing/popen_spawn_posix.py", + "lib/python3.11/multiprocessing/popen_spawn_win32.py", + "lib/python3.11/multiprocessing/process.py", + "lib/python3.11/multiprocessing/queues.py", + "lib/python3.11/multiprocessing/reduction.py", + "lib/python3.11/multiprocessing/resource_sharer.py", + "lib/python3.11/multiprocessing/resource_tracker.py", + "lib/python3.11/multiprocessing/shared_memory.py", + "lib/python3.11/multiprocessing/sharedctypes.py", + "lib/python3.11/multiprocessing/spawn.py", + "lib/python3.11/multiprocessing/synchronize.py", + "lib/python3.11/multiprocessing/util.py", + "lib/python3.11/netrc.py", + "lib/python3.11/nntplib.py", + "lib/python3.11/ntpath.py", + "lib/python3.11/nturl2path.py", + "lib/python3.11/numbers.py", + "lib/python3.11/opcode.py", + "lib/python3.11/operator.py", + "lib/python3.11/optparse.py", + "lib/python3.11/os.py", + "lib/python3.11/pathlib.py", + "lib/python3.11/pdb.py", + "lib/python3.11/pickle.py", + "lib/python3.11/pickletools.py", + "lib/python3.11/pipes.py", + "lib/python3.11/pkgutil.py", + "lib/python3.11/platform.py", + "lib/python3.11/plistlib.py", + "lib/python3.11/poplib.py", + "lib/python3.11/posixpath.py", + "lib/python3.11/pprint.py", + "lib/python3.11/profile.py", + "lib/python3.11/pstats.py", + "lib/python3.11/pty.py", + "lib/python3.11/py_compile.py", + "lib/python3.11/pyclbr.py", + "lib/python3.11/pydoc.py", + "lib/python3.11/pydoc_data/__init__.py", + "lib/python3.11/pydoc_data/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/pydoc_data/__pycache__/topics.cpython-311.pyc", + "lib/python3.11/pydoc_data/_pydoc.css", + "lib/python3.11/pydoc_data/topics.py", + "lib/python3.11/queue.py", + "lib/python3.11/quopri.py", + "lib/python3.11/random.py", + "lib/python3.11/re/__init__.py", + "lib/python3.11/re/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/re/__pycache__/_casefix.cpython-311.pyc", + "lib/python3.11/re/__pycache__/_compiler.cpython-311.pyc", + "lib/python3.11/re/__pycache__/_constants.cpython-311.pyc", + "lib/python3.11/re/__pycache__/_parser.cpython-311.pyc", + "lib/python3.11/re/_casefix.py", + "lib/python3.11/re/_compiler.py", + "lib/python3.11/re/_constants.py", + "lib/python3.11/re/_parser.py", + "lib/python3.11/reprlib.py", + "lib/python3.11/rlcompleter.py", + "lib/python3.11/runpy.py", + "lib/python3.11/sched.py", + "lib/python3.11/secrets.py", + "lib/python3.11/selectors.py", + "lib/python3.11/shelve.py", + "lib/python3.11/shlex.py", + "lib/python3.11/shutil.py", + "lib/python3.11/signal.py", + "lib/python3.11/site-packages/README.txt", + "lib/python3.11/site.py", + "lib/python3.11/smtpd.py", + "lib/python3.11/smtplib.py", + "lib/python3.11/sndhdr.py", + "lib/python3.11/socket.py", + "lib/python3.11/socketserver.py", + "lib/python3.11/sqlite3/__init__.py", + "lib/python3.11/sqlite3/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/sqlite3/__pycache__/dbapi2.cpython-311.pyc", + "lib/python3.11/sqlite3/__pycache__/dump.cpython-311.pyc", + "lib/python3.11/sqlite3/dbapi2.py", + "lib/python3.11/sqlite3/dump.py", + "lib/python3.11/sre_compile.py", + "lib/python3.11/sre_constants.py", + "lib/python3.11/sre_parse.py", + "lib/python3.11/ssl.py", + "lib/python3.11/stat.py", + "lib/python3.11/statistics.py", + "lib/python3.11/string.py", + "lib/python3.11/stringprep.py", + "lib/python3.11/struct.py", + "lib/python3.11/subprocess.py", + "lib/python3.11/sunau.py", + "lib/python3.11/symtable.py", + "lib/python3.11/sysconfig.py", + "lib/python3.11/tabnanny.py", + "lib/python3.11/tarfile.py", + "lib/python3.11/telnetlib.py", + "lib/python3.11/tempfile.py", + "lib/python3.11/test/__init__.py", + "lib/python3.11/test/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/test/__pycache__/test_script_helper.cpython-311.pyc", + "lib/python3.11/test/__pycache__/test_support.cpython-311.pyc", + "lib/python3.11/test/support/__init__.py", + "lib/python3.11/test/support/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/bytecode_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/hashlib_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/import_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/interpreters.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/logging_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/os_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/script_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/socket_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/testresult.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/threading_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/warnings_helper.cpython-311.pyc", + "lib/python3.11/test/support/bytecode_helper.py", + "lib/python3.11/test/support/hashlib_helper.py", + "lib/python3.11/test/support/import_helper.py", + "lib/python3.11/test/support/interpreters.py", + "lib/python3.11/test/support/logging_helper.py", + "lib/python3.11/test/support/os_helper.py", + "lib/python3.11/test/support/script_helper.py", + "lib/python3.11/test/support/socket_helper.py", + "lib/python3.11/test/support/testresult.py", + "lib/python3.11/test/support/threading_helper.py", + "lib/python3.11/test/support/warnings_helper.py", + "lib/python3.11/test/test_script_helper.py", + "lib/python3.11/test/test_support.py", + "lib/python3.11/textwrap.py", + "lib/python3.11/this.py", + "lib/python3.11/threading.py", + "lib/python3.11/timeit.py", + "lib/python3.11/tkinter/__init__.py", + "lib/python3.11/tkinter/__main__.py", + "lib/python3.11/tkinter/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/colorchooser.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/commondialog.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/constants.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/dialog.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/dnd.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/filedialog.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/font.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/messagebox.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/scrolledtext.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/simpledialog.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/tix.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/ttk.cpython-311.pyc", + "lib/python3.11/tkinter/colorchooser.py", + "lib/python3.11/tkinter/commondialog.py", + "lib/python3.11/tkinter/constants.py", + "lib/python3.11/tkinter/dialog.py", + "lib/python3.11/tkinter/dnd.py", + "lib/python3.11/tkinter/filedialog.py", + "lib/python3.11/tkinter/font.py", + "lib/python3.11/tkinter/messagebox.py", + "lib/python3.11/tkinter/scrolledtext.py", + "lib/python3.11/tkinter/simpledialog.py", + "lib/python3.11/tkinter/tix.py", + "lib/python3.11/tkinter/ttk.py", + "lib/python3.11/token.py", + "lib/python3.11/tokenize.py", + "lib/python3.11/tomllib/__init__.py", + "lib/python3.11/tomllib/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/tomllib/__pycache__/_parser.cpython-311.pyc", + "lib/python3.11/tomllib/__pycache__/_re.cpython-311.pyc", + "lib/python3.11/tomllib/__pycache__/_types.cpython-311.pyc", + "lib/python3.11/tomllib/_parser.py", + "lib/python3.11/tomllib/_re.py", + "lib/python3.11/tomllib/_types.py", + "lib/python3.11/trace.py", + "lib/python3.11/traceback.py", + "lib/python3.11/tracemalloc.py", + "lib/python3.11/tty.py", + "lib/python3.11/turtle.py", + "lib/python3.11/turtledemo/__init__.py", + "lib/python3.11/turtledemo/__main__.py", + "lib/python3.11/turtledemo/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/bytedesign.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/chaos.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/clock.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/colormixer.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/forest.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/fractalcurves.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/lindenmayer.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/minimal_hanoi.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/nim.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/paint.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/peace.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/penrose.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/planet_and_moon.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/rosette.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/round_dance.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/sorting_animate.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/tree.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/two_canvases.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/yinyang.cpython-311.pyc", + "lib/python3.11/turtledemo/bytedesign.py", + "lib/python3.11/turtledemo/chaos.py", + "lib/python3.11/turtledemo/clock.py", + "lib/python3.11/turtledemo/colormixer.py", + "lib/python3.11/turtledemo/forest.py", + "lib/python3.11/turtledemo/fractalcurves.py", + "lib/python3.11/turtledemo/lindenmayer.py", + "lib/python3.11/turtledemo/minimal_hanoi.py", + "lib/python3.11/turtledemo/nim.py", + "lib/python3.11/turtledemo/paint.py", + "lib/python3.11/turtledemo/peace.py", + "lib/python3.11/turtledemo/penrose.py", + "lib/python3.11/turtledemo/planet_and_moon.py", + "lib/python3.11/turtledemo/rosette.py", + "lib/python3.11/turtledemo/round_dance.py", + "lib/python3.11/turtledemo/sorting_animate.py", + "lib/python3.11/turtledemo/tree.py", + "lib/python3.11/turtledemo/turtle.cfg", + "lib/python3.11/turtledemo/two_canvases.py", + "lib/python3.11/turtledemo/yinyang.py", + "lib/python3.11/types.py", + "lib/python3.11/typing.py", + "lib/python3.11/unittest/__init__.py", + "lib/python3.11/unittest/__main__.py", + "lib/python3.11/unittest/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/_log.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/async_case.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/case.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/loader.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/main.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/mock.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/result.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/runner.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/signals.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/suite.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/util.cpython-311.pyc", + "lib/python3.11/unittest/_log.py", + "lib/python3.11/unittest/async_case.py", + "lib/python3.11/unittest/case.py", + "lib/python3.11/unittest/loader.py", + "lib/python3.11/unittest/main.py", + "lib/python3.11/unittest/mock.py", + "lib/python3.11/unittest/result.py", + "lib/python3.11/unittest/runner.py", + "lib/python3.11/unittest/signals.py", + "lib/python3.11/unittest/suite.py", + "lib/python3.11/unittest/util.py", + "lib/python3.11/urllib/__init__.py", + "lib/python3.11/urllib/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/urllib/__pycache__/error.cpython-311.pyc", + "lib/python3.11/urllib/__pycache__/parse.cpython-311.pyc", + "lib/python3.11/urllib/__pycache__/request.cpython-311.pyc", + "lib/python3.11/urllib/__pycache__/response.cpython-311.pyc", + "lib/python3.11/urllib/__pycache__/robotparser.cpython-311.pyc", + "lib/python3.11/urllib/error.py", + "lib/python3.11/urllib/parse.py", + "lib/python3.11/urllib/request.py", + "lib/python3.11/urllib/response.py", + "lib/python3.11/urllib/robotparser.py", + "lib/python3.11/uu.py", + "lib/python3.11/uuid.py", + "lib/python3.11/venv/__init__.py", + "lib/python3.11/venv/__main__.py", + "lib/python3.11/venv/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/venv/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/venv/scripts/common/Activate.ps1", + "lib/python3.11/venv/scripts/common/activate", + "lib/python3.11/venv/scripts/posix/activate.csh", + "lib/python3.11/venv/scripts/posix/activate.fish", + "lib/python3.11/warnings.py", + "lib/python3.11/wave.py", + "lib/python3.11/weakref.py", + "lib/python3.11/webbrowser.py", + "lib/python3.11/wsgiref/__init__.py", + "lib/python3.11/wsgiref/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/wsgiref/__pycache__/handlers.cpython-311.pyc", + "lib/python3.11/wsgiref/__pycache__/headers.cpython-311.pyc", + "lib/python3.11/wsgiref/__pycache__/simple_server.cpython-311.pyc", + "lib/python3.11/wsgiref/__pycache__/types.cpython-311.pyc", + "lib/python3.11/wsgiref/__pycache__/util.cpython-311.pyc", + "lib/python3.11/wsgiref/__pycache__/validate.cpython-311.pyc", + "lib/python3.11/wsgiref/handlers.py", + "lib/python3.11/wsgiref/headers.py", + "lib/python3.11/wsgiref/simple_server.py", + "lib/python3.11/wsgiref/types.py", + "lib/python3.11/wsgiref/util.py", + "lib/python3.11/wsgiref/validate.py", + "lib/python3.11/xdrlib.py", + "lib/python3.11/xml/__init__.py", + "lib/python3.11/xml/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/xml/dom/NodeFilter.py", + "lib/python3.11/xml/dom/__init__.py", + "lib/python3.11/xml/dom/__pycache__/NodeFilter.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/domreg.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/expatbuilder.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/minicompat.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/minidom.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/pulldom.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/xmlbuilder.cpython-311.pyc", + "lib/python3.11/xml/dom/domreg.py", + "lib/python3.11/xml/dom/expatbuilder.py", + "lib/python3.11/xml/dom/minicompat.py", + "lib/python3.11/xml/dom/minidom.py", + "lib/python3.11/xml/dom/pulldom.py", + "lib/python3.11/xml/dom/xmlbuilder.py", + "lib/python3.11/xml/etree/ElementInclude.py", + "lib/python3.11/xml/etree/ElementPath.py", + "lib/python3.11/xml/etree/ElementTree.py", + "lib/python3.11/xml/etree/__init__.py", + "lib/python3.11/xml/etree/__pycache__/ElementInclude.cpython-311.pyc", + "lib/python3.11/xml/etree/__pycache__/ElementPath.cpython-311.pyc", + "lib/python3.11/xml/etree/__pycache__/ElementTree.cpython-311.pyc", + "lib/python3.11/xml/etree/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/xml/etree/__pycache__/cElementTree.cpython-311.pyc", + "lib/python3.11/xml/etree/cElementTree.py", + "lib/python3.11/xml/parsers/__init__.py", + "lib/python3.11/xml/parsers/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/xml/parsers/__pycache__/expat.cpython-311.pyc", + "lib/python3.11/xml/parsers/expat.py", + "lib/python3.11/xml/sax/__init__.py", + "lib/python3.11/xml/sax/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/xml/sax/__pycache__/_exceptions.cpython-311.pyc", + "lib/python3.11/xml/sax/__pycache__/expatreader.cpython-311.pyc", + "lib/python3.11/xml/sax/__pycache__/handler.cpython-311.pyc", + "lib/python3.11/xml/sax/__pycache__/saxutils.cpython-311.pyc", + "lib/python3.11/xml/sax/__pycache__/xmlreader.cpython-311.pyc", + "lib/python3.11/xml/sax/_exceptions.py", + "lib/python3.11/xml/sax/expatreader.py", + "lib/python3.11/xml/sax/handler.py", + "lib/python3.11/xml/sax/saxutils.py", + "lib/python3.11/xml/sax/xmlreader.py", + "lib/python3.11/xmlrpc/__init__.py", + "lib/python3.11/xmlrpc/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/xmlrpc/__pycache__/client.cpython-311.pyc", + "lib/python3.11/xmlrpc/__pycache__/server.cpython-311.pyc", + "lib/python3.11/xmlrpc/client.py", + "lib/python3.11/xmlrpc/server.py", + "lib/python3.11/zipapp.py", + "lib/python3.11/zipfile.py", + "lib/python3.11/zipimport.py", + "lib/python3.11/zoneinfo/__init__.py", + "lib/python3.11/zoneinfo/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/zoneinfo/__pycache__/_common.cpython-311.pyc", + "lib/python3.11/zoneinfo/__pycache__/_tzpath.cpython-311.pyc", + "lib/python3.11/zoneinfo/__pycache__/_zoneinfo.cpython-311.pyc", + "lib/python3.11/zoneinfo/_common.py", + "lib/python3.11/zoneinfo/_tzpath.py", + "lib/python3.11/zoneinfo/_zoneinfo.py", + "share/man/man1/python3.1", + "share/man/man1/python3.11.1" + ], + "fn": "python-3.11.5-hb885b13_0.conda", + "license": "PSF-2.0", + "link": { + "source": "/Users/donjayamanne/miniconda3/pkgs/python-3.11.5-hb885b13_0", + "type": 1 + }, + "md5": "6f528bdf159139704ab578df329dee70", + "name": "python", + "package_tarball_full_path": "/Users/donjayamanne/miniconda3/pkgs/python-3.11.5-hb885b13_0.conda", + "paths_data": { + "paths": [ + { + "_path": "bin/2to3-3.11", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "0eb2a68730c6910e60374b6231605a8fe9e4b1ef889fe6bf6955f00607263096", + "sha256_in_prefix": "db867f95c7e5e3d486928ab316afc7ee322118eace698a5fd9c35dd62a7c77e0", + "size_in_bytes": 347 + }, + { + "_path": "bin/idle3.11", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "9e7c5708a61f7b75f0fa84106b3698fc81e0632eea511e9635cc012d95e8ccec", + "sha256_in_prefix": "2daba7590451fb1240f116ad6c50dfb3fe12ab0d0c90450453672dc5f7992345", + "size_in_bytes": 345 + }, + { + "_path": "bin/pydoc3.11", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "af4b3f428ef9f3708c93b8d6a9c9b211c3e531ad480bac0644e18be3d675de15", + "sha256_in_prefix": "29373357dfd57b431809af8ab17e111c47011f8ed325e4b74075551cfd728dc0", + "size_in_bytes": 330 + }, + { + "_path": "bin/python3.11", + "file_mode": "binary", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "ea6aacf75da0a6e048c0acc7d6f9e7e67f4af4af635965ab25aad7956ed07b40", + "sha256_in_prefix": "5309a862e537b7e20d382f479a016995d2b60e7382673e57a98a8644d62a011a", + "size_in_bytes": 6019216 + }, + { + "_path": "bin/python3.11-config", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "48e7f0c28858cd7dd610f089ebce9d090b15273d6f965b5a665418880b9ad017", + "sha256_in_prefix": "178fb9ee8ae853adc2840a51642fbdfe239d4c189e632be37552f83ee881a9d5", + "size_in_bytes": 2289 + }, + { + "_path": "lib/libpython3.11.dylib", + "file_mode": "binary", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "813d7657214af2a40d6f98ed5ad6cd25bdaf9e1b52299dcc22457b6431f46226", + "sha256_in_prefix": "690e286e2a59750500c44dd3eb0fcc3f607604fd1a24a20da1d5877d9ac09cd0", + "size_in_bytes": 6019152 + }, + { + "_path": "lib/pkgconfig/python-3.11-embed.pc", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "5ce92c1022c5d4af2383596197f518fc12687f8f32bf3f42b96c7ee22ac9dc8d", + "sha256_in_prefix": "2ccb5bf00ff727b7941ad8be49360b25f86860ae2f49931743f628dafc9caac1", + "size_in_bytes": 558 + }, + { + "_path": "lib/pkgconfig/python-3.11.pc", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "46ac102bbce0c0b1ff9cabf905c7d44f3e3ff2911127a08b620cd1231a8a70c4", + "sha256_in_prefix": "01f5747180571713792597c3a4b2278f2e2b0e46aaa926e95cc007a373b589aa", + "size_in_bytes": 531 + }, + { + "_path": "lib/python3.11/_sysconfigdata__darwin_darwin.py", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "49c03531794c8e17dbf3bc3b28b5c731c19647b8430e74a7f05967863a73cd89", + "sha256_in_prefix": "d1fed13472229dad30d35c5cd3e497e4cbb16e5aa2fb66abc1919d55f9fa415c", + "size_in_bytes": 85118 + }, + { + "_path": "lib/python3.11/_sysconfigdata__darwin_darwin.py.orig", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "4e1b965e2665c46a97f8df38da25dc3e2636e6e62a2b525d38bfd9304978f7c9", + "sha256_in_prefix": "dbc742fac6650f3e6159c08dc75d77bbe5704af80a671c3ca09aa3e061ddd992", + "size_in_bytes": 97066 + }, + { + "_path": "lib/python3.11/_sysconfigdata_arm64_apple_darwin20_0_0.py", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "810dab3b07b0633c5d5b180351daecb4d1ebf51ee2216019c5dc08afb5c54fd1", + "sha256_in_prefix": "44ad76b97a9bc58243271c310c497b085745bbe5451b4cbf60d6afb475b49465", + "size_in_bytes": 87139 + }, + { + "_path": "lib/python3.11/config-3.11-darwin/Makefile", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "2a78da281edcb631ddd844a43a4e30d166eb6b13651e43a1664f0e1aa9384d3b", + "sha256_in_prefix": "fee789b4cc5318f60fd6d1b4294c7789bf333b55d6c4f8afa1dd4476e7fa4d5b", + "size_in_bytes": 126865 + }, + { + "_path": "lib/python3.11/config-3.11-darwin/python-config.py", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "48e7f0c28858cd7dd610f089ebce9d090b15273d6f965b5a665418880b9ad017", + "sha256_in_prefix": "178fb9ee8ae853adc2840a51642fbdfe239d4c189e632be37552f83ee881a9d5", + "size_in_bytes": 2289 + } + ], + "paths_version": 1 + }, + "requested_spec": "defaults/osx-arm64::python==3.11.5=hb885b13_0[md5=6f528bdf159139704ab578df329dee70]", + "sha256": "e6ae393f2072f9857ffbd78c56ea28ca345beeba4f0ab2e0d5975e424f71b252", + "size": 16161485, + "subdir": "osx-arm64", + "timestamp": 1694439441000, + "track_features": "", + "url": "https://repo.anaconda.com/pkgs/main/osx-arm64/python-3.11.5-hb885b13_0.conda", + "version": "3.11.5" + } diff --git a/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/anaconda-4.0.0/envs/one/conda-meta/python-slugify-5.0.2-pyhd3eb1b0_0.json b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/anaconda-4.0.0/envs/one/conda-meta/python-slugify-5.0.2-pyhd3eb1b0_0.json new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/anaconda-4.0.0/envs/one/python b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/anaconda-4.0.0/envs/one/python new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/anaconda-4.0.0/envs/two/python b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/anaconda-4.0.0/envs/two/python new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/anaconda3-2021.04/conda-meta/conda-23.11.0-py311hca03da5_0.json b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/anaconda3-2021.04/conda-meta/conda-23.11.0-py311hca03da5_0.json new file mode 100644 index 000000000000..3be01e80b809 --- /dev/null +++ b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/anaconda3-2021.04/conda-meta/conda-23.11.0-py311hca03da5_0.json @@ -0,0 +1,632 @@ +{ + "build": "py311hca03da5_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/osx-arm64", + "constrains": [ + "conda-content-trust >=0.1.1", + "conda-build >=3.27", + "conda-env >=2.6" + ], + "depends": [ + "archspec", + "boltons >=23.0.0", + "charset-normalizer", + "conda-libmamba-solver >=23.11.0", + "conda-package-handling >=2.2.0", + "distro >=1.5.0", + "jsonpatch >=1.32", + "menuinst", + "packaging >=23.0", + "platformdirs >=3.10.0", + "pluggy >=1.0.0", + "pycosat >=0.6.3", + "python >=3.11,<3.12.0a0", + "requests >=2.28.0,<3", + "ruamel.yaml >=0.11.14,<0.19", + "setuptools >=60.0.0", + "tqdm >=4", + "truststore >=0.8.0" + ], + "extracted_package_dir": "/Users/donjayamanne/miniconda3/pkgs/conda-23.11.0-py311hca03da5_0", + "features": "", + "files": [ + "bin/activate", + "bin/conda", + "bin/conda-env", + "bin/deactivate", + "condabin/conda", + "etc/fish/conf.d/conda.fish", + "etc/profile.d/conda.csh", + "etc/profile.d/conda.sh", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/INSTALLER", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/METADATA", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/RECORD", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/REQUESTED", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/WHEEL", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/direct_url.json", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/entry_points.txt", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/licenses/AUTHORS.md", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/licenses/LICENSE", + "lib/python3.11/site-packages/conda/__init__.py", + "lib/python3.11/site-packages/conda/__main__.py", + "lib/python3.11/site-packages/conda/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/__version__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/activate.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/api.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/deprecations.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/exception_handler.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/exceptions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/exports.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/history.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/instructions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/misc.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/plan.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/resolve.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/utils.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__version__.py", + "lib/python3.11/site-packages/conda/_vendor/__init__.py", + "lib/python3.11/site-packages/conda/_vendor/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/__pycache__/appdirs.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/__pycache__/distro.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/appdirs.LICENSE.txt", + "lib/python3.11/site-packages/conda/_vendor/appdirs.py", + "lib/python3.11/site-packages/conda/_vendor/boltons/LICENSE", + "lib/python3.11/site-packages/conda/_vendor/boltons/__init__.py", + "lib/python3.11/site-packages/conda/_vendor/boltons/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/boltons/__pycache__/setutils.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/boltons/__pycache__/timeutils.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/boltons/setutils.py", + "lib/python3.11/site-packages/conda/_vendor/boltons/timeutils.py", + "lib/python3.11/site-packages/conda/_vendor/cpuinfo/__init__.py", + "lib/python3.11/site-packages/conda/_vendor/cpuinfo/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/cpuinfo/__pycache__/cpuinfo.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/cpuinfo/cpuinfo.py", + "lib/python3.11/site-packages/conda/_vendor/distro.LICENSE.txt", + "lib/python3.11/site-packages/conda/_vendor/distro.py", + "lib/python3.11/site-packages/conda/_vendor/frozendict/LICENSE.txt", + "lib/python3.11/site-packages/conda/_vendor/frozendict/__init__.py", + "lib/python3.11/site-packages/conda/_vendor/frozendict/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/py_cpuinfo.LICENSE", + "lib/python3.11/site-packages/conda/_vendor/vendor.txt", + "lib/python3.11/site-packages/conda/activate.py", + "lib/python3.11/site-packages/conda/api.py", + "lib/python3.11/site-packages/conda/auxlib/LICENSE", + "lib/python3.11/site-packages/conda/auxlib/__init__.py", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/collection.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/compat.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/decorators.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/entity.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/exceptions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/ish.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/logz.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/packaging.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/type_coercion.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/collection.py", + "lib/python3.11/site-packages/conda/auxlib/compat.py", + "lib/python3.11/site-packages/conda/auxlib/decorators.py", + "lib/python3.11/site-packages/conda/auxlib/entity.py", + "lib/python3.11/site-packages/conda/auxlib/exceptions.py", + "lib/python3.11/site-packages/conda/auxlib/ish.py", + "lib/python3.11/site-packages/conda/auxlib/logz.py", + "lib/python3.11/site-packages/conda/auxlib/packaging.py", + "lib/python3.11/site-packages/conda/auxlib/type_coercion.py", + "lib/python3.11/site-packages/conda/base/__init__.py", + "lib/python3.11/site-packages/conda/base/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/base/__pycache__/constants.cpython-311.pyc", + "lib/python3.11/site-packages/conda/base/__pycache__/context.cpython-311.pyc", + "lib/python3.11/site-packages/conda/base/__pycache__/exceptions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/base/constants.py", + "lib/python3.11/site-packages/conda/base/context.py", + "lib/python3.11/site-packages/conda/base/exceptions.py", + "lib/python3.11/site-packages/conda/cli/__init__.py", + "lib/python3.11/site-packages/conda/cli/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/actions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/common.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/conda_argparse.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/find_commands.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/helpers.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/install.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_clean.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_compare.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_config.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_create.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_info.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_init.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_install.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_list.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_mock_activate.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_mock_deactivate.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_notices.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_package.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_pip.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_remove.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_rename.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_run.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_search.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_update.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/python_api.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/actions.py", + "lib/python3.11/site-packages/conda/cli/common.py", + "lib/python3.11/site-packages/conda/cli/conda_argparse.py", + "lib/python3.11/site-packages/conda/cli/find_commands.py", + "lib/python3.11/site-packages/conda/cli/helpers.py", + "lib/python3.11/site-packages/conda/cli/install.py", + "lib/python3.11/site-packages/conda/cli/main.py", + "lib/python3.11/site-packages/conda/cli/main_clean.py", + "lib/python3.11/site-packages/conda/cli/main_compare.py", + "lib/python3.11/site-packages/conda/cli/main_config.py", + "lib/python3.11/site-packages/conda/cli/main_create.py", + "lib/python3.11/site-packages/conda/cli/main_info.py", + "lib/python3.11/site-packages/conda/cli/main_init.py", + "lib/python3.11/site-packages/conda/cli/main_install.py", + "lib/python3.11/site-packages/conda/cli/main_list.py", + "lib/python3.11/site-packages/conda/cli/main_mock_activate.py", + "lib/python3.11/site-packages/conda/cli/main_mock_deactivate.py", + "lib/python3.11/site-packages/conda/cli/main_notices.py", + "lib/python3.11/site-packages/conda/cli/main_package.py", + "lib/python3.11/site-packages/conda/cli/main_pip.py", + "lib/python3.11/site-packages/conda/cli/main_remove.py", + "lib/python3.11/site-packages/conda/cli/main_rename.py", + "lib/python3.11/site-packages/conda/cli/main_run.py", + "lib/python3.11/site-packages/conda/cli/main_search.py", + "lib/python3.11/site-packages/conda/cli/main_update.py", + "lib/python3.11/site-packages/conda/cli/python_api.py", + "lib/python3.11/site-packages/conda/common/__init__.py", + "lib/python3.11/site-packages/conda/common/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/_logic.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/compat.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/configuration.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/constants.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/decorators.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/disk.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/io.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/iterators.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/logic.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/path.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/serialize.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/signals.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/toposort.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/url.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/_logic.py", + "lib/python3.11/site-packages/conda/common/_os/__init__.py", + "lib/python3.11/site-packages/conda/common/_os/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/_os/__pycache__/linux.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/_os/__pycache__/unix.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/_os/__pycache__/windows.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/_os/linux.py", + "lib/python3.11/site-packages/conda/common/_os/unix.py", + "lib/python3.11/site-packages/conda/common/_os/windows.py", + "lib/python3.11/site-packages/conda/common/compat.py", + "lib/python3.11/site-packages/conda/common/configuration.py", + "lib/python3.11/site-packages/conda/common/constants.py", + "lib/python3.11/site-packages/conda/common/decorators.py", + "lib/python3.11/site-packages/conda/common/disk.py", + "lib/python3.11/site-packages/conda/common/io.py", + "lib/python3.11/site-packages/conda/common/iterators.py", + "lib/python3.11/site-packages/conda/common/logic.py", + "lib/python3.11/site-packages/conda/common/path.py", + "lib/python3.11/site-packages/conda/common/pkg_formats/__init__.py", + "lib/python3.11/site-packages/conda/common/pkg_formats/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/pkg_formats/__pycache__/python.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/pkg_formats/python.py", + "lib/python3.11/site-packages/conda/common/serialize.py", + "lib/python3.11/site-packages/conda/common/signals.py", + "lib/python3.11/site-packages/conda/common/toposort.py", + "lib/python3.11/site-packages/conda/common/url.py", + "lib/python3.11/site-packages/conda/core/__init__.py", + "lib/python3.11/site-packages/conda/core/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/envs_manager.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/index.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/initialize.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/link.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/package_cache.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/package_cache_data.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/path_actions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/portability.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/prefix_data.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/solve.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/subdir_data.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/envs_manager.py", + "lib/python3.11/site-packages/conda/core/index.py", + "lib/python3.11/site-packages/conda/core/initialize.py", + "lib/python3.11/site-packages/conda/core/link.py", + "lib/python3.11/site-packages/conda/core/package_cache.py", + "lib/python3.11/site-packages/conda/core/package_cache_data.py", + "lib/python3.11/site-packages/conda/core/path_actions.py", + "lib/python3.11/site-packages/conda/core/portability.py", + "lib/python3.11/site-packages/conda/core/prefix_data.py", + "lib/python3.11/site-packages/conda/core/solve.py", + "lib/python3.11/site-packages/conda/core/subdir_data.py", + "lib/python3.11/site-packages/conda/deprecations.py", + "lib/python3.11/site-packages/conda/exception_handler.py", + "lib/python3.11/site-packages/conda/exceptions.py", + "lib/python3.11/site-packages/conda/exports.py", + "lib/python3.11/site-packages/conda/gateways/__init__.py", + "lib/python3.11/site-packages/conda/gateways/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/__pycache__/anaconda_client.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/__pycache__/logging.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/__pycache__/subprocess.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/anaconda_client.py", + "lib/python3.11/site-packages/conda/gateways/connection/__init__.py", + "lib/python3.11/site-packages/conda/gateways/connection/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/__pycache__/download.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/__pycache__/session.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/__init__.py", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/__pycache__/ftp.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/__pycache__/http.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/__pycache__/localfs.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/__pycache__/s3.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/ftp.py", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/http.py", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/localfs.py", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/s3.py", + "lib/python3.11/site-packages/conda/gateways/connection/download.py", + "lib/python3.11/site-packages/conda/gateways/connection/session.py", + "lib/python3.11/site-packages/conda/gateways/disk/__init__.py", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/create.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/delete.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/link.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/lock.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/permissions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/read.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/test.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/update.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/create.py", + "lib/python3.11/site-packages/conda/gateways/disk/delete.py", + "lib/python3.11/site-packages/conda/gateways/disk/link.py", + "lib/python3.11/site-packages/conda/gateways/disk/lock.py", + "lib/python3.11/site-packages/conda/gateways/disk/permissions.py", + "lib/python3.11/site-packages/conda/gateways/disk/read.py", + "lib/python3.11/site-packages/conda/gateways/disk/test.py", + "lib/python3.11/site-packages/conda/gateways/disk/update.py", + "lib/python3.11/site-packages/conda/gateways/logging.py", + "lib/python3.11/site-packages/conda/gateways/repodata/__init__.py", + "lib/python3.11/site-packages/conda/gateways/repodata/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/repodata/__pycache__/lock.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/__init__.py", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/__pycache__/core.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/__pycache__/fetch.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/__pycache__/interface.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/core.py", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/fetch.py", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/interface.py", + "lib/python3.11/site-packages/conda/gateways/repodata/lock.py", + "lib/python3.11/site-packages/conda/gateways/subprocess.py", + "lib/python3.11/site-packages/conda/history.py", + "lib/python3.11/site-packages/conda/instructions.py", + "lib/python3.11/site-packages/conda/misc.py", + "lib/python3.11/site-packages/conda/models/__init__.py", + "lib/python3.11/site-packages/conda/models/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/channel.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/dist.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/enums.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/leased_path_entry.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/match_spec.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/package_info.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/prefix_graph.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/records.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/version.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/channel.py", + "lib/python3.11/site-packages/conda/models/dist.py", + "lib/python3.11/site-packages/conda/models/enums.py", + "lib/python3.11/site-packages/conda/models/leased_path_entry.py", + "lib/python3.11/site-packages/conda/models/match_spec.py", + "lib/python3.11/site-packages/conda/models/package_info.py", + "lib/python3.11/site-packages/conda/models/prefix_graph.py", + "lib/python3.11/site-packages/conda/models/records.py", + "lib/python3.11/site-packages/conda/models/version.py", + "lib/python3.11/site-packages/conda/notices/__init__.py", + "lib/python3.11/site-packages/conda/notices/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/notices/__pycache__/cache.cpython-311.pyc", + "lib/python3.11/site-packages/conda/notices/__pycache__/core.cpython-311.pyc", + "lib/python3.11/site-packages/conda/notices/__pycache__/fetch.cpython-311.pyc", + "lib/python3.11/site-packages/conda/notices/__pycache__/types.cpython-311.pyc", + "lib/python3.11/site-packages/conda/notices/__pycache__/views.cpython-311.pyc", + "lib/python3.11/site-packages/conda/notices/cache.py", + "lib/python3.11/site-packages/conda/notices/core.py", + "lib/python3.11/site-packages/conda/notices/fetch.py", + "lib/python3.11/site-packages/conda/notices/types.py", + "lib/python3.11/site-packages/conda/notices/views.py", + "lib/python3.11/site-packages/conda/plan.py", + "lib/python3.11/site-packages/conda/plugins/__init__.py", + "lib/python3.11/site-packages/conda/plugins/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/__pycache__/hookspec.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/__pycache__/manager.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/__pycache__/solvers.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/__pycache__/types.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/hookspec.py", + "lib/python3.11/site-packages/conda/plugins/manager.py", + "lib/python3.11/site-packages/conda/plugins/solvers.py", + "lib/python3.11/site-packages/conda/plugins/subcommands/__init__.py", + "lib/python3.11/site-packages/conda/plugins/subcommands/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/subcommands/doctor/__init__.py", + "lib/python3.11/site-packages/conda/plugins/subcommands/doctor/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/subcommands/doctor/__pycache__/health_checks.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/subcommands/doctor/health_checks.py", + "lib/python3.11/site-packages/conda/plugins/types.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__init__.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/archspec.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/conda.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/cuda.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/freebsd.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/linux.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/osx.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/windows.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/archspec.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/conda.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/cuda.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/freebsd.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/linux.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/osx.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/windows.py", + "lib/python3.11/site-packages/conda/py.typed", + "lib/python3.11/site-packages/conda/resolve.py", + "lib/python3.11/site-packages/conda/shell/Library/bin/conda.bat", + "lib/python3.11/site-packages/conda/shell/Scripts/activate.bat", + "lib/python3.11/site-packages/conda/shell/bin/activate", + "lib/python3.11/site-packages/conda/shell/bin/conda", + "lib/python3.11/site-packages/conda/shell/bin/deactivate", + "lib/python3.11/site-packages/conda/shell/cli-32.exe", + "lib/python3.11/site-packages/conda/shell/cli-64.exe", + "lib/python3.11/site-packages/conda/shell/conda.xsh", + "lib/python3.11/site-packages/conda/shell/conda_icon.ico", + "lib/python3.11/site-packages/conda/shell/condabin/Conda.psm1", + "lib/python3.11/site-packages/conda/shell/condabin/_conda_activate.bat", + "lib/python3.11/site-packages/conda/shell/condabin/activate.bat", + "lib/python3.11/site-packages/conda/shell/condabin/conda-hook.ps1", + "lib/python3.11/site-packages/conda/shell/condabin/conda.bat", + "lib/python3.11/site-packages/conda/shell/condabin/conda_auto_activate.bat", + "lib/python3.11/site-packages/conda/shell/condabin/conda_hook.bat", + "lib/python3.11/site-packages/conda/shell/condabin/deactivate.bat", + "lib/python3.11/site-packages/conda/shell/condabin/rename_tmp.bat", + "lib/python3.11/site-packages/conda/shell/etc/fish/conf.d/conda.fish", + "lib/python3.11/site-packages/conda/shell/etc/profile.d/conda.csh", + "lib/python3.11/site-packages/conda/shell/etc/profile.d/conda.sh", + "lib/python3.11/site-packages/conda/testing/__init__.py", + "lib/python3.11/site-packages/conda/testing/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/__pycache__/cases.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/__pycache__/fixtures.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/__pycache__/helpers.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/__pycache__/integration.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/__pycache__/solver_helpers.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/cases.py", + "lib/python3.11/site-packages/conda/testing/fixtures.py", + "lib/python3.11/site-packages/conda/testing/gateways/__init__.py", + "lib/python3.11/site-packages/conda/testing/gateways/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/gateways/__pycache__/fixtures.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/gateways/fixtures.py", + "lib/python3.11/site-packages/conda/testing/helpers.py", + "lib/python3.11/site-packages/conda/testing/integration.py", + "lib/python3.11/site-packages/conda/testing/notices/__init__.py", + "lib/python3.11/site-packages/conda/testing/notices/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/notices/__pycache__/fixtures.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/notices/__pycache__/helpers.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/notices/fixtures.py", + "lib/python3.11/site-packages/conda/testing/notices/helpers.py", + "lib/python3.11/site-packages/conda/testing/solver_helpers.py", + "lib/python3.11/site-packages/conda/trust/__init__.py", + "lib/python3.11/site-packages/conda/trust/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/trust/__pycache__/constants.cpython-311.pyc", + "lib/python3.11/site-packages/conda/trust/__pycache__/signature_verification.cpython-311.pyc", + "lib/python3.11/site-packages/conda/trust/constants.py", + "lib/python3.11/site-packages/conda/trust/signature_verification.py", + "lib/python3.11/site-packages/conda/utils.py", + "lib/python3.11/site-packages/conda_env/README.md", + "lib/python3.11/site-packages/conda_env/__init__.py", + "lib/python3.11/site-packages/conda_env/__main__.py", + "lib/python3.11/site-packages/conda_env/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/__pycache__/env.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/__pycache__/pip_util.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__init__.py", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/common.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_config.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_create.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_export.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_list.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_remove.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_update.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_vars.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/common.py", + "lib/python3.11/site-packages/conda_env/cli/main.py", + "lib/python3.11/site-packages/conda_env/cli/main_config.py", + "lib/python3.11/site-packages/conda_env/cli/main_create.py", + "lib/python3.11/site-packages/conda_env/cli/main_export.py", + "lib/python3.11/site-packages/conda_env/cli/main_list.py", + "lib/python3.11/site-packages/conda_env/cli/main_remove.py", + "lib/python3.11/site-packages/conda_env/cli/main_update.py", + "lib/python3.11/site-packages/conda_env/cli/main_vars.py", + "lib/python3.11/site-packages/conda_env/env.py", + "lib/python3.11/site-packages/conda_env/installers/__init__.py", + "lib/python3.11/site-packages/conda_env/installers/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/installers/__pycache__/base.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/installers/__pycache__/conda.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/installers/__pycache__/pip.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/installers/base.py", + "lib/python3.11/site-packages/conda_env/installers/conda.py", + "lib/python3.11/site-packages/conda_env/installers/pip.py", + "lib/python3.11/site-packages/conda_env/pip_util.py", + "lib/python3.11/site-packages/conda_env/specs/__init__.py", + "lib/python3.11/site-packages/conda_env/specs/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/specs/__pycache__/binstar.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/specs/__pycache__/requirements.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/specs/__pycache__/yaml_file.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/specs/binstar.py", + "lib/python3.11/site-packages/conda_env/specs/requirements.py", + "lib/python3.11/site-packages/conda_env/specs/yaml_file.py", + "lib/python3.11/site-packages/tests/conda_env/__init__.py", + "lib/python3.11/site-packages/tests/conda_env/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/__pycache__/test_cli.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/__pycache__/test_create.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/__pycache__/test_env.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/__pycache__/test_pip_util.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/__pycache__/utils.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/specs/__init__.py", + "lib/python3.11/site-packages/tests/conda_env/specs/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/specs/__pycache__/test_binstar.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/specs/__pycache__/test_requirements.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/specs/__pycache__/test_yaml_file.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/specs/test_binstar.py", + "lib/python3.11/site-packages/tests/conda_env/specs/test_requirements.py", + "lib/python3.11/site-packages/tests/conda_env/specs/test_yaml_file.py", + "lib/python3.11/site-packages/tests/conda_env/support/add-pip.yml", + "lib/python3.11/site-packages/tests/conda_env/support/advanced-pip/.gitignore", + "lib/python3.11/site-packages/tests/conda_env/support/advanced-pip/another-project-requirements.txt", + "lib/python3.11/site-packages/tests/conda_env/support/advanced-pip/environment.yml", + "lib/python3.11/site-packages/tests/conda_env/support/advanced-pip/module_to_install_in_editable_mode/__pycache__/setup.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/support/advanced-pip/module_to_install_in_editable_mode/setup.py", + "lib/python3.11/site-packages/tests/conda_env/support/channels_with_envvars.yml", + "lib/python3.11/site-packages/tests/conda_env/support/empty_env.yml", + "lib/python3.11/site-packages/tests/conda_env/support/env_with_dependencies.yml", + "lib/python3.11/site-packages/tests/conda_env/support/example-yaml/environment.yaml", + "lib/python3.11/site-packages/tests/conda_env/support/example/environment.yml", + "lib/python3.11/site-packages/tests/conda_env/support/example/environment_host_port.yml", + "lib/python3.11/site-packages/tests/conda_env/support/example/environment_pinned.yml", + "lib/python3.11/site-packages/tests/conda_env/support/example/environment_pinned_updated.yml", + "lib/python3.11/site-packages/tests/conda_env/support/foo/bar/baz/readme", + "lib/python3.11/site-packages/tests/conda_env/support/foo/bar/readme", + "lib/python3.11/site-packages/tests/conda_env/support/foo/environment.yml", + "lib/python3.11/site-packages/tests/conda_env/support/invalid_keys.yml", + "lib/python3.11/site-packages/tests/conda_env/support/notebook.ipynb", + "lib/python3.11/site-packages/tests/conda_env/support/notebook_with_env.ipynb", + "lib/python3.11/site-packages/tests/conda_env/support/pip_argh.yml", + "lib/python3.11/site-packages/tests/conda_env/support/requirements.txt", + "lib/python3.11/site-packages/tests/conda_env/support/saved-env/environment.yml", + "lib/python3.11/site-packages/tests/conda_env/support/simple.yml", + "lib/python3.11/site-packages/tests/conda_env/support/valid_keys.yml", + "lib/python3.11/site-packages/tests/conda_env/support/with-pip.yml", + "lib/python3.11/site-packages/tests/conda_env/test_cli.py", + "lib/python3.11/site-packages/tests/conda_env/test_create.py", + "lib/python3.11/site-packages/tests/conda_env/test_env.py", + "lib/python3.11/site-packages/tests/conda_env/test_pip_util.py", + "lib/python3.11/site-packages/tests/conda_env/utils.py", + "lib/python3.11/site-packages/tests/test-recipes/activate_deactivate_package/src/etc/conda/activate.d/activate.bat", + "lib/python3.11/site-packages/tests/test-recipes/activate_deactivate_package/src/etc/conda/activate.d/activate.sh", + "lib/python3.11/site-packages/tests/test-recipes/activate_deactivate_package/src/etc/conda/deactivate.d/deactivate.bat", + "lib/python3.11/site-packages/tests/test-recipes/activate_deactivate_package/src/etc/conda/deactivate.d/deactivate.sh", + "lib/python3.11/site-packages/xontrib/conda.xsh", + "shell/condabin/Conda.psm1", + "shell/condabin/conda-hook.ps1" + ], + "fn": "conda-23.11.0-py311hca03da5_0.conda", + "license": "BSD-3-Clause", + "link": { + "source": "/Users/donjayamanne/miniconda3/pkgs/conda-23.11.0-py311hca03da5_0", + "type": 1 + }, + "md5": "d40f56a649df2d05c5468713732e005e", + "name": "conda", + "package_tarball_full_path": "/Users/donjayamanne/miniconda3/pkgs/conda-23.11.0-py311hca03da5_0.conda", + "paths_data": { + "paths": [ + { + "_path": "bin/activate", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "92dd3f5997c70939665a9000ba114ba13f28c5ce1341fa75060f48dcb808a127", + "sha256_in_prefix": "4270a26a4429c0dd5a4c35900f8b2211b35c7447367b6f2b8470bdedc1f240ca", + "size_in_bytes": 429 + }, + { + "_path": "bin/conda", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "c6380d731f573d898f146d5580e0447dd44d068d619bda7aff326095f8bc4f88", + "sha256_in_prefix": "b5dd14921f011aa934757f31b62e0fa2be17a1a9f99ccb2d26a1f12a864d64e8", + "size_in_bytes": 756 + }, + { + "_path": "bin/conda-env", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "c7e6fa37766fe556ef4f95c0860a0eb7f7817c6f057ba9369e248bcdd7f37c9d", + "sha256_in_prefix": "88be67a0d6c47edbd65fa3d860a3514daed6b6bac830ec93800cf43fd778379c", + "size_in_bytes": 393 + }, + { + "_path": "bin/deactivate", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "a69da038fee96660c3f47c2c393c05b54986ba0c929aada61cd410df6e09746e", + "sha256_in_prefix": "2af9834dc0f7c2fb9db2f9e67829700c6828774d9ad7996602324c5a5387a89c", + "size_in_bytes": 517 + }, + { + "_path": "condabin/conda", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "c6380d731f573d898f146d5580e0447dd44d068d619bda7aff326095f8bc4f88", + "sha256_in_prefix": "b5dd14921f011aa934757f31b62e0fa2be17a1a9f99ccb2d26a1f12a864d64e8", + "size_in_bytes": 756 + }, + { + "_path": "etc/fish/conf.d/conda.fish", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "85caec3d76f3239e105f88cbafc6acbe04cd97fd4c1db4da4e0dcf4d357a631e", + "sha256_in_prefix": "a1ab61539200ab52ec85d9bf7de9b1cfe4a7fbdd4da2f6a7882d417ea8c7d3e1", + "size_in_bytes": 4880 + }, + { + "_path": "etc/profile.d/conda.csh", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "966581001ffd439152bf4432c7c436e25014aa2386668a00145b4087aa354604", + "sha256_in_prefix": "85a53ef7d70dcb1c16695b970bbc3880b74eaa23fff43dde57796e34fcb2ead7", + "size_in_bytes": 3163 + }, + { + "_path": "etc/profile.d/conda.sh", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "a147ccd49f1579e69c49cb12114421d95b84a1e02ef1df7c4f8c51d44cd026d1", + "sha256_in_prefix": "920d3be6a977141273da05e8d0a1867352013f1e2702a313fea15a101432f344", + "size_in_bytes": 2552 + }, + { + "_path": "lib/python3.11/site-packages/xontrib/conda.xsh", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "e0e9fb9f5d108c70434802b45e51910671b409a3cddd7b4ec887af2b07e2ce05", + "sha256_in_prefix": "c0650607c2cf90f2ce94f3b7370349922fdac5901e3316fa9f065d8773b3f944", + "size_in_bytes": 7565 + }, + { + "_path": "shell/condabin/conda-hook.ps1", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "94f9a90527bf021292a113a9e546e3f5dd042ae3afc0ed2a7a5763ef312ac756", + "sha256_in_prefix": "4edd554f34b2aa567876996da1be4cbc89d866e0e3d958f42d7889ccff8f617f", + "size_in_bytes": 1047 + } + ], + "paths_version": 1 + }, + "requested_spec": "defaults/osx-arm64::conda==23.11.0=py311hca03da5_0[md5=d40f56a649df2d05c5468713732e005e]", + "sha256": "63ade392153a88ba334593059bfce7ab3b6df1dbbd6622655c8a7db587f70a78", + "size": 1317120, + "subdir": "osx-arm64", + "timestamp": 1701719702000, + "track_features": "", + "url": "https://repo.anaconda.com/pkgs/main/osx-arm64/conda-23.11.0-py311hca03da5_0.conda", + "version": "23.11.0" +} \ No newline at end of file diff --git a/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/anaconda3-2021.04/conda-meta/history b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/anaconda3-2021.04/conda-meta/history new file mode 100644 index 000000000000..b196a3e5922b --- /dev/null +++ b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/anaconda3-2021.04/conda-meta/history @@ -0,0 +1,72 @@ +==> 2024-02-14 17:04:16 <== +# cmd: /Users/donjayamanne/miniconda3/conda.exe install --offline --file /Users/donjayamanne/miniconda3/pkgs/env.txt -yp /Users/donjayamanne/miniconda3 +# conda version: 23.10.0 ++defaults/noarch::archspec-0.2.1-pyhd3eb1b0_0 ++defaults/noarch::charset-normalizer-2.0.4-pyhd3eb1b0_0 ++defaults/noarch::conda-libmamba-solver-23.12.0-pyhd3eb1b0_1 ++defaults/noarch::jsonpatch-1.32-pyhd3eb1b0_0 ++defaults/noarch::jsonpointer-2.1-pyhd3eb1b0_0 ++defaults/noarch::pybind11-abi-4-hd3eb1b0_1 ++defaults/noarch::pycparser-2.21-pyhd3eb1b0_0 ++defaults/noarch::tzdata-2023c-h04d1e81_0 ++defaults/osx-arm64::boltons-23.0.0-py311hca03da5_0 ++defaults/osx-arm64::brotli-python-1.0.9-py311h313beb8_7 ++defaults/osx-arm64::bzip2-1.0.8-h620ffc9_4 ++defaults/osx-arm64::c-ares-1.19.1-h80987f9_0 ++defaults/osx-arm64::ca-certificates-2023.12.12-hca03da5_0 ++defaults/osx-arm64::certifi-2023.11.17-py311hca03da5_0 ++defaults/osx-arm64::cffi-1.16.0-py311h80987f9_0 ++defaults/osx-arm64::conda-23.11.0-py311hca03da5_0 ++defaults/osx-arm64::conda-content-trust-0.2.0-py311hca03da5_0 ++defaults/osx-arm64::conda-package-handling-2.2.0-py311hca03da5_0 ++defaults/osx-arm64::conda-package-streaming-0.9.0-py311hca03da5_0 ++defaults/osx-arm64::cryptography-41.0.7-py311hd4332d6_0 ++defaults/osx-arm64::distro-1.8.0-py311hca03da5_0 ++defaults/osx-arm64::fmt-9.1.0-h48ca7d4_0 ++defaults/osx-arm64::icu-73.1-h313beb8_0 ++defaults/osx-arm64::idna-3.4-py311hca03da5_0 ++defaults/osx-arm64::krb5-1.20.1-hf3e1bf2_1 ++defaults/osx-arm64::libarchive-3.6.2-h62fee54_2 ++defaults/osx-arm64::libcurl-8.4.0-h3e2b118_1 ++defaults/osx-arm64::libcxx-14.0.6-h848a8c0_0 ++defaults/osx-arm64::libedit-3.1.20230828-h80987f9_0 ++defaults/osx-arm64::libev-4.33-h1a28f6b_1 ++defaults/osx-arm64::libffi-3.4.4-hca03da5_0 ++defaults/osx-arm64::libiconv-1.16-h1a28f6b_2 ++defaults/osx-arm64::libmamba-1.5.3-h15e39b3_0 ++defaults/osx-arm64::libmambapy-1.5.3-py311h1c5506f_0 ++defaults/osx-arm64::libnghttp2-1.57.0-h62f6fdd_0 ++defaults/osx-arm64::libsolv-0.7.24-h514c7bf_0 ++defaults/osx-arm64::libssh2-1.10.0-h02f6b3c_2 ++defaults/osx-arm64::libxml2-2.10.4-h0dcf63f_1 ++defaults/osx-arm64::lz4-c-1.9.4-h313beb8_0 ++defaults/osx-arm64::menuinst-2.0.1-py311hca03da5_1 ++defaults/osx-arm64::ncurses-6.4-h313beb8_0 ++defaults/osx-arm64::openssl-3.0.12-h1a28f6b_0 ++defaults/osx-arm64::packaging-23.1-py311hca03da5_0 ++defaults/osx-arm64::pcre2-10.42-hb066dcc_0 ++defaults/osx-arm64::pip-23.3.1-py311hca03da5_0 ++defaults/osx-arm64::platformdirs-3.10.0-py311hca03da5_0 ++defaults/osx-arm64::pluggy-1.0.0-py311hca03da5_1 ++defaults/osx-arm64::pycosat-0.6.6-py311h80987f9_0 ++defaults/osx-arm64::pyopenssl-23.2.0-py311hca03da5_0 ++defaults/osx-arm64::pysocks-1.7.1-py311hca03da5_0 ++defaults/osx-arm64::python-3.11.5-hb885b13_0 ++defaults/osx-arm64::python.app-3-py311h80987f9_0 ++defaults/osx-arm64::readline-8.2-h1a28f6b_0 ++defaults/osx-arm64::reproc-14.2.4-hc377ac9_1 ++defaults/osx-arm64::reproc-cpp-14.2.4-hc377ac9_1 ++defaults/osx-arm64::requests-2.31.0-py311hca03da5_0 ++defaults/osx-arm64::ruamel.yaml-0.17.21-py311h80987f9_0 ++defaults/osx-arm64::setuptools-68.2.2-py311hca03da5_0 ++defaults/osx-arm64::sqlite-3.41.2-h80987f9_0 ++defaults/osx-arm64::tk-8.6.12-hb8d0fd4_0 ++defaults/osx-arm64::tqdm-4.65.0-py311hb6e6a13_0 ++defaults/osx-arm64::truststore-0.8.0-py311hca03da5_0 ++defaults/osx-arm64::urllib3-1.26.18-py311hca03da5_0 ++defaults/osx-arm64::wheel-0.41.2-py311hca03da5_0 ++defaults/osx-arm64::xz-5.4.5-h80987f9_0 ++defaults/osx-arm64::yaml-cpp-0.8.0-h313beb8_0 ++defaults/osx-arm64::zlib-1.2.13-h5a0b063_0 ++defaults/osx-arm64::zstandard-0.19.0-py311h80987f9_0 ++defaults/osx-arm64::zstd-1.5.5-hd90d995_0 diff --git a/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/anaconda3-2021.04/conda-meta/python-3.11.5-hb885b13_0.json b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/anaconda3-2021.04/conda-meta/python-3.11.5-hb885b13_0.json new file mode 100644 index 000000000000..90b9af01a4e0 --- /dev/null +++ b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/anaconda3-2021.04/conda-meta/python-3.11.5-hb885b13_0.json @@ -0,0 +1,2280 @@ +{ + "build": "hb885b13_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/osx-arm64", + "constrains": [], + "depends": [ + "bzip2 >=1.0.8,<2.0a0", + "libffi >=3.4,<3.5", + "libffi >=3.4,<4.0a0", + "ncurses >=6.4,<7.0a0", + "openssl >=3.0.10,<4.0a0", + "readline >=8.1.2,<9.0a0", + "sqlite >=3.41.2,<4.0a0", + "tk >=8.6.12,<8.7.0a0", + "tzdata", + "xz >=5.4.2,<6.0a0", + "zlib >=1.2.13,<1.3.0a0", + "pip" + ], + "extracted_package_dir": "/Users/donjayamanne/miniconda3/pkgs/python-3.11.5-hb885b13_0", + "features": "", + "files": [ + "bin/2to3", + "bin/2to3-3.11", + "bin/idle3", + "bin/idle3.11", + "bin/pydoc", + "bin/pydoc3", + "bin/pydoc3.11", + "bin/python", + "bin/python3", + "bin/python3-config", + "bin/python3.1", + "bin/python3.11", + "bin/python3.11-config", + "include/python3.11/Python.h", + "include/python3.11/abstract.h", + "include/python3.11/bltinmodule.h", + "include/python3.11/boolobject.h", + "include/python3.11/bytearrayobject.h", + "include/python3.11/bytesobject.h", + "include/python3.11/ceval.h", + "include/python3.11/codecs.h", + "include/python3.11/compile.h", + "include/python3.11/complexobject.h", + "include/python3.11/cpython/abstract.h", + "include/python3.11/cpython/bytearrayobject.h", + "include/python3.11/cpython/bytesobject.h", + "include/python3.11/cpython/cellobject.h", + "include/python3.11/cpython/ceval.h", + "include/python3.11/cpython/classobject.h", + "include/python3.11/cpython/code.h", + "include/python3.11/cpython/compile.h", + "include/python3.11/cpython/complexobject.h", + "include/python3.11/cpython/context.h", + "include/python3.11/cpython/descrobject.h", + "include/python3.11/cpython/dictobject.h", + "include/python3.11/cpython/fileobject.h", + "include/python3.11/cpython/fileutils.h", + "include/python3.11/cpython/floatobject.h", + "include/python3.11/cpython/frameobject.h", + "include/python3.11/cpython/funcobject.h", + "include/python3.11/cpython/genobject.h", + "include/python3.11/cpython/import.h", + "include/python3.11/cpython/initconfig.h", + "include/python3.11/cpython/listobject.h", + "include/python3.11/cpython/longintrepr.h", + "include/python3.11/cpython/longobject.h", + "include/python3.11/cpython/methodobject.h", + "include/python3.11/cpython/modsupport.h", + "include/python3.11/cpython/object.h", + "include/python3.11/cpython/objimpl.h", + "include/python3.11/cpython/odictobject.h", + "include/python3.11/cpython/picklebufobject.h", + "include/python3.11/cpython/pthread_stubs.h", + "include/python3.11/cpython/pyctype.h", + "include/python3.11/cpython/pydebug.h", + "include/python3.11/cpython/pyerrors.h", + "include/python3.11/cpython/pyfpe.h", + "include/python3.11/cpython/pyframe.h", + "include/python3.11/cpython/pylifecycle.h", + "include/python3.11/cpython/pymem.h", + "include/python3.11/cpython/pystate.h", + "include/python3.11/cpython/pythonrun.h", + "include/python3.11/cpython/pythread.h", + "include/python3.11/cpython/pytime.h", + "include/python3.11/cpython/setobject.h", + "include/python3.11/cpython/sysmodule.h", + "include/python3.11/cpython/traceback.h", + "include/python3.11/cpython/tupleobject.h", + "include/python3.11/cpython/unicodeobject.h", + "include/python3.11/cpython/warnings.h", + "include/python3.11/cpython/weakrefobject.h", + "include/python3.11/datetime.h", + "include/python3.11/descrobject.h", + "include/python3.11/dictobject.h", + "include/python3.11/dynamic_annotations.h", + "include/python3.11/enumobject.h", + "include/python3.11/errcode.h", + "include/python3.11/exports.h", + "include/python3.11/fileobject.h", + "include/python3.11/fileutils.h", + "include/python3.11/floatobject.h", + "include/python3.11/frameobject.h", + "include/python3.11/genericaliasobject.h", + "include/python3.11/import.h", + "include/python3.11/internal/pycore_abstract.h", + "include/python3.11/internal/pycore_accu.h", + "include/python3.11/internal/pycore_asdl.h", + "include/python3.11/internal/pycore_ast.h", + "include/python3.11/internal/pycore_ast_state.h", + "include/python3.11/internal/pycore_atomic.h", + "include/python3.11/internal/pycore_atomic_funcs.h", + "include/python3.11/internal/pycore_bitutils.h", + "include/python3.11/internal/pycore_blocks_output_buffer.h", + "include/python3.11/internal/pycore_bytes_methods.h", + "include/python3.11/internal/pycore_bytesobject.h", + "include/python3.11/internal/pycore_call.h", + "include/python3.11/internal/pycore_ceval.h", + "include/python3.11/internal/pycore_code.h", + "include/python3.11/internal/pycore_compile.h", + "include/python3.11/internal/pycore_condvar.h", + "include/python3.11/internal/pycore_context.h", + "include/python3.11/internal/pycore_dict.h", + "include/python3.11/internal/pycore_dtoa.h", + "include/python3.11/internal/pycore_emscripten_signal.h", + "include/python3.11/internal/pycore_exceptions.h", + "include/python3.11/internal/pycore_fileutils.h", + "include/python3.11/internal/pycore_floatobject.h", + "include/python3.11/internal/pycore_format.h", + "include/python3.11/internal/pycore_frame.h", + "include/python3.11/internal/pycore_function.h", + "include/python3.11/internal/pycore_gc.h", + "include/python3.11/internal/pycore_genobject.h", + "include/python3.11/internal/pycore_getopt.h", + "include/python3.11/internal/pycore_gil.h", + "include/python3.11/internal/pycore_global_objects.h", + "include/python3.11/internal/pycore_global_strings.h", + "include/python3.11/internal/pycore_hamt.h", + "include/python3.11/internal/pycore_hashtable.h", + "include/python3.11/internal/pycore_import.h", + "include/python3.11/internal/pycore_initconfig.h", + "include/python3.11/internal/pycore_interp.h", + "include/python3.11/internal/pycore_interpreteridobject.h", + "include/python3.11/internal/pycore_list.h", + "include/python3.11/internal/pycore_long.h", + "include/python3.11/internal/pycore_moduleobject.h", + "include/python3.11/internal/pycore_namespace.h", + "include/python3.11/internal/pycore_object.h", + "include/python3.11/internal/pycore_opcode.h", + "include/python3.11/internal/pycore_parser.h", + "include/python3.11/internal/pycore_pathconfig.h", + "include/python3.11/internal/pycore_pyarena.h", + "include/python3.11/internal/pycore_pyerrors.h", + "include/python3.11/internal/pycore_pyhash.h", + "include/python3.11/internal/pycore_pylifecycle.h", + "include/python3.11/internal/pycore_pymath.h", + "include/python3.11/internal/pycore_pymem.h", + "include/python3.11/internal/pycore_pystate.h", + "include/python3.11/internal/pycore_runtime.h", + "include/python3.11/internal/pycore_runtime_init.h", + "include/python3.11/internal/pycore_signal.h", + "include/python3.11/internal/pycore_sliceobject.h", + "include/python3.11/internal/pycore_strhex.h", + "include/python3.11/internal/pycore_structseq.h", + "include/python3.11/internal/pycore_symtable.h", + "include/python3.11/internal/pycore_sysmodule.h", + "include/python3.11/internal/pycore_traceback.h", + "include/python3.11/internal/pycore_tuple.h", + "include/python3.11/internal/pycore_typeobject.h", + "include/python3.11/internal/pycore_ucnhash.h", + "include/python3.11/internal/pycore_unicodeobject.h", + "include/python3.11/internal/pycore_unionobject.h", + "include/python3.11/internal/pycore_warnings.h", + "include/python3.11/intrcheck.h", + "include/python3.11/iterobject.h", + "include/python3.11/listobject.h", + "include/python3.11/longobject.h", + "include/python3.11/marshal.h", + "include/python3.11/memoryobject.h", + "include/python3.11/methodobject.h", + "include/python3.11/modsupport.h", + "include/python3.11/moduleobject.h", + "include/python3.11/object.h", + "include/python3.11/objimpl.h", + "include/python3.11/opcode.h", + "include/python3.11/osdefs.h", + "include/python3.11/osmodule.h", + "include/python3.11/patchlevel.h", + "include/python3.11/py_curses.h", + "include/python3.11/pybuffer.h", + "include/python3.11/pycapsule.h", + "include/python3.11/pyconfig.h", + "include/python3.11/pydtrace.h", + "include/python3.11/pyerrors.h", + "include/python3.11/pyexpat.h", + "include/python3.11/pyframe.h", + "include/python3.11/pyhash.h", + "include/python3.11/pylifecycle.h", + "include/python3.11/pymacconfig.h", + "include/python3.11/pymacro.h", + "include/python3.11/pymath.h", + "include/python3.11/pymem.h", + "include/python3.11/pyport.h", + "include/python3.11/pystate.h", + "include/python3.11/pystrcmp.h", + "include/python3.11/pystrtod.h", + "include/python3.11/pythonrun.h", + "include/python3.11/pythread.h", + "include/python3.11/pytypedefs.h", + "include/python3.11/rangeobject.h", + "include/python3.11/setobject.h", + "include/python3.11/sliceobject.h", + "include/python3.11/structmember.h", + "include/python3.11/structseq.h", + "include/python3.11/sysmodule.h", + "include/python3.11/token.h", + "include/python3.11/traceback.h", + "include/python3.11/tracemalloc.h", + "include/python3.11/tupleobject.h", + "include/python3.11/typeslots.h", + "include/python3.11/unicodeobject.h", + "include/python3.11/warnings.h", + "include/python3.11/weakrefobject.h", + "lib/libpython3.11.dylib", + "lib/pkgconfig/python-3.11-embed.pc", + "lib/pkgconfig/python-3.11.pc", + "lib/pkgconfig/python3-embed.pc", + "lib/pkgconfig/python3.pc", + "lib/python3.1", + "lib/python3.11/LICENSE.txt", + "lib/python3.11/__future__.py", + "lib/python3.11/__hello__.py", + "lib/python3.11/__phello__/__init__.py", + "lib/python3.11/__phello__/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/__phello__/__pycache__/spam.cpython-311.pyc", + "lib/python3.11/__phello__/spam.py", + "lib/python3.11/__pycache__/__future__.cpython-311.pyc", + "lib/python3.11/__pycache__/__hello__.cpython-311.pyc", + "lib/python3.11/__pycache__/_aix_support.cpython-311.pyc", + "lib/python3.11/__pycache__/_bootsubprocess.cpython-311.pyc", + "lib/python3.11/__pycache__/_collections_abc.cpython-311.pyc", + "lib/python3.11/__pycache__/_compat_pickle.cpython-311.pyc", + "lib/python3.11/__pycache__/_compression.cpython-311.pyc", + "lib/python3.11/__pycache__/_markupbase.cpython-311.pyc", + "lib/python3.11/__pycache__/_osx_support.cpython-311.pyc", + "lib/python3.11/__pycache__/_py_abc.cpython-311.pyc", + "lib/python3.11/__pycache__/_pydecimal.cpython-311.pyc", + "lib/python3.11/__pycache__/_pyio.cpython-311.pyc", + "lib/python3.11/__pycache__/_sitebuiltins.cpython-311.pyc", + "lib/python3.11/__pycache__/_strptime.cpython-311.pyc", + "lib/python3.11/__pycache__/_sysconfigdata__darwin_darwin.cpython-311.pyc", + "lib/python3.11/__pycache__/_sysconfigdata_arm64_apple_darwin20_0_0.cpython-311.pyc", + "lib/python3.11/__pycache__/_threading_local.cpython-311.pyc", + "lib/python3.11/__pycache__/_weakrefset.cpython-311.pyc", + "lib/python3.11/__pycache__/abc.cpython-311.pyc", + "lib/python3.11/__pycache__/aifc.cpython-311.pyc", + "lib/python3.11/__pycache__/antigravity.cpython-311.pyc", + "lib/python3.11/__pycache__/argparse.cpython-311.pyc", + "lib/python3.11/__pycache__/ast.cpython-311.pyc", + "lib/python3.11/__pycache__/asynchat.cpython-311.pyc", + "lib/python3.11/__pycache__/asyncore.cpython-311.pyc", + "lib/python3.11/__pycache__/base64.cpython-311.pyc", + "lib/python3.11/__pycache__/bdb.cpython-311.pyc", + "lib/python3.11/__pycache__/bisect.cpython-311.pyc", + "lib/python3.11/__pycache__/bz2.cpython-311.pyc", + "lib/python3.11/__pycache__/cProfile.cpython-311.pyc", + "lib/python3.11/__pycache__/calendar.cpython-311.pyc", + "lib/python3.11/__pycache__/cgi.cpython-311.pyc", + "lib/python3.11/__pycache__/cgitb.cpython-311.pyc", + "lib/python3.11/__pycache__/chunk.cpython-311.pyc", + "lib/python3.11/__pycache__/cmd.cpython-311.pyc", + "lib/python3.11/__pycache__/code.cpython-311.pyc", + "lib/python3.11/__pycache__/codecs.cpython-311.pyc", + "lib/python3.11/__pycache__/codeop.cpython-311.pyc", + "lib/python3.11/__pycache__/colorsys.cpython-311.pyc", + "lib/python3.11/__pycache__/compileall.cpython-311.pyc", + "lib/python3.11/__pycache__/configparser.cpython-311.pyc", + "lib/python3.11/__pycache__/contextlib.cpython-311.pyc", + "lib/python3.11/__pycache__/contextvars.cpython-311.pyc", + "lib/python3.11/__pycache__/copy.cpython-311.pyc", + "lib/python3.11/__pycache__/copyreg.cpython-311.pyc", + "lib/python3.11/__pycache__/crypt.cpython-311.pyc", + "lib/python3.11/__pycache__/csv.cpython-311.pyc", + "lib/python3.11/__pycache__/dataclasses.cpython-311.pyc", + "lib/python3.11/__pycache__/datetime.cpython-311.pyc", + "lib/python3.11/__pycache__/decimal.cpython-311.pyc", + "lib/python3.11/__pycache__/difflib.cpython-311.pyc", + "lib/python3.11/__pycache__/dis.cpython-311.pyc", + "lib/python3.11/__pycache__/doctest.cpython-311.pyc", + "lib/python3.11/__pycache__/enum.cpython-311.pyc", + "lib/python3.11/__pycache__/filecmp.cpython-311.pyc", + "lib/python3.11/__pycache__/fileinput.cpython-311.pyc", + "lib/python3.11/__pycache__/fnmatch.cpython-311.pyc", + "lib/python3.11/__pycache__/fractions.cpython-311.pyc", + "lib/python3.11/__pycache__/ftplib.cpython-311.pyc", + "lib/python3.11/__pycache__/functools.cpython-311.pyc", + "lib/python3.11/__pycache__/genericpath.cpython-311.pyc", + "lib/python3.11/__pycache__/getopt.cpython-311.pyc", + "lib/python3.11/__pycache__/getpass.cpython-311.pyc", + "lib/python3.11/__pycache__/gettext.cpython-311.pyc", + "lib/python3.11/__pycache__/glob.cpython-311.pyc", + "lib/python3.11/__pycache__/graphlib.cpython-311.pyc", + "lib/python3.11/__pycache__/gzip.cpython-311.pyc", + "lib/python3.11/__pycache__/hashlib.cpython-311.pyc", + "lib/python3.11/__pycache__/heapq.cpython-311.pyc", + "lib/python3.11/__pycache__/hmac.cpython-311.pyc", + "lib/python3.11/__pycache__/imaplib.cpython-311.pyc", + "lib/python3.11/__pycache__/imghdr.cpython-311.pyc", + "lib/python3.11/__pycache__/imp.cpython-311.pyc", + "lib/python3.11/__pycache__/inspect.cpython-311.pyc", + "lib/python3.11/__pycache__/io.cpython-311.pyc", + "lib/python3.11/__pycache__/ipaddress.cpython-311.pyc", + "lib/python3.11/__pycache__/keyword.cpython-311.pyc", + "lib/python3.11/__pycache__/linecache.cpython-311.pyc", + "lib/python3.11/__pycache__/locale.cpython-311.pyc", + "lib/python3.11/__pycache__/lzma.cpython-311.pyc", + "lib/python3.11/__pycache__/mailbox.cpython-311.pyc", + "lib/python3.11/__pycache__/mailcap.cpython-311.pyc", + "lib/python3.11/__pycache__/mimetypes.cpython-311.pyc", + "lib/python3.11/__pycache__/modulefinder.cpython-311.pyc", + "lib/python3.11/__pycache__/netrc.cpython-311.pyc", + "lib/python3.11/__pycache__/nntplib.cpython-311.pyc", + "lib/python3.11/__pycache__/ntpath.cpython-311.pyc", + "lib/python3.11/__pycache__/nturl2path.cpython-311.pyc", + "lib/python3.11/__pycache__/numbers.cpython-311.pyc", + "lib/python3.11/__pycache__/opcode.cpython-311.pyc", + "lib/python3.11/__pycache__/operator.cpython-311.pyc", + "lib/python3.11/__pycache__/optparse.cpython-311.pyc", + "lib/python3.11/__pycache__/os.cpython-311.pyc", + "lib/python3.11/__pycache__/pathlib.cpython-311.pyc", + "lib/python3.11/__pycache__/pdb.cpython-311.pyc", + "lib/python3.11/__pycache__/pickle.cpython-311.pyc", + "lib/python3.11/__pycache__/pickletools.cpython-311.pyc", + "lib/python3.11/__pycache__/pipes.cpython-311.pyc", + "lib/python3.11/__pycache__/pkgutil.cpython-311.pyc", + "lib/python3.11/__pycache__/platform.cpython-311.pyc", + "lib/python3.11/__pycache__/plistlib.cpython-311.pyc", + "lib/python3.11/__pycache__/poplib.cpython-311.pyc", + "lib/python3.11/__pycache__/posixpath.cpython-311.pyc", + "lib/python3.11/__pycache__/pprint.cpython-311.pyc", + "lib/python3.11/__pycache__/profile.cpython-311.pyc", + "lib/python3.11/__pycache__/pstats.cpython-311.pyc", + "lib/python3.11/__pycache__/pty.cpython-311.pyc", + "lib/python3.11/__pycache__/py_compile.cpython-311.pyc", + "lib/python3.11/__pycache__/pyclbr.cpython-311.pyc", + "lib/python3.11/__pycache__/pydoc.cpython-311.pyc", + "lib/python3.11/__pycache__/queue.cpython-311.pyc", + "lib/python3.11/__pycache__/quopri.cpython-311.pyc", + "lib/python3.11/__pycache__/random.cpython-311.pyc", + "lib/python3.11/__pycache__/reprlib.cpython-311.pyc", + "lib/python3.11/__pycache__/rlcompleter.cpython-311.pyc", + "lib/python3.11/__pycache__/runpy.cpython-311.pyc", + "lib/python3.11/__pycache__/sched.cpython-311.pyc", + "lib/python3.11/__pycache__/secrets.cpython-311.pyc", + "lib/python3.11/__pycache__/selectors.cpython-311.pyc", + "lib/python3.11/__pycache__/shelve.cpython-311.pyc", + "lib/python3.11/__pycache__/shlex.cpython-311.pyc", + "lib/python3.11/__pycache__/shutil.cpython-311.pyc", + "lib/python3.11/__pycache__/signal.cpython-311.pyc", + "lib/python3.11/__pycache__/site.cpython-311.pyc", + "lib/python3.11/__pycache__/smtpd.cpython-311.pyc", + "lib/python3.11/__pycache__/smtplib.cpython-311.pyc", + "lib/python3.11/__pycache__/sndhdr.cpython-311.pyc", + "lib/python3.11/__pycache__/socket.cpython-311.pyc", + "lib/python3.11/__pycache__/socketserver.cpython-311.pyc", + "lib/python3.11/__pycache__/sre_compile.cpython-311.pyc", + "lib/python3.11/__pycache__/sre_constants.cpython-311.pyc", + "lib/python3.11/__pycache__/sre_parse.cpython-311.pyc", + "lib/python3.11/__pycache__/ssl.cpython-311.pyc", + "lib/python3.11/__pycache__/stat.cpython-311.pyc", + "lib/python3.11/__pycache__/statistics.cpython-311.pyc", + "lib/python3.11/__pycache__/string.cpython-311.pyc", + "lib/python3.11/__pycache__/stringprep.cpython-311.pyc", + "lib/python3.11/__pycache__/struct.cpython-311.pyc", + "lib/python3.11/__pycache__/subprocess.cpython-311.pyc", + "lib/python3.11/__pycache__/sunau.cpython-311.pyc", + "lib/python3.11/__pycache__/symtable.cpython-311.pyc", + "lib/python3.11/__pycache__/sysconfig.cpython-311.pyc", + "lib/python3.11/__pycache__/tabnanny.cpython-311.pyc", + "lib/python3.11/__pycache__/tarfile.cpython-311.pyc", + "lib/python3.11/__pycache__/telnetlib.cpython-311.pyc", + "lib/python3.11/__pycache__/tempfile.cpython-311.pyc", + "lib/python3.11/__pycache__/textwrap.cpython-311.pyc", + "lib/python3.11/__pycache__/this.cpython-311.pyc", + "lib/python3.11/__pycache__/threading.cpython-311.pyc", + "lib/python3.11/__pycache__/timeit.cpython-311.pyc", + "lib/python3.11/__pycache__/token.cpython-311.pyc", + "lib/python3.11/__pycache__/tokenize.cpython-311.pyc", + "lib/python3.11/__pycache__/trace.cpython-311.pyc", + "lib/python3.11/__pycache__/traceback.cpython-311.pyc", + "lib/python3.11/__pycache__/tracemalloc.cpython-311.pyc", + "lib/python3.11/__pycache__/tty.cpython-311.pyc", + "lib/python3.11/__pycache__/turtle.cpython-311.pyc", + "lib/python3.11/__pycache__/types.cpython-311.pyc", + "lib/python3.11/__pycache__/typing.cpython-311.pyc", + "lib/python3.11/__pycache__/uu.cpython-311.pyc", + "lib/python3.11/__pycache__/uuid.cpython-311.pyc", + "lib/python3.11/__pycache__/warnings.cpython-311.pyc", + "lib/python3.11/__pycache__/wave.cpython-311.pyc", + "lib/python3.11/__pycache__/weakref.cpython-311.pyc", + "lib/python3.11/__pycache__/webbrowser.cpython-311.pyc", + "lib/python3.11/__pycache__/xdrlib.cpython-311.pyc", + "lib/python3.11/__pycache__/zipapp.cpython-311.pyc", + "lib/python3.11/__pycache__/zipfile.cpython-311.pyc", + "lib/python3.11/__pycache__/zipimport.cpython-311.pyc", + "lib/python3.11/_aix_support.py", + "lib/python3.11/_bootsubprocess.py", + "lib/python3.11/_collections_abc.py", + "lib/python3.11/_compat_pickle.py", + "lib/python3.11/_compression.py", + "lib/python3.11/_markupbase.py", + "lib/python3.11/_osx_support.py", + "lib/python3.11/_py_abc.py", + "lib/python3.11/_pydecimal.py", + "lib/python3.11/_pyio.py", + "lib/python3.11/_sitebuiltins.py", + "lib/python3.11/_strptime.py", + "lib/python3.11/_sysconfigdata__darwin_darwin.py", + "lib/python3.11/_sysconfigdata__darwin_darwin.py.orig", + "lib/python3.11/_sysconfigdata_arm64_apple_darwin20_0_0.py", + "lib/python3.11/_threading_local.py", + "lib/python3.11/_weakrefset.py", + "lib/python3.11/abc.py", + "lib/python3.11/aifc.py", + "lib/python3.11/antigravity.py", + "lib/python3.11/argparse.py", + "lib/python3.11/ast.py", + "lib/python3.11/asynchat.py", + "lib/python3.11/asyncio/__init__.py", + "lib/python3.11/asyncio/__main__.py", + "lib/python3.11/asyncio/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/base_events.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/base_futures.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/base_subprocess.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/base_tasks.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/constants.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/coroutines.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/events.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/exceptions.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/format_helpers.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/futures.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/locks.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/log.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/mixins.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/proactor_events.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/protocols.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/queues.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/runners.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/selector_events.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/sslproto.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/staggered.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/streams.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/subprocess.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/taskgroups.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/tasks.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/threads.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/timeouts.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/transports.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/trsock.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/unix_events.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/windows_events.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/windows_utils.cpython-311.pyc", + "lib/python3.11/asyncio/base_events.py", + "lib/python3.11/asyncio/base_futures.py", + "lib/python3.11/asyncio/base_subprocess.py", + "lib/python3.11/asyncio/base_tasks.py", + "lib/python3.11/asyncio/constants.py", + "lib/python3.11/asyncio/coroutines.py", + "lib/python3.11/asyncio/events.py", + "lib/python3.11/asyncio/exceptions.py", + "lib/python3.11/asyncio/format_helpers.py", + "lib/python3.11/asyncio/futures.py", + "lib/python3.11/asyncio/locks.py", + "lib/python3.11/asyncio/log.py", + "lib/python3.11/asyncio/mixins.py", + "lib/python3.11/asyncio/proactor_events.py", + "lib/python3.11/asyncio/protocols.py", + "lib/python3.11/asyncio/queues.py", + "lib/python3.11/asyncio/runners.py", + "lib/python3.11/asyncio/selector_events.py", + "lib/python3.11/asyncio/sslproto.py", + "lib/python3.11/asyncio/staggered.py", + "lib/python3.11/asyncio/streams.py", + "lib/python3.11/asyncio/subprocess.py", + "lib/python3.11/asyncio/taskgroups.py", + "lib/python3.11/asyncio/tasks.py", + "lib/python3.11/asyncio/threads.py", + "lib/python3.11/asyncio/timeouts.py", + "lib/python3.11/asyncio/transports.py", + "lib/python3.11/asyncio/trsock.py", + "lib/python3.11/asyncio/unix_events.py", + "lib/python3.11/asyncio/windows_events.py", + "lib/python3.11/asyncio/windows_utils.py", + "lib/python3.11/asyncore.py", + "lib/python3.11/base64.py", + "lib/python3.11/bdb.py", + "lib/python3.11/bisect.py", + "lib/python3.11/bz2.py", + "lib/python3.11/cProfile.py", + "lib/python3.11/calendar.py", + "lib/python3.11/cgi.py", + "lib/python3.11/cgitb.py", + "lib/python3.11/chunk.py", + "lib/python3.11/cmd.py", + "lib/python3.11/code.py", + "lib/python3.11/codecs.py", + "lib/python3.11/codeop.py", + "lib/python3.11/collections/__init__.py", + "lib/python3.11/collections/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/collections/__pycache__/abc.cpython-311.pyc", + "lib/python3.11/collections/abc.py", + "lib/python3.11/colorsys.py", + "lib/python3.11/compileall.py", + "lib/python3.11/concurrent/__init__.py", + "lib/python3.11/concurrent/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/concurrent/futures/__init__.py", + "lib/python3.11/concurrent/futures/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/concurrent/futures/__pycache__/_base.cpython-311.pyc", + "lib/python3.11/concurrent/futures/__pycache__/process.cpython-311.pyc", + "lib/python3.11/concurrent/futures/__pycache__/thread.cpython-311.pyc", + "lib/python3.11/concurrent/futures/_base.py", + "lib/python3.11/concurrent/futures/process.py", + "lib/python3.11/concurrent/futures/thread.py", + "lib/python3.11/config-3.11-darwin/Makefile", + "lib/python3.11/config-3.11-darwin/Setup", + "lib/python3.11/config-3.11-darwin/Setup.bootstrap", + "lib/python3.11/config-3.11-darwin/Setup.local", + "lib/python3.11/config-3.11-darwin/Setup.stdlib", + "lib/python3.11/config-3.11-darwin/__pycache__/python-config.cpython-311.pyc", + "lib/python3.11/config-3.11-darwin/config.c", + "lib/python3.11/config-3.11-darwin/config.c.in", + "lib/python3.11/config-3.11-darwin/install-sh", + "lib/python3.11/config-3.11-darwin/makesetup", + "lib/python3.11/config-3.11-darwin/python-config.py", + "lib/python3.11/config-3.11-darwin/python.o", + "lib/python3.11/configparser.py", + "lib/python3.11/contextlib.py", + "lib/python3.11/contextvars.py", + "lib/python3.11/copy.py", + "lib/python3.11/copyreg.py", + "lib/python3.11/crypt.py", + "lib/python3.11/csv.py", + "lib/python3.11/ctypes/__init__.py", + "lib/python3.11/ctypes/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/ctypes/__pycache__/_aix.cpython-311.pyc", + "lib/python3.11/ctypes/__pycache__/_endian.cpython-311.pyc", + "lib/python3.11/ctypes/__pycache__/util.cpython-311.pyc", + "lib/python3.11/ctypes/__pycache__/wintypes.cpython-311.pyc", + "lib/python3.11/ctypes/_aix.py", + "lib/python3.11/ctypes/_endian.py", + "lib/python3.11/ctypes/macholib/README.ctypes", + "lib/python3.11/ctypes/macholib/__init__.py", + "lib/python3.11/ctypes/macholib/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/ctypes/macholib/__pycache__/dyld.cpython-311.pyc", + "lib/python3.11/ctypes/macholib/__pycache__/dylib.cpython-311.pyc", + "lib/python3.11/ctypes/macholib/__pycache__/framework.cpython-311.pyc", + "lib/python3.11/ctypes/macholib/dyld.py", + "lib/python3.11/ctypes/macholib/dylib.py", + "lib/python3.11/ctypes/macholib/fetch_macholib", + "lib/python3.11/ctypes/macholib/fetch_macholib.bat", + "lib/python3.11/ctypes/macholib/framework.py", + "lib/python3.11/ctypes/util.py", + "lib/python3.11/ctypes/wintypes.py", + "lib/python3.11/curses/__init__.py", + "lib/python3.11/curses/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/curses/__pycache__/ascii.cpython-311.pyc", + "lib/python3.11/curses/__pycache__/has_key.cpython-311.pyc", + "lib/python3.11/curses/__pycache__/panel.cpython-311.pyc", + "lib/python3.11/curses/__pycache__/textpad.cpython-311.pyc", + "lib/python3.11/curses/ascii.py", + "lib/python3.11/curses/has_key.py", + "lib/python3.11/curses/panel.py", + "lib/python3.11/curses/textpad.py", + "lib/python3.11/dataclasses.py", + "lib/python3.11/datetime.py", + "lib/python3.11/dbm/__init__.py", + "lib/python3.11/dbm/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/dbm/__pycache__/dumb.cpython-311.pyc", + "lib/python3.11/dbm/__pycache__/gnu.cpython-311.pyc", + "lib/python3.11/dbm/__pycache__/ndbm.cpython-311.pyc", + "lib/python3.11/dbm/dumb.py", + "lib/python3.11/dbm/gnu.py", + "lib/python3.11/dbm/ndbm.py", + "lib/python3.11/decimal.py", + "lib/python3.11/difflib.py", + "lib/python3.11/dis.py", + "lib/python3.11/distutils/README", + "lib/python3.11/distutils/__init__.py", + "lib/python3.11/distutils/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/_msvccompiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/archive_util.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/bcppcompiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/ccompiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/cmd.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/config.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/core.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/cygwinccompiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/debug.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/dep_util.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/dir_util.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/dist.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/errors.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/extension.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/fancy_getopt.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/file_util.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/filelist.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/log.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/msvc9compiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/msvccompiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/spawn.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/sysconfig.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/text_file.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/unixccompiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/util.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/version.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/versionpredicate.cpython-311.pyc", + "lib/python3.11/distutils/_msvccompiler.py", + "lib/python3.11/distutils/archive_util.py", + "lib/python3.11/distutils/bcppcompiler.py", + "lib/python3.11/distutils/ccompiler.py", + "lib/python3.11/distutils/cmd.py", + "lib/python3.11/distutils/command/__init__.py", + "lib/python3.11/distutils/command/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/bdist.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/bdist_dumb.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/bdist_rpm.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/build.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/build_clib.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/build_ext.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/build_py.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/build_scripts.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/check.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/clean.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/config.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/install.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/install_data.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/install_egg_info.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/install_headers.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/install_lib.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/install_scripts.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/register.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/sdist.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/upload.cpython-311.pyc", + "lib/python3.11/distutils/command/bdist.py", + "lib/python3.11/distutils/command/bdist_dumb.py", + "lib/python3.11/distutils/command/bdist_rpm.py", + "lib/python3.11/distutils/command/build.py", + "lib/python3.11/distutils/command/build_clib.py", + "lib/python3.11/distutils/command/build_ext.py", + "lib/python3.11/distutils/command/build_py.py", + "lib/python3.11/distutils/command/build_scripts.py", + "lib/python3.11/distutils/command/check.py", + "lib/python3.11/distutils/command/clean.py", + "lib/python3.11/distutils/command/command_template", + "lib/python3.11/distutils/command/config.py", + "lib/python3.11/distutils/command/install.py", + "lib/python3.11/distutils/command/install_data.py", + "lib/python3.11/distutils/command/install_egg_info.py", + "lib/python3.11/distutils/command/install_headers.py", + "lib/python3.11/distutils/command/install_lib.py", + "lib/python3.11/distutils/command/install_scripts.py", + "lib/python3.11/distutils/command/register.py", + "lib/python3.11/distutils/command/sdist.py", + "lib/python3.11/distutils/command/upload.py", + "lib/python3.11/distutils/config.py", + "lib/python3.11/distutils/core.py", + "lib/python3.11/distutils/cygwinccompiler.py", + "lib/python3.11/distutils/debug.py", + "lib/python3.11/distutils/dep_util.py", + "lib/python3.11/distutils/dir_util.py", + "lib/python3.11/distutils/dist.py", + "lib/python3.11/distutils/errors.py", + "lib/python3.11/distutils/extension.py", + "lib/python3.11/distutils/fancy_getopt.py", + "lib/python3.11/distutils/file_util.py", + "lib/python3.11/distutils/filelist.py", + "lib/python3.11/distutils/log.py", + "lib/python3.11/distutils/msvc9compiler.py", + "lib/python3.11/distutils/msvccompiler.py", + "lib/python3.11/distutils/spawn.py", + "lib/python3.11/distutils/sysconfig.py", + "lib/python3.11/distutils/tests/Setup.sample", + "lib/python3.11/distutils/tests/__init__.py", + "lib/python3.11/distutils/tests/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/support.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_archive_util.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_bdist.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_bdist_dumb.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_bdist_rpm.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_build.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_build_clib.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_build_ext.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_build_py.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_build_scripts.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_check.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_clean.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_cmd.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_config.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_config_cmd.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_core.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_cygwinccompiler.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_dep_util.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_dir_util.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_dist.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_extension.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_file_util.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_filelist.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_install.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_install_data.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_install_headers.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_install_lib.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_install_scripts.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_log.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_msvc9compiler.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_msvccompiler.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_register.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_sdist.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_spawn.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_sysconfig.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_text_file.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_unixccompiler.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_upload.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_util.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_version.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_versionpredicate.cpython-311.pyc", + "lib/python3.11/distutils/tests/includetest.rst", + "lib/python3.11/distutils/tests/support.py", + "lib/python3.11/distutils/tests/test_archive_util.py", + "lib/python3.11/distutils/tests/test_bdist.py", + "lib/python3.11/distutils/tests/test_bdist_dumb.py", + "lib/python3.11/distutils/tests/test_bdist_rpm.py", + "lib/python3.11/distutils/tests/test_build.py", + "lib/python3.11/distutils/tests/test_build_clib.py", + "lib/python3.11/distutils/tests/test_build_ext.py", + "lib/python3.11/distutils/tests/test_build_py.py", + "lib/python3.11/distutils/tests/test_build_scripts.py", + "lib/python3.11/distutils/tests/test_check.py", + "lib/python3.11/distutils/tests/test_clean.py", + "lib/python3.11/distutils/tests/test_cmd.py", + "lib/python3.11/distutils/tests/test_config.py", + "lib/python3.11/distutils/tests/test_config_cmd.py", + "lib/python3.11/distutils/tests/test_core.py", + "lib/python3.11/distutils/tests/test_cygwinccompiler.py", + "lib/python3.11/distutils/tests/test_dep_util.py", + "lib/python3.11/distutils/tests/test_dir_util.py", + "lib/python3.11/distutils/tests/test_dist.py", + "lib/python3.11/distutils/tests/test_extension.py", + "lib/python3.11/distutils/tests/test_file_util.py", + "lib/python3.11/distutils/tests/test_filelist.py", + "lib/python3.11/distutils/tests/test_install.py", + "lib/python3.11/distutils/tests/test_install_data.py", + "lib/python3.11/distutils/tests/test_install_headers.py", + "lib/python3.11/distutils/tests/test_install_lib.py", + "lib/python3.11/distutils/tests/test_install_scripts.py", + "lib/python3.11/distutils/tests/test_log.py", + "lib/python3.11/distutils/tests/test_msvc9compiler.py", + "lib/python3.11/distutils/tests/test_msvccompiler.py", + "lib/python3.11/distutils/tests/test_register.py", + "lib/python3.11/distutils/tests/test_sdist.py", + "lib/python3.11/distutils/tests/test_spawn.py", + "lib/python3.11/distutils/tests/test_sysconfig.py", + "lib/python3.11/distutils/tests/test_text_file.py", + "lib/python3.11/distutils/tests/test_unixccompiler.py", + "lib/python3.11/distutils/tests/test_upload.py", + "lib/python3.11/distutils/tests/test_util.py", + "lib/python3.11/distutils/tests/test_version.py", + "lib/python3.11/distutils/tests/test_versionpredicate.py", + "lib/python3.11/distutils/tests/xxmodule.c", + "lib/python3.11/distutils/text_file.py", + "lib/python3.11/distutils/unixccompiler.py", + "lib/python3.11/distutils/util.py", + "lib/python3.11/distutils/version.py", + "lib/python3.11/distutils/versionpredicate.py", + "lib/python3.11/doctest.py", + "lib/python3.11/email/__init__.py", + "lib/python3.11/email/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/email/__pycache__/_encoded_words.cpython-311.pyc", + "lib/python3.11/email/__pycache__/_header_value_parser.cpython-311.pyc", + "lib/python3.11/email/__pycache__/_parseaddr.cpython-311.pyc", + "lib/python3.11/email/__pycache__/_policybase.cpython-311.pyc", + "lib/python3.11/email/__pycache__/base64mime.cpython-311.pyc", + "lib/python3.11/email/__pycache__/charset.cpython-311.pyc", + "lib/python3.11/email/__pycache__/contentmanager.cpython-311.pyc", + "lib/python3.11/email/__pycache__/encoders.cpython-311.pyc", + "lib/python3.11/email/__pycache__/errors.cpython-311.pyc", + "lib/python3.11/email/__pycache__/feedparser.cpython-311.pyc", + "lib/python3.11/email/__pycache__/generator.cpython-311.pyc", + "lib/python3.11/email/__pycache__/header.cpython-311.pyc", + "lib/python3.11/email/__pycache__/headerregistry.cpython-311.pyc", + "lib/python3.11/email/__pycache__/iterators.cpython-311.pyc", + "lib/python3.11/email/__pycache__/message.cpython-311.pyc", + "lib/python3.11/email/__pycache__/parser.cpython-311.pyc", + "lib/python3.11/email/__pycache__/policy.cpython-311.pyc", + "lib/python3.11/email/__pycache__/quoprimime.cpython-311.pyc", + "lib/python3.11/email/__pycache__/utils.cpython-311.pyc", + "lib/python3.11/email/_encoded_words.py", + "lib/python3.11/email/_header_value_parser.py", + "lib/python3.11/email/_parseaddr.py", + "lib/python3.11/email/_policybase.py", + "lib/python3.11/email/architecture.rst", + "lib/python3.11/email/base64mime.py", + "lib/python3.11/email/charset.py", + "lib/python3.11/email/contentmanager.py", + "lib/python3.11/email/encoders.py", + "lib/python3.11/email/errors.py", + "lib/python3.11/email/feedparser.py", + "lib/python3.11/email/generator.py", + "lib/python3.11/email/header.py", + "lib/python3.11/email/headerregistry.py", + "lib/python3.11/email/iterators.py", + "lib/python3.11/email/message.py", + "lib/python3.11/email/mime/__init__.py", + "lib/python3.11/email/mime/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/application.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/audio.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/base.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/image.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/message.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/multipart.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/nonmultipart.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/text.cpython-311.pyc", + "lib/python3.11/email/mime/application.py", + "lib/python3.11/email/mime/audio.py", + "lib/python3.11/email/mime/base.py", + "lib/python3.11/email/mime/image.py", + "lib/python3.11/email/mime/message.py", + "lib/python3.11/email/mime/multipart.py", + "lib/python3.11/email/mime/nonmultipart.py", + "lib/python3.11/email/mime/text.py", + "lib/python3.11/email/parser.py", + "lib/python3.11/email/policy.py", + "lib/python3.11/email/quoprimime.py", + "lib/python3.11/email/utils.py", + "lib/python3.11/encodings/__init__.py", + "lib/python3.11/encodings/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/aliases.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/ascii.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/base64_codec.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/big5.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/big5hkscs.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/bz2_codec.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/charmap.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp037.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1006.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1026.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1125.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1140.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1250.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1251.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1252.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1253.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1254.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1255.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1256.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1257.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1258.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp273.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp424.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp437.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp500.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp720.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp737.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp775.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp850.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp852.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp855.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp856.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp857.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp858.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp860.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp861.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp862.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp863.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp864.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp865.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp866.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp869.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp874.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp875.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp932.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp949.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp950.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/euc_jis_2004.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/euc_jisx0213.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/euc_jp.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/euc_kr.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/gb18030.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/gb2312.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/gbk.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/hex_codec.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/hp_roman8.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/hz.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/idna.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_jp.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_jp_1.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_jp_2.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_jp_2004.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_jp_3.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_jp_ext.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_kr.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_1.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_10.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_11.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_13.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_14.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_15.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_16.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_2.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_3.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_4.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_5.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_6.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_7.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_8.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_9.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/johab.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/koi8_r.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/koi8_t.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/koi8_u.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/kz1048.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/latin_1.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_arabic.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_croatian.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_cyrillic.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_farsi.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_greek.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_iceland.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_latin2.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_roman.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_romanian.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_turkish.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mbcs.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/oem.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/palmos.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/ptcp154.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/punycode.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/quopri_codec.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/raw_unicode_escape.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/rot_13.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/shift_jis.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/shift_jis_2004.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/shift_jisx0213.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/tis_620.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/undefined.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/unicode_escape.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_16.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_16_be.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_16_le.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_32.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_32_be.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_32_le.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_7.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_8.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_8_sig.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/uu_codec.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/zlib_codec.cpython-311.pyc", + "lib/python3.11/encodings/aliases.py", + "lib/python3.11/encodings/ascii.py", + "lib/python3.11/encodings/base64_codec.py", + "lib/python3.11/encodings/big5.py", + "lib/python3.11/encodings/big5hkscs.py", + "lib/python3.11/encodings/bz2_codec.py", + "lib/python3.11/encodings/charmap.py", + "lib/python3.11/encodings/cp037.py", + "lib/python3.11/encodings/cp1006.py", + "lib/python3.11/encodings/cp1026.py", + "lib/python3.11/encodings/cp1125.py", + "lib/python3.11/encodings/cp1140.py", + "lib/python3.11/encodings/cp1250.py", + "lib/python3.11/encodings/cp1251.py", + "lib/python3.11/encodings/cp1252.py", + "lib/python3.11/encodings/cp1253.py", + "lib/python3.11/encodings/cp1254.py", + "lib/python3.11/encodings/cp1255.py", + "lib/python3.11/encodings/cp1256.py", + "lib/python3.11/encodings/cp1257.py", + "lib/python3.11/encodings/cp1258.py", + "lib/python3.11/encodings/cp273.py", + "lib/python3.11/encodings/cp424.py", + "lib/python3.11/encodings/cp437.py", + "lib/python3.11/encodings/cp500.py", + "lib/python3.11/encodings/cp720.py", + "lib/python3.11/encodings/cp737.py", + "lib/python3.11/encodings/cp775.py", + "lib/python3.11/encodings/cp850.py", + "lib/python3.11/encodings/cp852.py", + "lib/python3.11/encodings/cp855.py", + "lib/python3.11/encodings/cp856.py", + "lib/python3.11/encodings/cp857.py", + "lib/python3.11/encodings/cp858.py", + "lib/python3.11/encodings/cp860.py", + "lib/python3.11/encodings/cp861.py", + "lib/python3.11/encodings/cp862.py", + "lib/python3.11/encodings/cp863.py", + "lib/python3.11/encodings/cp864.py", + "lib/python3.11/encodings/cp865.py", + "lib/python3.11/encodings/cp866.py", + "lib/python3.11/encodings/cp869.py", + "lib/python3.11/encodings/cp874.py", + "lib/python3.11/encodings/cp875.py", + "lib/python3.11/encodings/cp932.py", + "lib/python3.11/encodings/cp949.py", + "lib/python3.11/encodings/cp950.py", + "lib/python3.11/encodings/euc_jis_2004.py", + "lib/python3.11/encodings/euc_jisx0213.py", + "lib/python3.11/encodings/euc_jp.py", + "lib/python3.11/encodings/euc_kr.py", + "lib/python3.11/encodings/gb18030.py", + "lib/python3.11/encodings/gb2312.py", + "lib/python3.11/encodings/gbk.py", + "lib/python3.11/encodings/hex_codec.py", + "lib/python3.11/encodings/hp_roman8.py", + "lib/python3.11/encodings/hz.py", + "lib/python3.11/encodings/idna.py", + "lib/python3.11/encodings/iso2022_jp.py", + "lib/python3.11/encodings/iso2022_jp_1.py", + "lib/python3.11/encodings/iso2022_jp_2.py", + "lib/python3.11/encodings/iso2022_jp_2004.py", + "lib/python3.11/encodings/iso2022_jp_3.py", + "lib/python3.11/encodings/iso2022_jp_ext.py", + "lib/python3.11/encodings/iso2022_kr.py", + "lib/python3.11/encodings/iso8859_1.py", + "lib/python3.11/encodings/iso8859_10.py", + "lib/python3.11/encodings/iso8859_11.py", + "lib/python3.11/encodings/iso8859_13.py", + "lib/python3.11/encodings/iso8859_14.py", + "lib/python3.11/encodings/iso8859_15.py", + "lib/python3.11/encodings/iso8859_16.py", + "lib/python3.11/encodings/iso8859_2.py", + "lib/python3.11/encodings/iso8859_3.py", + "lib/python3.11/encodings/iso8859_4.py", + "lib/python3.11/encodings/iso8859_5.py", + "lib/python3.11/encodings/iso8859_6.py", + "lib/python3.11/encodings/iso8859_7.py", + "lib/python3.11/encodings/iso8859_8.py", + "lib/python3.11/encodings/iso8859_9.py", + "lib/python3.11/encodings/johab.py", + "lib/python3.11/encodings/koi8_r.py", + "lib/python3.11/encodings/koi8_t.py", + "lib/python3.11/encodings/koi8_u.py", + "lib/python3.11/encodings/kz1048.py", + "lib/python3.11/encodings/latin_1.py", + "lib/python3.11/encodings/mac_arabic.py", + "lib/python3.11/encodings/mac_croatian.py", + "lib/python3.11/encodings/mac_cyrillic.py", + "lib/python3.11/encodings/mac_farsi.py", + "lib/python3.11/encodings/mac_greek.py", + "lib/python3.11/encodings/mac_iceland.py", + "lib/python3.11/encodings/mac_latin2.py", + "lib/python3.11/encodings/mac_roman.py", + "lib/python3.11/encodings/mac_romanian.py", + "lib/python3.11/encodings/mac_turkish.py", + "lib/python3.11/encodings/mbcs.py", + "lib/python3.11/encodings/oem.py", + "lib/python3.11/encodings/palmos.py", + "lib/python3.11/encodings/ptcp154.py", + "lib/python3.11/encodings/punycode.py", + "lib/python3.11/encodings/quopri_codec.py", + "lib/python3.11/encodings/raw_unicode_escape.py", + "lib/python3.11/encodings/rot_13.py", + "lib/python3.11/encodings/shift_jis.py", + "lib/python3.11/encodings/shift_jis_2004.py", + "lib/python3.11/encodings/shift_jisx0213.py", + "lib/python3.11/encodings/tis_620.py", + "lib/python3.11/encodings/undefined.py", + "lib/python3.11/encodings/unicode_escape.py", + "lib/python3.11/encodings/utf_16.py", + "lib/python3.11/encodings/utf_16_be.py", + "lib/python3.11/encodings/utf_16_le.py", + "lib/python3.11/encodings/utf_32.py", + "lib/python3.11/encodings/utf_32_be.py", + "lib/python3.11/encodings/utf_32_le.py", + "lib/python3.11/encodings/utf_7.py", + "lib/python3.11/encodings/utf_8.py", + "lib/python3.11/encodings/utf_8_sig.py", + "lib/python3.11/encodings/uu_codec.py", + "lib/python3.11/encodings/zlib_codec.py", + "lib/python3.11/ensurepip/__init__.py", + "lib/python3.11/ensurepip/__main__.py", + "lib/python3.11/ensurepip/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/ensurepip/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/ensurepip/__pycache__/_uninstall.cpython-311.pyc", + "lib/python3.11/ensurepip/_bundled/pip-23.2.1-py3-none-any.whl", + "lib/python3.11/ensurepip/_bundled/setuptools-65.5.0-py3-none-any.whl", + "lib/python3.11/ensurepip/_uninstall.py", + "lib/python3.11/enum.py", + "lib/python3.11/filecmp.py", + "lib/python3.11/fileinput.py", + "lib/python3.11/fnmatch.py", + "lib/python3.11/fractions.py", + "lib/python3.11/ftplib.py", + "lib/python3.11/functools.py", + "lib/python3.11/genericpath.py", + "lib/python3.11/getopt.py", + "lib/python3.11/getpass.py", + "lib/python3.11/gettext.py", + "lib/python3.11/glob.py", + "lib/python3.11/graphlib.py", + "lib/python3.11/gzip.py", + "lib/python3.11/hashlib.py", + "lib/python3.11/heapq.py", + "lib/python3.11/hmac.py", + "lib/python3.11/html/__init__.py", + "lib/python3.11/html/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/html/__pycache__/entities.cpython-311.pyc", + "lib/python3.11/html/__pycache__/parser.cpython-311.pyc", + "lib/python3.11/html/entities.py", + "lib/python3.11/html/parser.py", + "lib/python3.11/http/__init__.py", + "lib/python3.11/http/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/http/__pycache__/client.cpython-311.pyc", + "lib/python3.11/http/__pycache__/cookiejar.cpython-311.pyc", + "lib/python3.11/http/__pycache__/cookies.cpython-311.pyc", + "lib/python3.11/http/__pycache__/server.cpython-311.pyc", + "lib/python3.11/http/client.py", + "lib/python3.11/http/cookiejar.py", + "lib/python3.11/http/cookies.py", + "lib/python3.11/http/server.py", + "lib/python3.11/idlelib/CREDITS.txt", + "lib/python3.11/idlelib/ChangeLog", + "lib/python3.11/idlelib/HISTORY.txt", + "lib/python3.11/idlelib/Icons/README.txt", + "lib/python3.11/idlelib/Icons/folder.gif", + "lib/python3.11/idlelib/Icons/idle.ico", + "lib/python3.11/idlelib/Icons/idle_16.gif", + "lib/python3.11/idlelib/Icons/idle_16.png", + "lib/python3.11/idlelib/Icons/idle_256.png", + "lib/python3.11/idlelib/Icons/idle_32.gif", + "lib/python3.11/idlelib/Icons/idle_32.png", + "lib/python3.11/idlelib/Icons/idle_48.gif", + "lib/python3.11/idlelib/Icons/idle_48.png", + "lib/python3.11/idlelib/Icons/minusnode.gif", + "lib/python3.11/idlelib/Icons/openfolder.gif", + "lib/python3.11/idlelib/Icons/plusnode.gif", + "lib/python3.11/idlelib/Icons/python.gif", + "lib/python3.11/idlelib/Icons/tk.gif", + "lib/python3.11/idlelib/NEWS.txt", + "lib/python3.11/idlelib/NEWS2x.txt", + "lib/python3.11/idlelib/README.txt", + "lib/python3.11/idlelib/TODO.txt", + "lib/python3.11/idlelib/__init__.py", + "lib/python3.11/idlelib/__main__.py", + "lib/python3.11/idlelib/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/autocomplete.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/autocomplete_w.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/autoexpand.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/browser.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/calltip.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/calltip_w.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/codecontext.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/colorizer.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/config.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/config_key.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/configdialog.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/debugger.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/debugger_r.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/debugobj.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/debugobj_r.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/delegator.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/dynoption.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/editor.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/filelist.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/format.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/grep.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/help.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/help_about.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/history.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/hyperparser.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/idle.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/iomenu.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/macosx.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/mainmenu.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/multicall.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/outwin.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/parenmatch.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/pathbrowser.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/percolator.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/pyparse.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/pyshell.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/query.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/redirector.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/replace.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/rpc.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/run.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/runscript.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/scrolledlist.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/search.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/searchbase.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/searchengine.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/sidebar.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/squeezer.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/stackviewer.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/statusbar.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/textview.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/tooltip.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/tree.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/undo.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/util.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/window.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/zoomheight.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/zzdummy.cpython-311.pyc", + "lib/python3.11/idlelib/autocomplete.py", + "lib/python3.11/idlelib/autocomplete_w.py", + "lib/python3.11/idlelib/autoexpand.py", + "lib/python3.11/idlelib/browser.py", + "lib/python3.11/idlelib/calltip.py", + "lib/python3.11/idlelib/calltip_w.py", + "lib/python3.11/idlelib/codecontext.py", + "lib/python3.11/idlelib/colorizer.py", + "lib/python3.11/idlelib/config-extensions.def", + "lib/python3.11/idlelib/config-highlight.def", + "lib/python3.11/idlelib/config-keys.def", + "lib/python3.11/idlelib/config-main.def", + "lib/python3.11/idlelib/config.py", + "lib/python3.11/idlelib/config_key.py", + "lib/python3.11/idlelib/configdialog.py", + "lib/python3.11/idlelib/debugger.py", + "lib/python3.11/idlelib/debugger_r.py", + "lib/python3.11/idlelib/debugobj.py", + "lib/python3.11/idlelib/debugobj_r.py", + "lib/python3.11/idlelib/delegator.py", + "lib/python3.11/idlelib/dynoption.py", + "lib/python3.11/idlelib/editor.py", + "lib/python3.11/idlelib/extend.txt", + "lib/python3.11/idlelib/filelist.py", + "lib/python3.11/idlelib/format.py", + "lib/python3.11/idlelib/grep.py", + "lib/python3.11/idlelib/help.html", + "lib/python3.11/idlelib/help.py", + "lib/python3.11/idlelib/help_about.py", + "lib/python3.11/idlelib/history.py", + "lib/python3.11/idlelib/hyperparser.py", + "lib/python3.11/idlelib/idle.bat", + "lib/python3.11/idlelib/idle.py", + "lib/python3.11/idlelib/idle.pyw", + "lib/python3.11/idlelib/idle_test/README.txt", + "lib/python3.11/idlelib/idle_test/__init__.py", + "lib/python3.11/idlelib/idle_test/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/htest.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/mock_idle.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/mock_tk.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/template.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_autocomplete.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_autocomplete_w.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_autoexpand.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_browser.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_calltip.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_calltip_w.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_codecontext.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_colorizer.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_config.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_config_key.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_configdialog.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_debugger.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_debugger_r.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_debugobj.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_debugobj_r.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_delegator.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_editmenu.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_editor.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_filelist.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_format.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_grep.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_help.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_help_about.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_history.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_hyperparser.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_iomenu.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_macosx.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_mainmenu.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_multicall.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_outwin.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_parenmatch.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_pathbrowser.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_percolator.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_pyparse.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_pyshell.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_query.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_redirector.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_replace.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_rpc.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_run.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_runscript.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_scrolledlist.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_search.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_searchbase.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_searchengine.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_sidebar.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_squeezer.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_stackviewer.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_statusbar.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_text.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_textview.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_tooltip.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_tree.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_undo.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_util.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_warning.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_window.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_zoomheight.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_zzdummy.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/tkinter_testing_utils.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/example_noext", + "lib/python3.11/idlelib/idle_test/example_stub.pyi", + "lib/python3.11/idlelib/idle_test/htest.py", + "lib/python3.11/idlelib/idle_test/mock_idle.py", + "lib/python3.11/idlelib/idle_test/mock_tk.py", + "lib/python3.11/idlelib/idle_test/template.py", + "lib/python3.11/idlelib/idle_test/test_autocomplete.py", + "lib/python3.11/idlelib/idle_test/test_autocomplete_w.py", + "lib/python3.11/idlelib/idle_test/test_autoexpand.py", + "lib/python3.11/idlelib/idle_test/test_browser.py", + "lib/python3.11/idlelib/idle_test/test_calltip.py", + "lib/python3.11/idlelib/idle_test/test_calltip_w.py", + "lib/python3.11/idlelib/idle_test/test_codecontext.py", + "lib/python3.11/idlelib/idle_test/test_colorizer.py", + "lib/python3.11/idlelib/idle_test/test_config.py", + "lib/python3.11/idlelib/idle_test/test_config_key.py", + "lib/python3.11/idlelib/idle_test/test_configdialog.py", + "lib/python3.11/idlelib/idle_test/test_debugger.py", + "lib/python3.11/idlelib/idle_test/test_debugger_r.py", + "lib/python3.11/idlelib/idle_test/test_debugobj.py", + "lib/python3.11/idlelib/idle_test/test_debugobj_r.py", + "lib/python3.11/idlelib/idle_test/test_delegator.py", + "lib/python3.11/idlelib/idle_test/test_editmenu.py", + "lib/python3.11/idlelib/idle_test/test_editor.py", + "lib/python3.11/idlelib/idle_test/test_filelist.py", + "lib/python3.11/idlelib/idle_test/test_format.py", + "lib/python3.11/idlelib/idle_test/test_grep.py", + "lib/python3.11/idlelib/idle_test/test_help.py", + "lib/python3.11/idlelib/idle_test/test_help_about.py", + "lib/python3.11/idlelib/idle_test/test_history.py", + "lib/python3.11/idlelib/idle_test/test_hyperparser.py", + "lib/python3.11/idlelib/idle_test/test_iomenu.py", + "lib/python3.11/idlelib/idle_test/test_macosx.py", + "lib/python3.11/idlelib/idle_test/test_mainmenu.py", + "lib/python3.11/idlelib/idle_test/test_multicall.py", + "lib/python3.11/idlelib/idle_test/test_outwin.py", + "lib/python3.11/idlelib/idle_test/test_parenmatch.py", + "lib/python3.11/idlelib/idle_test/test_pathbrowser.py", + "lib/python3.11/idlelib/idle_test/test_percolator.py", + "lib/python3.11/idlelib/idle_test/test_pyparse.py", + "lib/python3.11/idlelib/idle_test/test_pyshell.py", + "lib/python3.11/idlelib/idle_test/test_query.py", + "lib/python3.11/idlelib/idle_test/test_redirector.py", + "lib/python3.11/idlelib/idle_test/test_replace.py", + "lib/python3.11/idlelib/idle_test/test_rpc.py", + "lib/python3.11/idlelib/idle_test/test_run.py", + "lib/python3.11/idlelib/idle_test/test_runscript.py", + "lib/python3.11/idlelib/idle_test/test_scrolledlist.py", + "lib/python3.11/idlelib/idle_test/test_search.py", + "lib/python3.11/idlelib/idle_test/test_searchbase.py", + "lib/python3.11/idlelib/idle_test/test_searchengine.py", + "lib/python3.11/idlelib/idle_test/test_sidebar.py", + "lib/python3.11/idlelib/idle_test/test_squeezer.py", + "lib/python3.11/idlelib/idle_test/test_stackviewer.py", + "lib/python3.11/idlelib/idle_test/test_statusbar.py", + "lib/python3.11/idlelib/idle_test/test_text.py", + "lib/python3.11/idlelib/idle_test/test_textview.py", + "lib/python3.11/idlelib/idle_test/test_tooltip.py", + "lib/python3.11/idlelib/idle_test/test_tree.py", + "lib/python3.11/idlelib/idle_test/test_undo.py", + "lib/python3.11/idlelib/idle_test/test_util.py", + "lib/python3.11/idlelib/idle_test/test_warning.py", + "lib/python3.11/idlelib/idle_test/test_window.py", + "lib/python3.11/idlelib/idle_test/test_zoomheight.py", + "lib/python3.11/idlelib/idle_test/test_zzdummy.py", + "lib/python3.11/idlelib/idle_test/tkinter_testing_utils.py", + "lib/python3.11/idlelib/iomenu.py", + "lib/python3.11/idlelib/macosx.py", + "lib/python3.11/idlelib/mainmenu.py", + "lib/python3.11/idlelib/multicall.py", + "lib/python3.11/idlelib/outwin.py", + "lib/python3.11/idlelib/parenmatch.py", + "lib/python3.11/idlelib/pathbrowser.py", + "lib/python3.11/idlelib/percolator.py", + "lib/python3.11/idlelib/pyparse.py", + "lib/python3.11/idlelib/pyshell.py", + "lib/python3.11/idlelib/query.py", + "lib/python3.11/idlelib/redirector.py", + "lib/python3.11/idlelib/replace.py", + "lib/python3.11/idlelib/rpc.py", + "lib/python3.11/idlelib/run.py", + "lib/python3.11/idlelib/runscript.py", + "lib/python3.11/idlelib/scrolledlist.py", + "lib/python3.11/idlelib/search.py", + "lib/python3.11/idlelib/searchbase.py", + "lib/python3.11/idlelib/searchengine.py", + "lib/python3.11/idlelib/sidebar.py", + "lib/python3.11/idlelib/squeezer.py", + "lib/python3.11/idlelib/stackviewer.py", + "lib/python3.11/idlelib/statusbar.py", + "lib/python3.11/idlelib/textview.py", + "lib/python3.11/idlelib/tooltip.py", + "lib/python3.11/idlelib/tree.py", + "lib/python3.11/idlelib/undo.py", + "lib/python3.11/idlelib/util.py", + "lib/python3.11/idlelib/window.py", + "lib/python3.11/idlelib/zoomheight.py", + "lib/python3.11/idlelib/zzdummy.py", + "lib/python3.11/imaplib.py", + "lib/python3.11/imghdr.py", + "lib/python3.11/imp.py", + "lib/python3.11/importlib/__init__.py", + "lib/python3.11/importlib/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/_abc.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/_bootstrap.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/_bootstrap_external.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/abc.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/machinery.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/readers.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/simple.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/util.cpython-311.pyc", + "lib/python3.11/importlib/_abc.py", + "lib/python3.11/importlib/_bootstrap.py", + "lib/python3.11/importlib/_bootstrap_external.py", + "lib/python3.11/importlib/abc.py", + "lib/python3.11/importlib/machinery.py", + "lib/python3.11/importlib/metadata/__init__.py", + "lib/python3.11/importlib/metadata/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/importlib/metadata/__pycache__/_adapters.cpython-311.pyc", + "lib/python3.11/importlib/metadata/__pycache__/_collections.cpython-311.pyc", + "lib/python3.11/importlib/metadata/__pycache__/_functools.cpython-311.pyc", + "lib/python3.11/importlib/metadata/__pycache__/_itertools.cpython-311.pyc", + "lib/python3.11/importlib/metadata/__pycache__/_meta.cpython-311.pyc", + "lib/python3.11/importlib/metadata/__pycache__/_text.cpython-311.pyc", + "lib/python3.11/importlib/metadata/_adapters.py", + "lib/python3.11/importlib/metadata/_collections.py", + "lib/python3.11/importlib/metadata/_functools.py", + "lib/python3.11/importlib/metadata/_itertools.py", + "lib/python3.11/importlib/metadata/_meta.py", + "lib/python3.11/importlib/metadata/_text.py", + "lib/python3.11/importlib/readers.py", + "lib/python3.11/importlib/resources/__init__.py", + "lib/python3.11/importlib/resources/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/_adapters.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/_common.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/_itertools.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/_legacy.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/abc.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/readers.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/simple.cpython-311.pyc", + "lib/python3.11/importlib/resources/_adapters.py", + "lib/python3.11/importlib/resources/_common.py", + "lib/python3.11/importlib/resources/_itertools.py", + "lib/python3.11/importlib/resources/_legacy.py", + "lib/python3.11/importlib/resources/abc.py", + "lib/python3.11/importlib/resources/readers.py", + "lib/python3.11/importlib/resources/simple.py", + "lib/python3.11/importlib/simple.py", + "lib/python3.11/importlib/util.py", + "lib/python3.11/inspect.py", + "lib/python3.11/io.py", + "lib/python3.11/ipaddress.py", + "lib/python3.11/json/__init__.py", + "lib/python3.11/json/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/json/__pycache__/decoder.cpython-311.pyc", + "lib/python3.11/json/__pycache__/encoder.cpython-311.pyc", + "lib/python3.11/json/__pycache__/scanner.cpython-311.pyc", + "lib/python3.11/json/__pycache__/tool.cpython-311.pyc", + "lib/python3.11/json/decoder.py", + "lib/python3.11/json/encoder.py", + "lib/python3.11/json/scanner.py", + "lib/python3.11/json/tool.py", + "lib/python3.11/keyword.py", + "lib/python3.11/lib-dynload/_asyncio.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_bisect.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_blake2.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_bz2.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_codecs_cn.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_codecs_hk.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_codecs_iso2022.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_codecs_jp.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_codecs_kr.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_codecs_tw.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_contextvars.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_crypt.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_csv.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_ctypes.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_ctypes_test.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_curses.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_curses_panel.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_datetime.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_dbm.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_decimal.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_elementtree.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_hashlib.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_heapq.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_json.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_lsprof.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_lzma.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_md5.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_multibytecodec.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_multiprocessing.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_opcode.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_pickle.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_posixshmem.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_posixsubprocess.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_queue.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_random.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_scproxy.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_sha1.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_sha256.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_sha3.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_sha512.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_socket.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_sqlite3.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_ssl.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_statistics.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_struct.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_testbuffer.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_testcapi.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_testclinic.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_testimportmultiple.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_testinternalcapi.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_testmultiphase.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_tkinter.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_typing.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_uuid.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_xxsubinterpreters.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_xxtestfuzz.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_zoneinfo.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/array.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/audioop.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/binascii.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/cmath.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/fcntl.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/grp.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/math.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/mmap.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/nis.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/pyexpat.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/readline.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/resource.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/select.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/syslog.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/termios.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/unicodedata.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/xxlimited.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/xxlimited_35.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/zlib.cpython-311-darwin.so", + "lib/python3.11/lib2to3/Grammar.txt", + "lib/python3.11/lib2to3/Grammar3.11.5.final.0.pickle", + "lib/python3.11/lib2to3/PatternGrammar.txt", + "lib/python3.11/lib2to3/PatternGrammar3.11.5.final.0.pickle", + "lib/python3.11/lib2to3/__init__.py", + "lib/python3.11/lib2to3/__main__.py", + "lib/python3.11/lib2to3/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/btm_matcher.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/btm_utils.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/fixer_base.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/fixer_util.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/main.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/patcomp.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/pygram.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/pytree.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/refactor.cpython-311.pyc", + "lib/python3.11/lib2to3/btm_matcher.py", + "lib/python3.11/lib2to3/btm_utils.py", + "lib/python3.11/lib2to3/fixer_base.py", + "lib/python3.11/lib2to3/fixer_util.py", + "lib/python3.11/lib2to3/fixes/__init__.py", + "lib/python3.11/lib2to3/fixes/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_apply.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_asserts.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_basestring.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_buffer.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_dict.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_except.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_exec.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_execfile.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_exitfunc.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_filter.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_funcattrs.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_future.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_getcwdu.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_has_key.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_idioms.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_import.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_imports.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_imports2.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_input.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_intern.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_isinstance.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_itertools.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_itertools_imports.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_long.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_map.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_metaclass.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_methodattrs.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_ne.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_next.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_nonzero.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_numliterals.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_operator.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_paren.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_print.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_raise.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_raw_input.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_reduce.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_reload.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_renames.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_repr.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_set_literal.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_standarderror.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_sys_exc.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_throw.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_tuple_params.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_types.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_unicode.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_urllib.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_ws_comma.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_xrange.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_xreadlines.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_zip.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/fix_apply.py", + "lib/python3.11/lib2to3/fixes/fix_asserts.py", + "lib/python3.11/lib2to3/fixes/fix_basestring.py", + "lib/python3.11/lib2to3/fixes/fix_buffer.py", + "lib/python3.11/lib2to3/fixes/fix_dict.py", + "lib/python3.11/lib2to3/fixes/fix_except.py", + "lib/python3.11/lib2to3/fixes/fix_exec.py", + "lib/python3.11/lib2to3/fixes/fix_execfile.py", + "lib/python3.11/lib2to3/fixes/fix_exitfunc.py", + "lib/python3.11/lib2to3/fixes/fix_filter.py", + "lib/python3.11/lib2to3/fixes/fix_funcattrs.py", + "lib/python3.11/lib2to3/fixes/fix_future.py", + "lib/python3.11/lib2to3/fixes/fix_getcwdu.py", + "lib/python3.11/lib2to3/fixes/fix_has_key.py", + "lib/python3.11/lib2to3/fixes/fix_idioms.py", + "lib/python3.11/lib2to3/fixes/fix_import.py", + "lib/python3.11/lib2to3/fixes/fix_imports.py", + "lib/python3.11/lib2to3/fixes/fix_imports2.py", + "lib/python3.11/lib2to3/fixes/fix_input.py", + "lib/python3.11/lib2to3/fixes/fix_intern.py", + "lib/python3.11/lib2to3/fixes/fix_isinstance.py", + "lib/python3.11/lib2to3/fixes/fix_itertools.py", + "lib/python3.11/lib2to3/fixes/fix_itertools_imports.py", + "lib/python3.11/lib2to3/fixes/fix_long.py", + "lib/python3.11/lib2to3/fixes/fix_map.py", + "lib/python3.11/lib2to3/fixes/fix_metaclass.py", + "lib/python3.11/lib2to3/fixes/fix_methodattrs.py", + "lib/python3.11/lib2to3/fixes/fix_ne.py", + "lib/python3.11/lib2to3/fixes/fix_next.py", + "lib/python3.11/lib2to3/fixes/fix_nonzero.py", + "lib/python3.11/lib2to3/fixes/fix_numliterals.py", + "lib/python3.11/lib2to3/fixes/fix_operator.py", + "lib/python3.11/lib2to3/fixes/fix_paren.py", + "lib/python3.11/lib2to3/fixes/fix_print.py", + "lib/python3.11/lib2to3/fixes/fix_raise.py", + "lib/python3.11/lib2to3/fixes/fix_raw_input.py", + "lib/python3.11/lib2to3/fixes/fix_reduce.py", + "lib/python3.11/lib2to3/fixes/fix_reload.py", + "lib/python3.11/lib2to3/fixes/fix_renames.py", + "lib/python3.11/lib2to3/fixes/fix_repr.py", + "lib/python3.11/lib2to3/fixes/fix_set_literal.py", + "lib/python3.11/lib2to3/fixes/fix_standarderror.py", + "lib/python3.11/lib2to3/fixes/fix_sys_exc.py", + "lib/python3.11/lib2to3/fixes/fix_throw.py", + "lib/python3.11/lib2to3/fixes/fix_tuple_params.py", + "lib/python3.11/lib2to3/fixes/fix_types.py", + "lib/python3.11/lib2to3/fixes/fix_unicode.py", + "lib/python3.11/lib2to3/fixes/fix_urllib.py", + "lib/python3.11/lib2to3/fixes/fix_ws_comma.py", + "lib/python3.11/lib2to3/fixes/fix_xrange.py", + "lib/python3.11/lib2to3/fixes/fix_xreadlines.py", + "lib/python3.11/lib2to3/fixes/fix_zip.py", + "lib/python3.11/lib2to3/main.py", + "lib/python3.11/lib2to3/patcomp.py", + "lib/python3.11/lib2to3/pgen2/__init__.py", + "lib/python3.11/lib2to3/pgen2/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/conv.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/driver.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/grammar.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/literals.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/parse.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/pgen.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/token.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/tokenize.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/conv.py", + "lib/python3.11/lib2to3/pgen2/driver.py", + "lib/python3.11/lib2to3/pgen2/grammar.py", + "lib/python3.11/lib2to3/pgen2/literals.py", + "lib/python3.11/lib2to3/pgen2/parse.py", + "lib/python3.11/lib2to3/pgen2/pgen.py", + "lib/python3.11/lib2to3/pgen2/token.py", + "lib/python3.11/lib2to3/pgen2/tokenize.py", + "lib/python3.11/lib2to3/pygram.py", + "lib/python3.11/lib2to3/pytree.py", + "lib/python3.11/lib2to3/refactor.py", + "lib/python3.11/lib2to3/tests/__init__.py", + "lib/python3.11/lib2to3/tests/__main__.py", + "lib/python3.11/lib2to3/tests/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/pytree_idempotency.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/support.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_all_fixers.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_fixers.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_main.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_parser.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_pytree.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_refactor.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_util.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/README", + "lib/python3.11/lib2to3/tests/data/__pycache__/infinite_recursion.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/__pycache__/py3_test_grammar.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/bom.py", + "lib/python3.11/lib2to3/tests/data/crlf.py", + "lib/python3.11/lib2to3/tests/data/different_encoding.py", + "lib/python3.11/lib2to3/tests/data/false_encoding.py", + "lib/python3.11/lib2to3/tests/data/fixers/__pycache__/bad_order.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/__pycache__/no_fixer_cls.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/__pycache__/parrot_example.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/bad_order.py", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__init__.py", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__pycache__/fix_explicit.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__pycache__/fix_first.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__pycache__/fix_last.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__pycache__/fix_parrot.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__pycache__/fix_preorder.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/fix_explicit.py", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/fix_first.py", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/fix_last.py", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/fix_parrot.py", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/fix_preorder.py", + "lib/python3.11/lib2to3/tests/data/fixers/no_fixer_cls.py", + "lib/python3.11/lib2to3/tests/data/fixers/parrot_example.py", + "lib/python3.11/lib2to3/tests/data/infinite_recursion.py", + "lib/python3.11/lib2to3/tests/data/py2_test_grammar.py", + "lib/python3.11/lib2to3/tests/data/py3_test_grammar.py", + "lib/python3.11/lib2to3/tests/pytree_idempotency.py", + "lib/python3.11/lib2to3/tests/support.py", + "lib/python3.11/lib2to3/tests/test_all_fixers.py", + "lib/python3.11/lib2to3/tests/test_fixers.py", + "lib/python3.11/lib2to3/tests/test_main.py", + "lib/python3.11/lib2to3/tests/test_parser.py", + "lib/python3.11/lib2to3/tests/test_pytree.py", + "lib/python3.11/lib2to3/tests/test_refactor.py", + "lib/python3.11/lib2to3/tests/test_util.py", + "lib/python3.11/linecache.py", + "lib/python3.11/locale.py", + "lib/python3.11/logging/__init__.py", + "lib/python3.11/logging/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/logging/__pycache__/config.cpython-311.pyc", + "lib/python3.11/logging/__pycache__/handlers.cpython-311.pyc", + "lib/python3.11/logging/config.py", + "lib/python3.11/logging/handlers.py", + "lib/python3.11/lzma.py", + "lib/python3.11/mailbox.py", + "lib/python3.11/mailcap.py", + "lib/python3.11/mimetypes.py", + "lib/python3.11/modulefinder.py", + "lib/python3.11/multiprocessing/__init__.py", + "lib/python3.11/multiprocessing/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/connection.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/context.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/forkserver.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/heap.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/managers.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/pool.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/popen_fork.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/popen_forkserver.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/popen_spawn_posix.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/popen_spawn_win32.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/process.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/queues.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/reduction.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/resource_sharer.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/resource_tracker.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/shared_memory.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/sharedctypes.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/spawn.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/synchronize.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/util.cpython-311.pyc", + "lib/python3.11/multiprocessing/connection.py", + "lib/python3.11/multiprocessing/context.py", + "lib/python3.11/multiprocessing/dummy/__init__.py", + "lib/python3.11/multiprocessing/dummy/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/multiprocessing/dummy/__pycache__/connection.cpython-311.pyc", + "lib/python3.11/multiprocessing/dummy/connection.py", + "lib/python3.11/multiprocessing/forkserver.py", + "lib/python3.11/multiprocessing/heap.py", + "lib/python3.11/multiprocessing/managers.py", + "lib/python3.11/multiprocessing/pool.py", + "lib/python3.11/multiprocessing/popen_fork.py", + "lib/python3.11/multiprocessing/popen_forkserver.py", + "lib/python3.11/multiprocessing/popen_spawn_posix.py", + "lib/python3.11/multiprocessing/popen_spawn_win32.py", + "lib/python3.11/multiprocessing/process.py", + "lib/python3.11/multiprocessing/queues.py", + "lib/python3.11/multiprocessing/reduction.py", + "lib/python3.11/multiprocessing/resource_sharer.py", + "lib/python3.11/multiprocessing/resource_tracker.py", + "lib/python3.11/multiprocessing/shared_memory.py", + "lib/python3.11/multiprocessing/sharedctypes.py", + "lib/python3.11/multiprocessing/spawn.py", + "lib/python3.11/multiprocessing/synchronize.py", + "lib/python3.11/multiprocessing/util.py", + "lib/python3.11/netrc.py", + "lib/python3.11/nntplib.py", + "lib/python3.11/ntpath.py", + "lib/python3.11/nturl2path.py", + "lib/python3.11/numbers.py", + "lib/python3.11/opcode.py", + "lib/python3.11/operator.py", + "lib/python3.11/optparse.py", + "lib/python3.11/os.py", + "lib/python3.11/pathlib.py", + "lib/python3.11/pdb.py", + "lib/python3.11/pickle.py", + "lib/python3.11/pickletools.py", + "lib/python3.11/pipes.py", + "lib/python3.11/pkgutil.py", + "lib/python3.11/platform.py", + "lib/python3.11/plistlib.py", + "lib/python3.11/poplib.py", + "lib/python3.11/posixpath.py", + "lib/python3.11/pprint.py", + "lib/python3.11/profile.py", + "lib/python3.11/pstats.py", + "lib/python3.11/pty.py", + "lib/python3.11/py_compile.py", + "lib/python3.11/pyclbr.py", + "lib/python3.11/pydoc.py", + "lib/python3.11/pydoc_data/__init__.py", + "lib/python3.11/pydoc_data/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/pydoc_data/__pycache__/topics.cpython-311.pyc", + "lib/python3.11/pydoc_data/_pydoc.css", + "lib/python3.11/pydoc_data/topics.py", + "lib/python3.11/queue.py", + "lib/python3.11/quopri.py", + "lib/python3.11/random.py", + "lib/python3.11/re/__init__.py", + "lib/python3.11/re/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/re/__pycache__/_casefix.cpython-311.pyc", + "lib/python3.11/re/__pycache__/_compiler.cpython-311.pyc", + "lib/python3.11/re/__pycache__/_constants.cpython-311.pyc", + "lib/python3.11/re/__pycache__/_parser.cpython-311.pyc", + "lib/python3.11/re/_casefix.py", + "lib/python3.11/re/_compiler.py", + "lib/python3.11/re/_constants.py", + "lib/python3.11/re/_parser.py", + "lib/python3.11/reprlib.py", + "lib/python3.11/rlcompleter.py", + "lib/python3.11/runpy.py", + "lib/python3.11/sched.py", + "lib/python3.11/secrets.py", + "lib/python3.11/selectors.py", + "lib/python3.11/shelve.py", + "lib/python3.11/shlex.py", + "lib/python3.11/shutil.py", + "lib/python3.11/signal.py", + "lib/python3.11/site-packages/README.txt", + "lib/python3.11/site.py", + "lib/python3.11/smtpd.py", + "lib/python3.11/smtplib.py", + "lib/python3.11/sndhdr.py", + "lib/python3.11/socket.py", + "lib/python3.11/socketserver.py", + "lib/python3.11/sqlite3/__init__.py", + "lib/python3.11/sqlite3/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/sqlite3/__pycache__/dbapi2.cpython-311.pyc", + "lib/python3.11/sqlite3/__pycache__/dump.cpython-311.pyc", + "lib/python3.11/sqlite3/dbapi2.py", + "lib/python3.11/sqlite3/dump.py", + "lib/python3.11/sre_compile.py", + "lib/python3.11/sre_constants.py", + "lib/python3.11/sre_parse.py", + "lib/python3.11/ssl.py", + "lib/python3.11/stat.py", + "lib/python3.11/statistics.py", + "lib/python3.11/string.py", + "lib/python3.11/stringprep.py", + "lib/python3.11/struct.py", + "lib/python3.11/subprocess.py", + "lib/python3.11/sunau.py", + "lib/python3.11/symtable.py", + "lib/python3.11/sysconfig.py", + "lib/python3.11/tabnanny.py", + "lib/python3.11/tarfile.py", + "lib/python3.11/telnetlib.py", + "lib/python3.11/tempfile.py", + "lib/python3.11/test/__init__.py", + "lib/python3.11/test/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/test/__pycache__/test_script_helper.cpython-311.pyc", + "lib/python3.11/test/__pycache__/test_support.cpython-311.pyc", + "lib/python3.11/test/support/__init__.py", + "lib/python3.11/test/support/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/bytecode_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/hashlib_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/import_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/interpreters.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/logging_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/os_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/script_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/socket_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/testresult.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/threading_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/warnings_helper.cpython-311.pyc", + "lib/python3.11/test/support/bytecode_helper.py", + "lib/python3.11/test/support/hashlib_helper.py", + "lib/python3.11/test/support/import_helper.py", + "lib/python3.11/test/support/interpreters.py", + "lib/python3.11/test/support/logging_helper.py", + "lib/python3.11/test/support/os_helper.py", + "lib/python3.11/test/support/script_helper.py", + "lib/python3.11/test/support/socket_helper.py", + "lib/python3.11/test/support/testresult.py", + "lib/python3.11/test/support/threading_helper.py", + "lib/python3.11/test/support/warnings_helper.py", + "lib/python3.11/test/test_script_helper.py", + "lib/python3.11/test/test_support.py", + "lib/python3.11/textwrap.py", + "lib/python3.11/this.py", + "lib/python3.11/threading.py", + "lib/python3.11/timeit.py", + "lib/python3.11/tkinter/__init__.py", + "lib/python3.11/tkinter/__main__.py", + "lib/python3.11/tkinter/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/colorchooser.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/commondialog.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/constants.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/dialog.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/dnd.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/filedialog.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/font.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/messagebox.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/scrolledtext.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/simpledialog.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/tix.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/ttk.cpython-311.pyc", + "lib/python3.11/tkinter/colorchooser.py", + "lib/python3.11/tkinter/commondialog.py", + "lib/python3.11/tkinter/constants.py", + "lib/python3.11/tkinter/dialog.py", + "lib/python3.11/tkinter/dnd.py", + "lib/python3.11/tkinter/filedialog.py", + "lib/python3.11/tkinter/font.py", + "lib/python3.11/tkinter/messagebox.py", + "lib/python3.11/tkinter/scrolledtext.py", + "lib/python3.11/tkinter/simpledialog.py", + "lib/python3.11/tkinter/tix.py", + "lib/python3.11/tkinter/ttk.py", + "lib/python3.11/token.py", + "lib/python3.11/tokenize.py", + "lib/python3.11/tomllib/__init__.py", + "lib/python3.11/tomllib/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/tomllib/__pycache__/_parser.cpython-311.pyc", + "lib/python3.11/tomllib/__pycache__/_re.cpython-311.pyc", + "lib/python3.11/tomllib/__pycache__/_types.cpython-311.pyc", + "lib/python3.11/tomllib/_parser.py", + "lib/python3.11/tomllib/_re.py", + "lib/python3.11/tomllib/_types.py", + "lib/python3.11/trace.py", + "lib/python3.11/traceback.py", + "lib/python3.11/tracemalloc.py", + "lib/python3.11/tty.py", + "lib/python3.11/turtle.py", + "lib/python3.11/turtledemo/__init__.py", + "lib/python3.11/turtledemo/__main__.py", + "lib/python3.11/turtledemo/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/bytedesign.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/chaos.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/clock.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/colormixer.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/forest.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/fractalcurves.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/lindenmayer.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/minimal_hanoi.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/nim.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/paint.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/peace.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/penrose.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/planet_and_moon.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/rosette.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/round_dance.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/sorting_animate.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/tree.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/two_canvases.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/yinyang.cpython-311.pyc", + "lib/python3.11/turtledemo/bytedesign.py", + "lib/python3.11/turtledemo/chaos.py", + "lib/python3.11/turtledemo/clock.py", + "lib/python3.11/turtledemo/colormixer.py", + "lib/python3.11/turtledemo/forest.py", + "lib/python3.11/turtledemo/fractalcurves.py", + "lib/python3.11/turtledemo/lindenmayer.py", + "lib/python3.11/turtledemo/minimal_hanoi.py", + "lib/python3.11/turtledemo/nim.py", + "lib/python3.11/turtledemo/paint.py", + "lib/python3.11/turtledemo/peace.py", + "lib/python3.11/turtledemo/penrose.py", + "lib/python3.11/turtledemo/planet_and_moon.py", + "lib/python3.11/turtledemo/rosette.py", + "lib/python3.11/turtledemo/round_dance.py", + "lib/python3.11/turtledemo/sorting_animate.py", + "lib/python3.11/turtledemo/tree.py", + "lib/python3.11/turtledemo/turtle.cfg", + "lib/python3.11/turtledemo/two_canvases.py", + "lib/python3.11/turtledemo/yinyang.py", + "lib/python3.11/types.py", + "lib/python3.11/typing.py", + "lib/python3.11/unittest/__init__.py", + "lib/python3.11/unittest/__main__.py", + "lib/python3.11/unittest/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/_log.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/async_case.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/case.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/loader.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/main.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/mock.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/result.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/runner.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/signals.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/suite.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/util.cpython-311.pyc", + "lib/python3.11/unittest/_log.py", + "lib/python3.11/unittest/async_case.py", + "lib/python3.11/unittest/case.py", + "lib/python3.11/unittest/loader.py", + "lib/python3.11/unittest/main.py", + "lib/python3.11/unittest/mock.py", + "lib/python3.11/unittest/result.py", + "lib/python3.11/unittest/runner.py", + "lib/python3.11/unittest/signals.py", + "lib/python3.11/unittest/suite.py", + "lib/python3.11/unittest/util.py", + "lib/python3.11/urllib/__init__.py", + "lib/python3.11/urllib/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/urllib/__pycache__/error.cpython-311.pyc", + "lib/python3.11/urllib/__pycache__/parse.cpython-311.pyc", + "lib/python3.11/urllib/__pycache__/request.cpython-311.pyc", + "lib/python3.11/urllib/__pycache__/response.cpython-311.pyc", + "lib/python3.11/urllib/__pycache__/robotparser.cpython-311.pyc", + "lib/python3.11/urllib/error.py", + "lib/python3.11/urllib/parse.py", + "lib/python3.11/urllib/request.py", + "lib/python3.11/urllib/response.py", + "lib/python3.11/urllib/robotparser.py", + "lib/python3.11/uu.py", + "lib/python3.11/uuid.py", + "lib/python3.11/venv/__init__.py", + "lib/python3.11/venv/__main__.py", + "lib/python3.11/venv/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/venv/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/venv/scripts/common/Activate.ps1", + "lib/python3.11/venv/scripts/common/activate", + "lib/python3.11/venv/scripts/posix/activate.csh", + "lib/python3.11/venv/scripts/posix/activate.fish", + "lib/python3.11/warnings.py", + "lib/python3.11/wave.py", + "lib/python3.11/weakref.py", + "lib/python3.11/webbrowser.py", + "lib/python3.11/wsgiref/__init__.py", + "lib/python3.11/wsgiref/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/wsgiref/__pycache__/handlers.cpython-311.pyc", + "lib/python3.11/wsgiref/__pycache__/headers.cpython-311.pyc", + "lib/python3.11/wsgiref/__pycache__/simple_server.cpython-311.pyc", + "lib/python3.11/wsgiref/__pycache__/types.cpython-311.pyc", + "lib/python3.11/wsgiref/__pycache__/util.cpython-311.pyc", + "lib/python3.11/wsgiref/__pycache__/validate.cpython-311.pyc", + "lib/python3.11/wsgiref/handlers.py", + "lib/python3.11/wsgiref/headers.py", + "lib/python3.11/wsgiref/simple_server.py", + "lib/python3.11/wsgiref/types.py", + "lib/python3.11/wsgiref/util.py", + "lib/python3.11/wsgiref/validate.py", + "lib/python3.11/xdrlib.py", + "lib/python3.11/xml/__init__.py", + "lib/python3.11/xml/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/xml/dom/NodeFilter.py", + "lib/python3.11/xml/dom/__init__.py", + "lib/python3.11/xml/dom/__pycache__/NodeFilter.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/domreg.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/expatbuilder.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/minicompat.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/minidom.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/pulldom.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/xmlbuilder.cpython-311.pyc", + "lib/python3.11/xml/dom/domreg.py", + "lib/python3.11/xml/dom/expatbuilder.py", + "lib/python3.11/xml/dom/minicompat.py", + "lib/python3.11/xml/dom/minidom.py", + "lib/python3.11/xml/dom/pulldom.py", + "lib/python3.11/xml/dom/xmlbuilder.py", + "lib/python3.11/xml/etree/ElementInclude.py", + "lib/python3.11/xml/etree/ElementPath.py", + "lib/python3.11/xml/etree/ElementTree.py", + "lib/python3.11/xml/etree/__init__.py", + "lib/python3.11/xml/etree/__pycache__/ElementInclude.cpython-311.pyc", + "lib/python3.11/xml/etree/__pycache__/ElementPath.cpython-311.pyc", + "lib/python3.11/xml/etree/__pycache__/ElementTree.cpython-311.pyc", + "lib/python3.11/xml/etree/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/xml/etree/__pycache__/cElementTree.cpython-311.pyc", + "lib/python3.11/xml/etree/cElementTree.py", + "lib/python3.11/xml/parsers/__init__.py", + "lib/python3.11/xml/parsers/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/xml/parsers/__pycache__/expat.cpython-311.pyc", + "lib/python3.11/xml/parsers/expat.py", + "lib/python3.11/xml/sax/__init__.py", + "lib/python3.11/xml/sax/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/xml/sax/__pycache__/_exceptions.cpython-311.pyc", + "lib/python3.11/xml/sax/__pycache__/expatreader.cpython-311.pyc", + "lib/python3.11/xml/sax/__pycache__/handler.cpython-311.pyc", + "lib/python3.11/xml/sax/__pycache__/saxutils.cpython-311.pyc", + "lib/python3.11/xml/sax/__pycache__/xmlreader.cpython-311.pyc", + "lib/python3.11/xml/sax/_exceptions.py", + "lib/python3.11/xml/sax/expatreader.py", + "lib/python3.11/xml/sax/handler.py", + "lib/python3.11/xml/sax/saxutils.py", + "lib/python3.11/xml/sax/xmlreader.py", + "lib/python3.11/xmlrpc/__init__.py", + "lib/python3.11/xmlrpc/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/xmlrpc/__pycache__/client.cpython-311.pyc", + "lib/python3.11/xmlrpc/__pycache__/server.cpython-311.pyc", + "lib/python3.11/xmlrpc/client.py", + "lib/python3.11/xmlrpc/server.py", + "lib/python3.11/zipapp.py", + "lib/python3.11/zipfile.py", + "lib/python3.11/zipimport.py", + "lib/python3.11/zoneinfo/__init__.py", + "lib/python3.11/zoneinfo/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/zoneinfo/__pycache__/_common.cpython-311.pyc", + "lib/python3.11/zoneinfo/__pycache__/_tzpath.cpython-311.pyc", + "lib/python3.11/zoneinfo/__pycache__/_zoneinfo.cpython-311.pyc", + "lib/python3.11/zoneinfo/_common.py", + "lib/python3.11/zoneinfo/_tzpath.py", + "lib/python3.11/zoneinfo/_zoneinfo.py", + "share/man/man1/python3.1", + "share/man/man1/python3.11.1" + ], + "fn": "python-3.11.5-hb885b13_0.conda", + "license": "PSF-2.0", + "link": { + "source": "/Users/donjayamanne/miniconda3/pkgs/python-3.11.5-hb885b13_0", + "type": 1 + }, + "md5": "6f528bdf159139704ab578df329dee70", + "name": "python", + "package_tarball_full_path": "/Users/donjayamanne/miniconda3/pkgs/python-3.11.5-hb885b13_0.conda", + "paths_data": { + "paths": [ + { + "_path": "bin/2to3-3.11", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "0eb2a68730c6910e60374b6231605a8fe9e4b1ef889fe6bf6955f00607263096", + "sha256_in_prefix": "db867f95c7e5e3d486928ab316afc7ee322118eace698a5fd9c35dd62a7c77e0", + "size_in_bytes": 347 + }, + { + "_path": "bin/idle3.11", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "9e7c5708a61f7b75f0fa84106b3698fc81e0632eea511e9635cc012d95e8ccec", + "sha256_in_prefix": "2daba7590451fb1240f116ad6c50dfb3fe12ab0d0c90450453672dc5f7992345", + "size_in_bytes": 345 + }, + { + "_path": "bin/pydoc3.11", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "af4b3f428ef9f3708c93b8d6a9c9b211c3e531ad480bac0644e18be3d675de15", + "sha256_in_prefix": "29373357dfd57b431809af8ab17e111c47011f8ed325e4b74075551cfd728dc0", + "size_in_bytes": 330 + }, + { + "_path": "bin/python3.11", + "file_mode": "binary", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "ea6aacf75da0a6e048c0acc7d6f9e7e67f4af4af635965ab25aad7956ed07b40", + "sha256_in_prefix": "5309a862e537b7e20d382f479a016995d2b60e7382673e57a98a8644d62a011a", + "size_in_bytes": 6019216 + }, + { + "_path": "bin/python3.11-config", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "48e7f0c28858cd7dd610f089ebce9d090b15273d6f965b5a665418880b9ad017", + "sha256_in_prefix": "178fb9ee8ae853adc2840a51642fbdfe239d4c189e632be37552f83ee881a9d5", + "size_in_bytes": 2289 + }, + { + "_path": "lib/libpython3.11.dylib", + "file_mode": "binary", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "813d7657214af2a40d6f98ed5ad6cd25bdaf9e1b52299dcc22457b6431f46226", + "sha256_in_prefix": "690e286e2a59750500c44dd3eb0fcc3f607604fd1a24a20da1d5877d9ac09cd0", + "size_in_bytes": 6019152 + }, + { + "_path": "lib/pkgconfig/python-3.11-embed.pc", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "5ce92c1022c5d4af2383596197f518fc12687f8f32bf3f42b96c7ee22ac9dc8d", + "sha256_in_prefix": "2ccb5bf00ff727b7941ad8be49360b25f86860ae2f49931743f628dafc9caac1", + "size_in_bytes": 558 + }, + { + "_path": "lib/pkgconfig/python-3.11.pc", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "46ac102bbce0c0b1ff9cabf905c7d44f3e3ff2911127a08b620cd1231a8a70c4", + "sha256_in_prefix": "01f5747180571713792597c3a4b2278f2e2b0e46aaa926e95cc007a373b589aa", + "size_in_bytes": 531 + }, + { + "_path": "lib/python3.11/_sysconfigdata__darwin_darwin.py", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "49c03531794c8e17dbf3bc3b28b5c731c19647b8430e74a7f05967863a73cd89", + "sha256_in_prefix": "d1fed13472229dad30d35c5cd3e497e4cbb16e5aa2fb66abc1919d55f9fa415c", + "size_in_bytes": 85118 + }, + { + "_path": "lib/python3.11/_sysconfigdata__darwin_darwin.py.orig", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "4e1b965e2665c46a97f8df38da25dc3e2636e6e62a2b525d38bfd9304978f7c9", + "sha256_in_prefix": "dbc742fac6650f3e6159c08dc75d77bbe5704af80a671c3ca09aa3e061ddd992", + "size_in_bytes": 97066 + }, + { + "_path": "lib/python3.11/_sysconfigdata_arm64_apple_darwin20_0_0.py", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "810dab3b07b0633c5d5b180351daecb4d1ebf51ee2216019c5dc08afb5c54fd1", + "sha256_in_prefix": "44ad76b97a9bc58243271c310c497b085745bbe5451b4cbf60d6afb475b49465", + "size_in_bytes": 87139 + }, + { + "_path": "lib/python3.11/config-3.11-darwin/Makefile", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "2a78da281edcb631ddd844a43a4e30d166eb6b13651e43a1664f0e1aa9384d3b", + "sha256_in_prefix": "fee789b4cc5318f60fd6d1b4294c7789bf333b55d6c4f8afa1dd4476e7fa4d5b", + "size_in_bytes": 126865 + }, + { + "_path": "lib/python3.11/config-3.11-darwin/python-config.py", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "48e7f0c28858cd7dd610f089ebce9d090b15273d6f965b5a665418880b9ad017", + "sha256_in_prefix": "178fb9ee8ae853adc2840a51642fbdfe239d4c189e632be37552f83ee881a9d5", + "size_in_bytes": 2289 + } + ], + "paths_version": 1 + }, + "requested_spec": "defaults/osx-arm64::python==3.11.5=hb885b13_0[md5=6f528bdf159139704ab578df329dee70]", + "sha256": "e6ae393f2072f9857ffbd78c56ea28ca345beeba4f0ab2e0d5975e424f71b252", + "size": 16161485, + "subdir": "osx-arm64", + "timestamp": 1694439441000, + "track_features": "", + "url": "https://repo.anaconda.com/pkgs/main/osx-arm64/python-3.11.5-hb885b13_0.conda", + "version": "3.11.5" +} \ No newline at end of file diff --git a/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/anaconda3-2021.04/conda-meta/python-slugify-5.0.2-pyhd3eb1b0_0.json b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/anaconda3-2021.04/conda-meta/python-slugify-5.0.2-pyhd3eb1b0_0.json new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/anaconda3-2021.04/envs/.conda_envs_dir_test b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/anaconda3-2021.04/envs/.conda_envs_dir_test new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/mambaforge-4.10.1-4/conda-meta/conda-23.11.0-py311hca03da5_0.json b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/mambaforge-4.10.1-4/conda-meta/conda-23.11.0-py311hca03da5_0.json new file mode 100644 index 000000000000..3be01e80b809 --- /dev/null +++ b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/mambaforge-4.10.1-4/conda-meta/conda-23.11.0-py311hca03da5_0.json @@ -0,0 +1,632 @@ +{ + "build": "py311hca03da5_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/osx-arm64", + "constrains": [ + "conda-content-trust >=0.1.1", + "conda-build >=3.27", + "conda-env >=2.6" + ], + "depends": [ + "archspec", + "boltons >=23.0.0", + "charset-normalizer", + "conda-libmamba-solver >=23.11.0", + "conda-package-handling >=2.2.0", + "distro >=1.5.0", + "jsonpatch >=1.32", + "menuinst", + "packaging >=23.0", + "platformdirs >=3.10.0", + "pluggy >=1.0.0", + "pycosat >=0.6.3", + "python >=3.11,<3.12.0a0", + "requests >=2.28.0,<3", + "ruamel.yaml >=0.11.14,<0.19", + "setuptools >=60.0.0", + "tqdm >=4", + "truststore >=0.8.0" + ], + "extracted_package_dir": "/Users/donjayamanne/miniconda3/pkgs/conda-23.11.0-py311hca03da5_0", + "features": "", + "files": [ + "bin/activate", + "bin/conda", + "bin/conda-env", + "bin/deactivate", + "condabin/conda", + "etc/fish/conf.d/conda.fish", + "etc/profile.d/conda.csh", + "etc/profile.d/conda.sh", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/INSTALLER", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/METADATA", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/RECORD", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/REQUESTED", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/WHEEL", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/direct_url.json", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/entry_points.txt", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/licenses/AUTHORS.md", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/licenses/LICENSE", + "lib/python3.11/site-packages/conda/__init__.py", + "lib/python3.11/site-packages/conda/__main__.py", + "lib/python3.11/site-packages/conda/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/__version__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/activate.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/api.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/deprecations.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/exception_handler.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/exceptions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/exports.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/history.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/instructions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/misc.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/plan.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/resolve.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/utils.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__version__.py", + "lib/python3.11/site-packages/conda/_vendor/__init__.py", + "lib/python3.11/site-packages/conda/_vendor/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/__pycache__/appdirs.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/__pycache__/distro.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/appdirs.LICENSE.txt", + "lib/python3.11/site-packages/conda/_vendor/appdirs.py", + "lib/python3.11/site-packages/conda/_vendor/boltons/LICENSE", + "lib/python3.11/site-packages/conda/_vendor/boltons/__init__.py", + "lib/python3.11/site-packages/conda/_vendor/boltons/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/boltons/__pycache__/setutils.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/boltons/__pycache__/timeutils.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/boltons/setutils.py", + "lib/python3.11/site-packages/conda/_vendor/boltons/timeutils.py", + "lib/python3.11/site-packages/conda/_vendor/cpuinfo/__init__.py", + "lib/python3.11/site-packages/conda/_vendor/cpuinfo/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/cpuinfo/__pycache__/cpuinfo.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/cpuinfo/cpuinfo.py", + "lib/python3.11/site-packages/conda/_vendor/distro.LICENSE.txt", + "lib/python3.11/site-packages/conda/_vendor/distro.py", + "lib/python3.11/site-packages/conda/_vendor/frozendict/LICENSE.txt", + "lib/python3.11/site-packages/conda/_vendor/frozendict/__init__.py", + "lib/python3.11/site-packages/conda/_vendor/frozendict/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/py_cpuinfo.LICENSE", + "lib/python3.11/site-packages/conda/_vendor/vendor.txt", + "lib/python3.11/site-packages/conda/activate.py", + "lib/python3.11/site-packages/conda/api.py", + "lib/python3.11/site-packages/conda/auxlib/LICENSE", + "lib/python3.11/site-packages/conda/auxlib/__init__.py", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/collection.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/compat.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/decorators.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/entity.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/exceptions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/ish.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/logz.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/packaging.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/type_coercion.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/collection.py", + "lib/python3.11/site-packages/conda/auxlib/compat.py", + "lib/python3.11/site-packages/conda/auxlib/decorators.py", + "lib/python3.11/site-packages/conda/auxlib/entity.py", + "lib/python3.11/site-packages/conda/auxlib/exceptions.py", + "lib/python3.11/site-packages/conda/auxlib/ish.py", + "lib/python3.11/site-packages/conda/auxlib/logz.py", + "lib/python3.11/site-packages/conda/auxlib/packaging.py", + "lib/python3.11/site-packages/conda/auxlib/type_coercion.py", + "lib/python3.11/site-packages/conda/base/__init__.py", + "lib/python3.11/site-packages/conda/base/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/base/__pycache__/constants.cpython-311.pyc", + "lib/python3.11/site-packages/conda/base/__pycache__/context.cpython-311.pyc", + "lib/python3.11/site-packages/conda/base/__pycache__/exceptions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/base/constants.py", + "lib/python3.11/site-packages/conda/base/context.py", + "lib/python3.11/site-packages/conda/base/exceptions.py", + "lib/python3.11/site-packages/conda/cli/__init__.py", + "lib/python3.11/site-packages/conda/cli/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/actions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/common.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/conda_argparse.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/find_commands.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/helpers.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/install.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_clean.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_compare.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_config.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_create.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_info.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_init.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_install.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_list.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_mock_activate.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_mock_deactivate.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_notices.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_package.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_pip.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_remove.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_rename.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_run.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_search.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_update.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/python_api.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/actions.py", + "lib/python3.11/site-packages/conda/cli/common.py", + "lib/python3.11/site-packages/conda/cli/conda_argparse.py", + "lib/python3.11/site-packages/conda/cli/find_commands.py", + "lib/python3.11/site-packages/conda/cli/helpers.py", + "lib/python3.11/site-packages/conda/cli/install.py", + "lib/python3.11/site-packages/conda/cli/main.py", + "lib/python3.11/site-packages/conda/cli/main_clean.py", + "lib/python3.11/site-packages/conda/cli/main_compare.py", + "lib/python3.11/site-packages/conda/cli/main_config.py", + "lib/python3.11/site-packages/conda/cli/main_create.py", + "lib/python3.11/site-packages/conda/cli/main_info.py", + "lib/python3.11/site-packages/conda/cli/main_init.py", + "lib/python3.11/site-packages/conda/cli/main_install.py", + "lib/python3.11/site-packages/conda/cli/main_list.py", + "lib/python3.11/site-packages/conda/cli/main_mock_activate.py", + "lib/python3.11/site-packages/conda/cli/main_mock_deactivate.py", + "lib/python3.11/site-packages/conda/cli/main_notices.py", + "lib/python3.11/site-packages/conda/cli/main_package.py", + "lib/python3.11/site-packages/conda/cli/main_pip.py", + "lib/python3.11/site-packages/conda/cli/main_remove.py", + "lib/python3.11/site-packages/conda/cli/main_rename.py", + "lib/python3.11/site-packages/conda/cli/main_run.py", + "lib/python3.11/site-packages/conda/cli/main_search.py", + "lib/python3.11/site-packages/conda/cli/main_update.py", + "lib/python3.11/site-packages/conda/cli/python_api.py", + "lib/python3.11/site-packages/conda/common/__init__.py", + "lib/python3.11/site-packages/conda/common/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/_logic.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/compat.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/configuration.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/constants.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/decorators.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/disk.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/io.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/iterators.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/logic.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/path.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/serialize.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/signals.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/toposort.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/url.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/_logic.py", + "lib/python3.11/site-packages/conda/common/_os/__init__.py", + "lib/python3.11/site-packages/conda/common/_os/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/_os/__pycache__/linux.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/_os/__pycache__/unix.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/_os/__pycache__/windows.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/_os/linux.py", + "lib/python3.11/site-packages/conda/common/_os/unix.py", + "lib/python3.11/site-packages/conda/common/_os/windows.py", + "lib/python3.11/site-packages/conda/common/compat.py", + "lib/python3.11/site-packages/conda/common/configuration.py", + "lib/python3.11/site-packages/conda/common/constants.py", + "lib/python3.11/site-packages/conda/common/decorators.py", + "lib/python3.11/site-packages/conda/common/disk.py", + "lib/python3.11/site-packages/conda/common/io.py", + "lib/python3.11/site-packages/conda/common/iterators.py", + "lib/python3.11/site-packages/conda/common/logic.py", + "lib/python3.11/site-packages/conda/common/path.py", + "lib/python3.11/site-packages/conda/common/pkg_formats/__init__.py", + "lib/python3.11/site-packages/conda/common/pkg_formats/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/pkg_formats/__pycache__/python.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/pkg_formats/python.py", + "lib/python3.11/site-packages/conda/common/serialize.py", + "lib/python3.11/site-packages/conda/common/signals.py", + "lib/python3.11/site-packages/conda/common/toposort.py", + "lib/python3.11/site-packages/conda/common/url.py", + "lib/python3.11/site-packages/conda/core/__init__.py", + "lib/python3.11/site-packages/conda/core/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/envs_manager.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/index.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/initialize.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/link.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/package_cache.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/package_cache_data.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/path_actions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/portability.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/prefix_data.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/solve.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/subdir_data.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/envs_manager.py", + "lib/python3.11/site-packages/conda/core/index.py", + "lib/python3.11/site-packages/conda/core/initialize.py", + "lib/python3.11/site-packages/conda/core/link.py", + "lib/python3.11/site-packages/conda/core/package_cache.py", + "lib/python3.11/site-packages/conda/core/package_cache_data.py", + "lib/python3.11/site-packages/conda/core/path_actions.py", + "lib/python3.11/site-packages/conda/core/portability.py", + "lib/python3.11/site-packages/conda/core/prefix_data.py", + "lib/python3.11/site-packages/conda/core/solve.py", + "lib/python3.11/site-packages/conda/core/subdir_data.py", + "lib/python3.11/site-packages/conda/deprecations.py", + "lib/python3.11/site-packages/conda/exception_handler.py", + "lib/python3.11/site-packages/conda/exceptions.py", + "lib/python3.11/site-packages/conda/exports.py", + "lib/python3.11/site-packages/conda/gateways/__init__.py", + "lib/python3.11/site-packages/conda/gateways/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/__pycache__/anaconda_client.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/__pycache__/logging.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/__pycache__/subprocess.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/anaconda_client.py", + "lib/python3.11/site-packages/conda/gateways/connection/__init__.py", + "lib/python3.11/site-packages/conda/gateways/connection/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/__pycache__/download.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/__pycache__/session.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/__init__.py", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/__pycache__/ftp.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/__pycache__/http.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/__pycache__/localfs.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/__pycache__/s3.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/ftp.py", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/http.py", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/localfs.py", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/s3.py", + "lib/python3.11/site-packages/conda/gateways/connection/download.py", + "lib/python3.11/site-packages/conda/gateways/connection/session.py", + "lib/python3.11/site-packages/conda/gateways/disk/__init__.py", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/create.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/delete.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/link.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/lock.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/permissions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/read.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/test.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/update.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/create.py", + "lib/python3.11/site-packages/conda/gateways/disk/delete.py", + "lib/python3.11/site-packages/conda/gateways/disk/link.py", + "lib/python3.11/site-packages/conda/gateways/disk/lock.py", + "lib/python3.11/site-packages/conda/gateways/disk/permissions.py", + "lib/python3.11/site-packages/conda/gateways/disk/read.py", + "lib/python3.11/site-packages/conda/gateways/disk/test.py", + "lib/python3.11/site-packages/conda/gateways/disk/update.py", + "lib/python3.11/site-packages/conda/gateways/logging.py", + "lib/python3.11/site-packages/conda/gateways/repodata/__init__.py", + "lib/python3.11/site-packages/conda/gateways/repodata/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/repodata/__pycache__/lock.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/__init__.py", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/__pycache__/core.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/__pycache__/fetch.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/__pycache__/interface.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/core.py", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/fetch.py", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/interface.py", + "lib/python3.11/site-packages/conda/gateways/repodata/lock.py", + "lib/python3.11/site-packages/conda/gateways/subprocess.py", + "lib/python3.11/site-packages/conda/history.py", + "lib/python3.11/site-packages/conda/instructions.py", + "lib/python3.11/site-packages/conda/misc.py", + "lib/python3.11/site-packages/conda/models/__init__.py", + "lib/python3.11/site-packages/conda/models/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/channel.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/dist.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/enums.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/leased_path_entry.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/match_spec.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/package_info.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/prefix_graph.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/records.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/version.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/channel.py", + "lib/python3.11/site-packages/conda/models/dist.py", + "lib/python3.11/site-packages/conda/models/enums.py", + "lib/python3.11/site-packages/conda/models/leased_path_entry.py", + "lib/python3.11/site-packages/conda/models/match_spec.py", + "lib/python3.11/site-packages/conda/models/package_info.py", + "lib/python3.11/site-packages/conda/models/prefix_graph.py", + "lib/python3.11/site-packages/conda/models/records.py", + "lib/python3.11/site-packages/conda/models/version.py", + "lib/python3.11/site-packages/conda/notices/__init__.py", + "lib/python3.11/site-packages/conda/notices/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/notices/__pycache__/cache.cpython-311.pyc", + "lib/python3.11/site-packages/conda/notices/__pycache__/core.cpython-311.pyc", + "lib/python3.11/site-packages/conda/notices/__pycache__/fetch.cpython-311.pyc", + "lib/python3.11/site-packages/conda/notices/__pycache__/types.cpython-311.pyc", + "lib/python3.11/site-packages/conda/notices/__pycache__/views.cpython-311.pyc", + "lib/python3.11/site-packages/conda/notices/cache.py", + "lib/python3.11/site-packages/conda/notices/core.py", + "lib/python3.11/site-packages/conda/notices/fetch.py", + "lib/python3.11/site-packages/conda/notices/types.py", + "lib/python3.11/site-packages/conda/notices/views.py", + "lib/python3.11/site-packages/conda/plan.py", + "lib/python3.11/site-packages/conda/plugins/__init__.py", + "lib/python3.11/site-packages/conda/plugins/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/__pycache__/hookspec.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/__pycache__/manager.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/__pycache__/solvers.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/__pycache__/types.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/hookspec.py", + "lib/python3.11/site-packages/conda/plugins/manager.py", + "lib/python3.11/site-packages/conda/plugins/solvers.py", + "lib/python3.11/site-packages/conda/plugins/subcommands/__init__.py", + "lib/python3.11/site-packages/conda/plugins/subcommands/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/subcommands/doctor/__init__.py", + "lib/python3.11/site-packages/conda/plugins/subcommands/doctor/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/subcommands/doctor/__pycache__/health_checks.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/subcommands/doctor/health_checks.py", + "lib/python3.11/site-packages/conda/plugins/types.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__init__.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/archspec.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/conda.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/cuda.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/freebsd.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/linux.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/osx.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/windows.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/archspec.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/conda.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/cuda.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/freebsd.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/linux.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/osx.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/windows.py", + "lib/python3.11/site-packages/conda/py.typed", + "lib/python3.11/site-packages/conda/resolve.py", + "lib/python3.11/site-packages/conda/shell/Library/bin/conda.bat", + "lib/python3.11/site-packages/conda/shell/Scripts/activate.bat", + "lib/python3.11/site-packages/conda/shell/bin/activate", + "lib/python3.11/site-packages/conda/shell/bin/conda", + "lib/python3.11/site-packages/conda/shell/bin/deactivate", + "lib/python3.11/site-packages/conda/shell/cli-32.exe", + "lib/python3.11/site-packages/conda/shell/cli-64.exe", + "lib/python3.11/site-packages/conda/shell/conda.xsh", + "lib/python3.11/site-packages/conda/shell/conda_icon.ico", + "lib/python3.11/site-packages/conda/shell/condabin/Conda.psm1", + "lib/python3.11/site-packages/conda/shell/condabin/_conda_activate.bat", + "lib/python3.11/site-packages/conda/shell/condabin/activate.bat", + "lib/python3.11/site-packages/conda/shell/condabin/conda-hook.ps1", + "lib/python3.11/site-packages/conda/shell/condabin/conda.bat", + "lib/python3.11/site-packages/conda/shell/condabin/conda_auto_activate.bat", + "lib/python3.11/site-packages/conda/shell/condabin/conda_hook.bat", + "lib/python3.11/site-packages/conda/shell/condabin/deactivate.bat", + "lib/python3.11/site-packages/conda/shell/condabin/rename_tmp.bat", + "lib/python3.11/site-packages/conda/shell/etc/fish/conf.d/conda.fish", + "lib/python3.11/site-packages/conda/shell/etc/profile.d/conda.csh", + "lib/python3.11/site-packages/conda/shell/etc/profile.d/conda.sh", + "lib/python3.11/site-packages/conda/testing/__init__.py", + "lib/python3.11/site-packages/conda/testing/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/__pycache__/cases.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/__pycache__/fixtures.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/__pycache__/helpers.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/__pycache__/integration.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/__pycache__/solver_helpers.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/cases.py", + "lib/python3.11/site-packages/conda/testing/fixtures.py", + "lib/python3.11/site-packages/conda/testing/gateways/__init__.py", + "lib/python3.11/site-packages/conda/testing/gateways/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/gateways/__pycache__/fixtures.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/gateways/fixtures.py", + "lib/python3.11/site-packages/conda/testing/helpers.py", + "lib/python3.11/site-packages/conda/testing/integration.py", + "lib/python3.11/site-packages/conda/testing/notices/__init__.py", + "lib/python3.11/site-packages/conda/testing/notices/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/notices/__pycache__/fixtures.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/notices/__pycache__/helpers.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/notices/fixtures.py", + "lib/python3.11/site-packages/conda/testing/notices/helpers.py", + "lib/python3.11/site-packages/conda/testing/solver_helpers.py", + "lib/python3.11/site-packages/conda/trust/__init__.py", + "lib/python3.11/site-packages/conda/trust/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/trust/__pycache__/constants.cpython-311.pyc", + "lib/python3.11/site-packages/conda/trust/__pycache__/signature_verification.cpython-311.pyc", + "lib/python3.11/site-packages/conda/trust/constants.py", + "lib/python3.11/site-packages/conda/trust/signature_verification.py", + "lib/python3.11/site-packages/conda/utils.py", + "lib/python3.11/site-packages/conda_env/README.md", + "lib/python3.11/site-packages/conda_env/__init__.py", + "lib/python3.11/site-packages/conda_env/__main__.py", + "lib/python3.11/site-packages/conda_env/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/__pycache__/env.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/__pycache__/pip_util.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__init__.py", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/common.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_config.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_create.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_export.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_list.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_remove.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_update.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_vars.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/common.py", + "lib/python3.11/site-packages/conda_env/cli/main.py", + "lib/python3.11/site-packages/conda_env/cli/main_config.py", + "lib/python3.11/site-packages/conda_env/cli/main_create.py", + "lib/python3.11/site-packages/conda_env/cli/main_export.py", + "lib/python3.11/site-packages/conda_env/cli/main_list.py", + "lib/python3.11/site-packages/conda_env/cli/main_remove.py", + "lib/python3.11/site-packages/conda_env/cli/main_update.py", + "lib/python3.11/site-packages/conda_env/cli/main_vars.py", + "lib/python3.11/site-packages/conda_env/env.py", + "lib/python3.11/site-packages/conda_env/installers/__init__.py", + "lib/python3.11/site-packages/conda_env/installers/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/installers/__pycache__/base.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/installers/__pycache__/conda.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/installers/__pycache__/pip.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/installers/base.py", + "lib/python3.11/site-packages/conda_env/installers/conda.py", + "lib/python3.11/site-packages/conda_env/installers/pip.py", + "lib/python3.11/site-packages/conda_env/pip_util.py", + "lib/python3.11/site-packages/conda_env/specs/__init__.py", + "lib/python3.11/site-packages/conda_env/specs/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/specs/__pycache__/binstar.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/specs/__pycache__/requirements.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/specs/__pycache__/yaml_file.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/specs/binstar.py", + "lib/python3.11/site-packages/conda_env/specs/requirements.py", + "lib/python3.11/site-packages/conda_env/specs/yaml_file.py", + "lib/python3.11/site-packages/tests/conda_env/__init__.py", + "lib/python3.11/site-packages/tests/conda_env/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/__pycache__/test_cli.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/__pycache__/test_create.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/__pycache__/test_env.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/__pycache__/test_pip_util.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/__pycache__/utils.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/specs/__init__.py", + "lib/python3.11/site-packages/tests/conda_env/specs/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/specs/__pycache__/test_binstar.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/specs/__pycache__/test_requirements.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/specs/__pycache__/test_yaml_file.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/specs/test_binstar.py", + "lib/python3.11/site-packages/tests/conda_env/specs/test_requirements.py", + "lib/python3.11/site-packages/tests/conda_env/specs/test_yaml_file.py", + "lib/python3.11/site-packages/tests/conda_env/support/add-pip.yml", + "lib/python3.11/site-packages/tests/conda_env/support/advanced-pip/.gitignore", + "lib/python3.11/site-packages/tests/conda_env/support/advanced-pip/another-project-requirements.txt", + "lib/python3.11/site-packages/tests/conda_env/support/advanced-pip/environment.yml", + "lib/python3.11/site-packages/tests/conda_env/support/advanced-pip/module_to_install_in_editable_mode/__pycache__/setup.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/support/advanced-pip/module_to_install_in_editable_mode/setup.py", + "lib/python3.11/site-packages/tests/conda_env/support/channels_with_envvars.yml", + "lib/python3.11/site-packages/tests/conda_env/support/empty_env.yml", + "lib/python3.11/site-packages/tests/conda_env/support/env_with_dependencies.yml", + "lib/python3.11/site-packages/tests/conda_env/support/example-yaml/environment.yaml", + "lib/python3.11/site-packages/tests/conda_env/support/example/environment.yml", + "lib/python3.11/site-packages/tests/conda_env/support/example/environment_host_port.yml", + "lib/python3.11/site-packages/tests/conda_env/support/example/environment_pinned.yml", + "lib/python3.11/site-packages/tests/conda_env/support/example/environment_pinned_updated.yml", + "lib/python3.11/site-packages/tests/conda_env/support/foo/bar/baz/readme", + "lib/python3.11/site-packages/tests/conda_env/support/foo/bar/readme", + "lib/python3.11/site-packages/tests/conda_env/support/foo/environment.yml", + "lib/python3.11/site-packages/tests/conda_env/support/invalid_keys.yml", + "lib/python3.11/site-packages/tests/conda_env/support/notebook.ipynb", + "lib/python3.11/site-packages/tests/conda_env/support/notebook_with_env.ipynb", + "lib/python3.11/site-packages/tests/conda_env/support/pip_argh.yml", + "lib/python3.11/site-packages/tests/conda_env/support/requirements.txt", + "lib/python3.11/site-packages/tests/conda_env/support/saved-env/environment.yml", + "lib/python3.11/site-packages/tests/conda_env/support/simple.yml", + "lib/python3.11/site-packages/tests/conda_env/support/valid_keys.yml", + "lib/python3.11/site-packages/tests/conda_env/support/with-pip.yml", + "lib/python3.11/site-packages/tests/conda_env/test_cli.py", + "lib/python3.11/site-packages/tests/conda_env/test_create.py", + "lib/python3.11/site-packages/tests/conda_env/test_env.py", + "lib/python3.11/site-packages/tests/conda_env/test_pip_util.py", + "lib/python3.11/site-packages/tests/conda_env/utils.py", + "lib/python3.11/site-packages/tests/test-recipes/activate_deactivate_package/src/etc/conda/activate.d/activate.bat", + "lib/python3.11/site-packages/tests/test-recipes/activate_deactivate_package/src/etc/conda/activate.d/activate.sh", + "lib/python3.11/site-packages/tests/test-recipes/activate_deactivate_package/src/etc/conda/deactivate.d/deactivate.bat", + "lib/python3.11/site-packages/tests/test-recipes/activate_deactivate_package/src/etc/conda/deactivate.d/deactivate.sh", + "lib/python3.11/site-packages/xontrib/conda.xsh", + "shell/condabin/Conda.psm1", + "shell/condabin/conda-hook.ps1" + ], + "fn": "conda-23.11.0-py311hca03da5_0.conda", + "license": "BSD-3-Clause", + "link": { + "source": "/Users/donjayamanne/miniconda3/pkgs/conda-23.11.0-py311hca03da5_0", + "type": 1 + }, + "md5": "d40f56a649df2d05c5468713732e005e", + "name": "conda", + "package_tarball_full_path": "/Users/donjayamanne/miniconda3/pkgs/conda-23.11.0-py311hca03da5_0.conda", + "paths_data": { + "paths": [ + { + "_path": "bin/activate", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "92dd3f5997c70939665a9000ba114ba13f28c5ce1341fa75060f48dcb808a127", + "sha256_in_prefix": "4270a26a4429c0dd5a4c35900f8b2211b35c7447367b6f2b8470bdedc1f240ca", + "size_in_bytes": 429 + }, + { + "_path": "bin/conda", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "c6380d731f573d898f146d5580e0447dd44d068d619bda7aff326095f8bc4f88", + "sha256_in_prefix": "b5dd14921f011aa934757f31b62e0fa2be17a1a9f99ccb2d26a1f12a864d64e8", + "size_in_bytes": 756 + }, + { + "_path": "bin/conda-env", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "c7e6fa37766fe556ef4f95c0860a0eb7f7817c6f057ba9369e248bcdd7f37c9d", + "sha256_in_prefix": "88be67a0d6c47edbd65fa3d860a3514daed6b6bac830ec93800cf43fd778379c", + "size_in_bytes": 393 + }, + { + "_path": "bin/deactivate", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "a69da038fee96660c3f47c2c393c05b54986ba0c929aada61cd410df6e09746e", + "sha256_in_prefix": "2af9834dc0f7c2fb9db2f9e67829700c6828774d9ad7996602324c5a5387a89c", + "size_in_bytes": 517 + }, + { + "_path": "condabin/conda", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "c6380d731f573d898f146d5580e0447dd44d068d619bda7aff326095f8bc4f88", + "sha256_in_prefix": "b5dd14921f011aa934757f31b62e0fa2be17a1a9f99ccb2d26a1f12a864d64e8", + "size_in_bytes": 756 + }, + { + "_path": "etc/fish/conf.d/conda.fish", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "85caec3d76f3239e105f88cbafc6acbe04cd97fd4c1db4da4e0dcf4d357a631e", + "sha256_in_prefix": "a1ab61539200ab52ec85d9bf7de9b1cfe4a7fbdd4da2f6a7882d417ea8c7d3e1", + "size_in_bytes": 4880 + }, + { + "_path": "etc/profile.d/conda.csh", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "966581001ffd439152bf4432c7c436e25014aa2386668a00145b4087aa354604", + "sha256_in_prefix": "85a53ef7d70dcb1c16695b970bbc3880b74eaa23fff43dde57796e34fcb2ead7", + "size_in_bytes": 3163 + }, + { + "_path": "etc/profile.d/conda.sh", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "a147ccd49f1579e69c49cb12114421d95b84a1e02ef1df7c4f8c51d44cd026d1", + "sha256_in_prefix": "920d3be6a977141273da05e8d0a1867352013f1e2702a313fea15a101432f344", + "size_in_bytes": 2552 + }, + { + "_path": "lib/python3.11/site-packages/xontrib/conda.xsh", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "e0e9fb9f5d108c70434802b45e51910671b409a3cddd7b4ec887af2b07e2ce05", + "sha256_in_prefix": "c0650607c2cf90f2ce94f3b7370349922fdac5901e3316fa9f065d8773b3f944", + "size_in_bytes": 7565 + }, + { + "_path": "shell/condabin/conda-hook.ps1", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "94f9a90527bf021292a113a9e546e3f5dd042ae3afc0ed2a7a5763ef312ac756", + "sha256_in_prefix": "4edd554f34b2aa567876996da1be4cbc89d866e0e3d958f42d7889ccff8f617f", + "size_in_bytes": 1047 + } + ], + "paths_version": 1 + }, + "requested_spec": "defaults/osx-arm64::conda==23.11.0=py311hca03da5_0[md5=d40f56a649df2d05c5468713732e005e]", + "sha256": "63ade392153a88ba334593059bfce7ab3b6df1dbbd6622655c8a7db587f70a78", + "size": 1317120, + "subdir": "osx-arm64", + "timestamp": 1701719702000, + "track_features": "", + "url": "https://repo.anaconda.com/pkgs/main/osx-arm64/conda-23.11.0-py311hca03da5_0.conda", + "version": "23.11.0" +} \ No newline at end of file diff --git a/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/mambaforge-4.10.1-4/conda-meta/history b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/mambaforge-4.10.1-4/conda-meta/history new file mode 100644 index 000000000000..b196a3e5922b --- /dev/null +++ b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/mambaforge-4.10.1-4/conda-meta/history @@ -0,0 +1,72 @@ +==> 2024-02-14 17:04:16 <== +# cmd: /Users/donjayamanne/miniconda3/conda.exe install --offline --file /Users/donjayamanne/miniconda3/pkgs/env.txt -yp /Users/donjayamanne/miniconda3 +# conda version: 23.10.0 ++defaults/noarch::archspec-0.2.1-pyhd3eb1b0_0 ++defaults/noarch::charset-normalizer-2.0.4-pyhd3eb1b0_0 ++defaults/noarch::conda-libmamba-solver-23.12.0-pyhd3eb1b0_1 ++defaults/noarch::jsonpatch-1.32-pyhd3eb1b0_0 ++defaults/noarch::jsonpointer-2.1-pyhd3eb1b0_0 ++defaults/noarch::pybind11-abi-4-hd3eb1b0_1 ++defaults/noarch::pycparser-2.21-pyhd3eb1b0_0 ++defaults/noarch::tzdata-2023c-h04d1e81_0 ++defaults/osx-arm64::boltons-23.0.0-py311hca03da5_0 ++defaults/osx-arm64::brotli-python-1.0.9-py311h313beb8_7 ++defaults/osx-arm64::bzip2-1.0.8-h620ffc9_4 ++defaults/osx-arm64::c-ares-1.19.1-h80987f9_0 ++defaults/osx-arm64::ca-certificates-2023.12.12-hca03da5_0 ++defaults/osx-arm64::certifi-2023.11.17-py311hca03da5_0 ++defaults/osx-arm64::cffi-1.16.0-py311h80987f9_0 ++defaults/osx-arm64::conda-23.11.0-py311hca03da5_0 ++defaults/osx-arm64::conda-content-trust-0.2.0-py311hca03da5_0 ++defaults/osx-arm64::conda-package-handling-2.2.0-py311hca03da5_0 ++defaults/osx-arm64::conda-package-streaming-0.9.0-py311hca03da5_0 ++defaults/osx-arm64::cryptography-41.0.7-py311hd4332d6_0 ++defaults/osx-arm64::distro-1.8.0-py311hca03da5_0 ++defaults/osx-arm64::fmt-9.1.0-h48ca7d4_0 ++defaults/osx-arm64::icu-73.1-h313beb8_0 ++defaults/osx-arm64::idna-3.4-py311hca03da5_0 ++defaults/osx-arm64::krb5-1.20.1-hf3e1bf2_1 ++defaults/osx-arm64::libarchive-3.6.2-h62fee54_2 ++defaults/osx-arm64::libcurl-8.4.0-h3e2b118_1 ++defaults/osx-arm64::libcxx-14.0.6-h848a8c0_0 ++defaults/osx-arm64::libedit-3.1.20230828-h80987f9_0 ++defaults/osx-arm64::libev-4.33-h1a28f6b_1 ++defaults/osx-arm64::libffi-3.4.4-hca03da5_0 ++defaults/osx-arm64::libiconv-1.16-h1a28f6b_2 ++defaults/osx-arm64::libmamba-1.5.3-h15e39b3_0 ++defaults/osx-arm64::libmambapy-1.5.3-py311h1c5506f_0 ++defaults/osx-arm64::libnghttp2-1.57.0-h62f6fdd_0 ++defaults/osx-arm64::libsolv-0.7.24-h514c7bf_0 ++defaults/osx-arm64::libssh2-1.10.0-h02f6b3c_2 ++defaults/osx-arm64::libxml2-2.10.4-h0dcf63f_1 ++defaults/osx-arm64::lz4-c-1.9.4-h313beb8_0 ++defaults/osx-arm64::menuinst-2.0.1-py311hca03da5_1 ++defaults/osx-arm64::ncurses-6.4-h313beb8_0 ++defaults/osx-arm64::openssl-3.0.12-h1a28f6b_0 ++defaults/osx-arm64::packaging-23.1-py311hca03da5_0 ++defaults/osx-arm64::pcre2-10.42-hb066dcc_0 ++defaults/osx-arm64::pip-23.3.1-py311hca03da5_0 ++defaults/osx-arm64::platformdirs-3.10.0-py311hca03da5_0 ++defaults/osx-arm64::pluggy-1.0.0-py311hca03da5_1 ++defaults/osx-arm64::pycosat-0.6.6-py311h80987f9_0 ++defaults/osx-arm64::pyopenssl-23.2.0-py311hca03da5_0 ++defaults/osx-arm64::pysocks-1.7.1-py311hca03da5_0 ++defaults/osx-arm64::python-3.11.5-hb885b13_0 ++defaults/osx-arm64::python.app-3-py311h80987f9_0 ++defaults/osx-arm64::readline-8.2-h1a28f6b_0 ++defaults/osx-arm64::reproc-14.2.4-hc377ac9_1 ++defaults/osx-arm64::reproc-cpp-14.2.4-hc377ac9_1 ++defaults/osx-arm64::requests-2.31.0-py311hca03da5_0 ++defaults/osx-arm64::ruamel.yaml-0.17.21-py311h80987f9_0 ++defaults/osx-arm64::setuptools-68.2.2-py311hca03da5_0 ++defaults/osx-arm64::sqlite-3.41.2-h80987f9_0 ++defaults/osx-arm64::tk-8.6.12-hb8d0fd4_0 ++defaults/osx-arm64::tqdm-4.65.0-py311hb6e6a13_0 ++defaults/osx-arm64::truststore-0.8.0-py311hca03da5_0 ++defaults/osx-arm64::urllib3-1.26.18-py311hca03da5_0 ++defaults/osx-arm64::wheel-0.41.2-py311hca03da5_0 ++defaults/osx-arm64::xz-5.4.5-h80987f9_0 ++defaults/osx-arm64::yaml-cpp-0.8.0-h313beb8_0 ++defaults/osx-arm64::zlib-1.2.13-h5a0b063_0 ++defaults/osx-arm64::zstandard-0.19.0-py311h80987f9_0 ++defaults/osx-arm64::zstd-1.5.5-hd90d995_0 diff --git a/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/mambaforge-4.10.1-4/conda-meta/python-3.11.5-hb885b13_0.json b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/mambaforge-4.10.1-4/conda-meta/python-3.11.5-hb885b13_0.json new file mode 100644 index 000000000000..90b9af01a4e0 --- /dev/null +++ b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/mambaforge-4.10.1-4/conda-meta/python-3.11.5-hb885b13_0.json @@ -0,0 +1,2280 @@ +{ + "build": "hb885b13_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/osx-arm64", + "constrains": [], + "depends": [ + "bzip2 >=1.0.8,<2.0a0", + "libffi >=3.4,<3.5", + "libffi >=3.4,<4.0a0", + "ncurses >=6.4,<7.0a0", + "openssl >=3.0.10,<4.0a0", + "readline >=8.1.2,<9.0a0", + "sqlite >=3.41.2,<4.0a0", + "tk >=8.6.12,<8.7.0a0", + "tzdata", + "xz >=5.4.2,<6.0a0", + "zlib >=1.2.13,<1.3.0a0", + "pip" + ], + "extracted_package_dir": "/Users/donjayamanne/miniconda3/pkgs/python-3.11.5-hb885b13_0", + "features": "", + "files": [ + "bin/2to3", + "bin/2to3-3.11", + "bin/idle3", + "bin/idle3.11", + "bin/pydoc", + "bin/pydoc3", + "bin/pydoc3.11", + "bin/python", + "bin/python3", + "bin/python3-config", + "bin/python3.1", + "bin/python3.11", + "bin/python3.11-config", + "include/python3.11/Python.h", + "include/python3.11/abstract.h", + "include/python3.11/bltinmodule.h", + "include/python3.11/boolobject.h", + "include/python3.11/bytearrayobject.h", + "include/python3.11/bytesobject.h", + "include/python3.11/ceval.h", + "include/python3.11/codecs.h", + "include/python3.11/compile.h", + "include/python3.11/complexobject.h", + "include/python3.11/cpython/abstract.h", + "include/python3.11/cpython/bytearrayobject.h", + "include/python3.11/cpython/bytesobject.h", + "include/python3.11/cpython/cellobject.h", + "include/python3.11/cpython/ceval.h", + "include/python3.11/cpython/classobject.h", + "include/python3.11/cpython/code.h", + "include/python3.11/cpython/compile.h", + "include/python3.11/cpython/complexobject.h", + "include/python3.11/cpython/context.h", + "include/python3.11/cpython/descrobject.h", + "include/python3.11/cpython/dictobject.h", + "include/python3.11/cpython/fileobject.h", + "include/python3.11/cpython/fileutils.h", + "include/python3.11/cpython/floatobject.h", + "include/python3.11/cpython/frameobject.h", + "include/python3.11/cpython/funcobject.h", + "include/python3.11/cpython/genobject.h", + "include/python3.11/cpython/import.h", + "include/python3.11/cpython/initconfig.h", + "include/python3.11/cpython/listobject.h", + "include/python3.11/cpython/longintrepr.h", + "include/python3.11/cpython/longobject.h", + "include/python3.11/cpython/methodobject.h", + "include/python3.11/cpython/modsupport.h", + "include/python3.11/cpython/object.h", + "include/python3.11/cpython/objimpl.h", + "include/python3.11/cpython/odictobject.h", + "include/python3.11/cpython/picklebufobject.h", + "include/python3.11/cpython/pthread_stubs.h", + "include/python3.11/cpython/pyctype.h", + "include/python3.11/cpython/pydebug.h", + "include/python3.11/cpython/pyerrors.h", + "include/python3.11/cpython/pyfpe.h", + "include/python3.11/cpython/pyframe.h", + "include/python3.11/cpython/pylifecycle.h", + "include/python3.11/cpython/pymem.h", + "include/python3.11/cpython/pystate.h", + "include/python3.11/cpython/pythonrun.h", + "include/python3.11/cpython/pythread.h", + "include/python3.11/cpython/pytime.h", + "include/python3.11/cpython/setobject.h", + "include/python3.11/cpython/sysmodule.h", + "include/python3.11/cpython/traceback.h", + "include/python3.11/cpython/tupleobject.h", + "include/python3.11/cpython/unicodeobject.h", + "include/python3.11/cpython/warnings.h", + "include/python3.11/cpython/weakrefobject.h", + "include/python3.11/datetime.h", + "include/python3.11/descrobject.h", + "include/python3.11/dictobject.h", + "include/python3.11/dynamic_annotations.h", + "include/python3.11/enumobject.h", + "include/python3.11/errcode.h", + "include/python3.11/exports.h", + "include/python3.11/fileobject.h", + "include/python3.11/fileutils.h", + "include/python3.11/floatobject.h", + "include/python3.11/frameobject.h", + "include/python3.11/genericaliasobject.h", + "include/python3.11/import.h", + "include/python3.11/internal/pycore_abstract.h", + "include/python3.11/internal/pycore_accu.h", + "include/python3.11/internal/pycore_asdl.h", + "include/python3.11/internal/pycore_ast.h", + "include/python3.11/internal/pycore_ast_state.h", + "include/python3.11/internal/pycore_atomic.h", + "include/python3.11/internal/pycore_atomic_funcs.h", + "include/python3.11/internal/pycore_bitutils.h", + "include/python3.11/internal/pycore_blocks_output_buffer.h", + "include/python3.11/internal/pycore_bytes_methods.h", + "include/python3.11/internal/pycore_bytesobject.h", + "include/python3.11/internal/pycore_call.h", + "include/python3.11/internal/pycore_ceval.h", + "include/python3.11/internal/pycore_code.h", + "include/python3.11/internal/pycore_compile.h", + "include/python3.11/internal/pycore_condvar.h", + "include/python3.11/internal/pycore_context.h", + "include/python3.11/internal/pycore_dict.h", + "include/python3.11/internal/pycore_dtoa.h", + "include/python3.11/internal/pycore_emscripten_signal.h", + "include/python3.11/internal/pycore_exceptions.h", + "include/python3.11/internal/pycore_fileutils.h", + "include/python3.11/internal/pycore_floatobject.h", + "include/python3.11/internal/pycore_format.h", + "include/python3.11/internal/pycore_frame.h", + "include/python3.11/internal/pycore_function.h", + "include/python3.11/internal/pycore_gc.h", + "include/python3.11/internal/pycore_genobject.h", + "include/python3.11/internal/pycore_getopt.h", + "include/python3.11/internal/pycore_gil.h", + "include/python3.11/internal/pycore_global_objects.h", + "include/python3.11/internal/pycore_global_strings.h", + "include/python3.11/internal/pycore_hamt.h", + "include/python3.11/internal/pycore_hashtable.h", + "include/python3.11/internal/pycore_import.h", + "include/python3.11/internal/pycore_initconfig.h", + "include/python3.11/internal/pycore_interp.h", + "include/python3.11/internal/pycore_interpreteridobject.h", + "include/python3.11/internal/pycore_list.h", + "include/python3.11/internal/pycore_long.h", + "include/python3.11/internal/pycore_moduleobject.h", + "include/python3.11/internal/pycore_namespace.h", + "include/python3.11/internal/pycore_object.h", + "include/python3.11/internal/pycore_opcode.h", + "include/python3.11/internal/pycore_parser.h", + "include/python3.11/internal/pycore_pathconfig.h", + "include/python3.11/internal/pycore_pyarena.h", + "include/python3.11/internal/pycore_pyerrors.h", + "include/python3.11/internal/pycore_pyhash.h", + "include/python3.11/internal/pycore_pylifecycle.h", + "include/python3.11/internal/pycore_pymath.h", + "include/python3.11/internal/pycore_pymem.h", + "include/python3.11/internal/pycore_pystate.h", + "include/python3.11/internal/pycore_runtime.h", + "include/python3.11/internal/pycore_runtime_init.h", + "include/python3.11/internal/pycore_signal.h", + "include/python3.11/internal/pycore_sliceobject.h", + "include/python3.11/internal/pycore_strhex.h", + "include/python3.11/internal/pycore_structseq.h", + "include/python3.11/internal/pycore_symtable.h", + "include/python3.11/internal/pycore_sysmodule.h", + "include/python3.11/internal/pycore_traceback.h", + "include/python3.11/internal/pycore_tuple.h", + "include/python3.11/internal/pycore_typeobject.h", + "include/python3.11/internal/pycore_ucnhash.h", + "include/python3.11/internal/pycore_unicodeobject.h", + "include/python3.11/internal/pycore_unionobject.h", + "include/python3.11/internal/pycore_warnings.h", + "include/python3.11/intrcheck.h", + "include/python3.11/iterobject.h", + "include/python3.11/listobject.h", + "include/python3.11/longobject.h", + "include/python3.11/marshal.h", + "include/python3.11/memoryobject.h", + "include/python3.11/methodobject.h", + "include/python3.11/modsupport.h", + "include/python3.11/moduleobject.h", + "include/python3.11/object.h", + "include/python3.11/objimpl.h", + "include/python3.11/opcode.h", + "include/python3.11/osdefs.h", + "include/python3.11/osmodule.h", + "include/python3.11/patchlevel.h", + "include/python3.11/py_curses.h", + "include/python3.11/pybuffer.h", + "include/python3.11/pycapsule.h", + "include/python3.11/pyconfig.h", + "include/python3.11/pydtrace.h", + "include/python3.11/pyerrors.h", + "include/python3.11/pyexpat.h", + "include/python3.11/pyframe.h", + "include/python3.11/pyhash.h", + "include/python3.11/pylifecycle.h", + "include/python3.11/pymacconfig.h", + "include/python3.11/pymacro.h", + "include/python3.11/pymath.h", + "include/python3.11/pymem.h", + "include/python3.11/pyport.h", + "include/python3.11/pystate.h", + "include/python3.11/pystrcmp.h", + "include/python3.11/pystrtod.h", + "include/python3.11/pythonrun.h", + "include/python3.11/pythread.h", + "include/python3.11/pytypedefs.h", + "include/python3.11/rangeobject.h", + "include/python3.11/setobject.h", + "include/python3.11/sliceobject.h", + "include/python3.11/structmember.h", + "include/python3.11/structseq.h", + "include/python3.11/sysmodule.h", + "include/python3.11/token.h", + "include/python3.11/traceback.h", + "include/python3.11/tracemalloc.h", + "include/python3.11/tupleobject.h", + "include/python3.11/typeslots.h", + "include/python3.11/unicodeobject.h", + "include/python3.11/warnings.h", + "include/python3.11/weakrefobject.h", + "lib/libpython3.11.dylib", + "lib/pkgconfig/python-3.11-embed.pc", + "lib/pkgconfig/python-3.11.pc", + "lib/pkgconfig/python3-embed.pc", + "lib/pkgconfig/python3.pc", + "lib/python3.1", + "lib/python3.11/LICENSE.txt", + "lib/python3.11/__future__.py", + "lib/python3.11/__hello__.py", + "lib/python3.11/__phello__/__init__.py", + "lib/python3.11/__phello__/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/__phello__/__pycache__/spam.cpython-311.pyc", + "lib/python3.11/__phello__/spam.py", + "lib/python3.11/__pycache__/__future__.cpython-311.pyc", + "lib/python3.11/__pycache__/__hello__.cpython-311.pyc", + "lib/python3.11/__pycache__/_aix_support.cpython-311.pyc", + "lib/python3.11/__pycache__/_bootsubprocess.cpython-311.pyc", + "lib/python3.11/__pycache__/_collections_abc.cpython-311.pyc", + "lib/python3.11/__pycache__/_compat_pickle.cpython-311.pyc", + "lib/python3.11/__pycache__/_compression.cpython-311.pyc", + "lib/python3.11/__pycache__/_markupbase.cpython-311.pyc", + "lib/python3.11/__pycache__/_osx_support.cpython-311.pyc", + "lib/python3.11/__pycache__/_py_abc.cpython-311.pyc", + "lib/python3.11/__pycache__/_pydecimal.cpython-311.pyc", + "lib/python3.11/__pycache__/_pyio.cpython-311.pyc", + "lib/python3.11/__pycache__/_sitebuiltins.cpython-311.pyc", + "lib/python3.11/__pycache__/_strptime.cpython-311.pyc", + "lib/python3.11/__pycache__/_sysconfigdata__darwin_darwin.cpython-311.pyc", + "lib/python3.11/__pycache__/_sysconfigdata_arm64_apple_darwin20_0_0.cpython-311.pyc", + "lib/python3.11/__pycache__/_threading_local.cpython-311.pyc", + "lib/python3.11/__pycache__/_weakrefset.cpython-311.pyc", + "lib/python3.11/__pycache__/abc.cpython-311.pyc", + "lib/python3.11/__pycache__/aifc.cpython-311.pyc", + "lib/python3.11/__pycache__/antigravity.cpython-311.pyc", + "lib/python3.11/__pycache__/argparse.cpython-311.pyc", + "lib/python3.11/__pycache__/ast.cpython-311.pyc", + "lib/python3.11/__pycache__/asynchat.cpython-311.pyc", + "lib/python3.11/__pycache__/asyncore.cpython-311.pyc", + "lib/python3.11/__pycache__/base64.cpython-311.pyc", + "lib/python3.11/__pycache__/bdb.cpython-311.pyc", + "lib/python3.11/__pycache__/bisect.cpython-311.pyc", + "lib/python3.11/__pycache__/bz2.cpython-311.pyc", + "lib/python3.11/__pycache__/cProfile.cpython-311.pyc", + "lib/python3.11/__pycache__/calendar.cpython-311.pyc", + "lib/python3.11/__pycache__/cgi.cpython-311.pyc", + "lib/python3.11/__pycache__/cgitb.cpython-311.pyc", + "lib/python3.11/__pycache__/chunk.cpython-311.pyc", + "lib/python3.11/__pycache__/cmd.cpython-311.pyc", + "lib/python3.11/__pycache__/code.cpython-311.pyc", + "lib/python3.11/__pycache__/codecs.cpython-311.pyc", + "lib/python3.11/__pycache__/codeop.cpython-311.pyc", + "lib/python3.11/__pycache__/colorsys.cpython-311.pyc", + "lib/python3.11/__pycache__/compileall.cpython-311.pyc", + "lib/python3.11/__pycache__/configparser.cpython-311.pyc", + "lib/python3.11/__pycache__/contextlib.cpython-311.pyc", + "lib/python3.11/__pycache__/contextvars.cpython-311.pyc", + "lib/python3.11/__pycache__/copy.cpython-311.pyc", + "lib/python3.11/__pycache__/copyreg.cpython-311.pyc", + "lib/python3.11/__pycache__/crypt.cpython-311.pyc", + "lib/python3.11/__pycache__/csv.cpython-311.pyc", + "lib/python3.11/__pycache__/dataclasses.cpython-311.pyc", + "lib/python3.11/__pycache__/datetime.cpython-311.pyc", + "lib/python3.11/__pycache__/decimal.cpython-311.pyc", + "lib/python3.11/__pycache__/difflib.cpython-311.pyc", + "lib/python3.11/__pycache__/dis.cpython-311.pyc", + "lib/python3.11/__pycache__/doctest.cpython-311.pyc", + "lib/python3.11/__pycache__/enum.cpython-311.pyc", + "lib/python3.11/__pycache__/filecmp.cpython-311.pyc", + "lib/python3.11/__pycache__/fileinput.cpython-311.pyc", + "lib/python3.11/__pycache__/fnmatch.cpython-311.pyc", + "lib/python3.11/__pycache__/fractions.cpython-311.pyc", + "lib/python3.11/__pycache__/ftplib.cpython-311.pyc", + "lib/python3.11/__pycache__/functools.cpython-311.pyc", + "lib/python3.11/__pycache__/genericpath.cpython-311.pyc", + "lib/python3.11/__pycache__/getopt.cpython-311.pyc", + "lib/python3.11/__pycache__/getpass.cpython-311.pyc", + "lib/python3.11/__pycache__/gettext.cpython-311.pyc", + "lib/python3.11/__pycache__/glob.cpython-311.pyc", + "lib/python3.11/__pycache__/graphlib.cpython-311.pyc", + "lib/python3.11/__pycache__/gzip.cpython-311.pyc", + "lib/python3.11/__pycache__/hashlib.cpython-311.pyc", + "lib/python3.11/__pycache__/heapq.cpython-311.pyc", + "lib/python3.11/__pycache__/hmac.cpython-311.pyc", + "lib/python3.11/__pycache__/imaplib.cpython-311.pyc", + "lib/python3.11/__pycache__/imghdr.cpython-311.pyc", + "lib/python3.11/__pycache__/imp.cpython-311.pyc", + "lib/python3.11/__pycache__/inspect.cpython-311.pyc", + "lib/python3.11/__pycache__/io.cpython-311.pyc", + "lib/python3.11/__pycache__/ipaddress.cpython-311.pyc", + "lib/python3.11/__pycache__/keyword.cpython-311.pyc", + "lib/python3.11/__pycache__/linecache.cpython-311.pyc", + "lib/python3.11/__pycache__/locale.cpython-311.pyc", + "lib/python3.11/__pycache__/lzma.cpython-311.pyc", + "lib/python3.11/__pycache__/mailbox.cpython-311.pyc", + "lib/python3.11/__pycache__/mailcap.cpython-311.pyc", + "lib/python3.11/__pycache__/mimetypes.cpython-311.pyc", + "lib/python3.11/__pycache__/modulefinder.cpython-311.pyc", + "lib/python3.11/__pycache__/netrc.cpython-311.pyc", + "lib/python3.11/__pycache__/nntplib.cpython-311.pyc", + "lib/python3.11/__pycache__/ntpath.cpython-311.pyc", + "lib/python3.11/__pycache__/nturl2path.cpython-311.pyc", + "lib/python3.11/__pycache__/numbers.cpython-311.pyc", + "lib/python3.11/__pycache__/opcode.cpython-311.pyc", + "lib/python3.11/__pycache__/operator.cpython-311.pyc", + "lib/python3.11/__pycache__/optparse.cpython-311.pyc", + "lib/python3.11/__pycache__/os.cpython-311.pyc", + "lib/python3.11/__pycache__/pathlib.cpython-311.pyc", + "lib/python3.11/__pycache__/pdb.cpython-311.pyc", + "lib/python3.11/__pycache__/pickle.cpython-311.pyc", + "lib/python3.11/__pycache__/pickletools.cpython-311.pyc", + "lib/python3.11/__pycache__/pipes.cpython-311.pyc", + "lib/python3.11/__pycache__/pkgutil.cpython-311.pyc", + "lib/python3.11/__pycache__/platform.cpython-311.pyc", + "lib/python3.11/__pycache__/plistlib.cpython-311.pyc", + "lib/python3.11/__pycache__/poplib.cpython-311.pyc", + "lib/python3.11/__pycache__/posixpath.cpython-311.pyc", + "lib/python3.11/__pycache__/pprint.cpython-311.pyc", + "lib/python3.11/__pycache__/profile.cpython-311.pyc", + "lib/python3.11/__pycache__/pstats.cpython-311.pyc", + "lib/python3.11/__pycache__/pty.cpython-311.pyc", + "lib/python3.11/__pycache__/py_compile.cpython-311.pyc", + "lib/python3.11/__pycache__/pyclbr.cpython-311.pyc", + "lib/python3.11/__pycache__/pydoc.cpython-311.pyc", + "lib/python3.11/__pycache__/queue.cpython-311.pyc", + "lib/python3.11/__pycache__/quopri.cpython-311.pyc", + "lib/python3.11/__pycache__/random.cpython-311.pyc", + "lib/python3.11/__pycache__/reprlib.cpython-311.pyc", + "lib/python3.11/__pycache__/rlcompleter.cpython-311.pyc", + "lib/python3.11/__pycache__/runpy.cpython-311.pyc", + "lib/python3.11/__pycache__/sched.cpython-311.pyc", + "lib/python3.11/__pycache__/secrets.cpython-311.pyc", + "lib/python3.11/__pycache__/selectors.cpython-311.pyc", + "lib/python3.11/__pycache__/shelve.cpython-311.pyc", + "lib/python3.11/__pycache__/shlex.cpython-311.pyc", + "lib/python3.11/__pycache__/shutil.cpython-311.pyc", + "lib/python3.11/__pycache__/signal.cpython-311.pyc", + "lib/python3.11/__pycache__/site.cpython-311.pyc", + "lib/python3.11/__pycache__/smtpd.cpython-311.pyc", + "lib/python3.11/__pycache__/smtplib.cpython-311.pyc", + "lib/python3.11/__pycache__/sndhdr.cpython-311.pyc", + "lib/python3.11/__pycache__/socket.cpython-311.pyc", + "lib/python3.11/__pycache__/socketserver.cpython-311.pyc", + "lib/python3.11/__pycache__/sre_compile.cpython-311.pyc", + "lib/python3.11/__pycache__/sre_constants.cpython-311.pyc", + "lib/python3.11/__pycache__/sre_parse.cpython-311.pyc", + "lib/python3.11/__pycache__/ssl.cpython-311.pyc", + "lib/python3.11/__pycache__/stat.cpython-311.pyc", + "lib/python3.11/__pycache__/statistics.cpython-311.pyc", + "lib/python3.11/__pycache__/string.cpython-311.pyc", + "lib/python3.11/__pycache__/stringprep.cpython-311.pyc", + "lib/python3.11/__pycache__/struct.cpython-311.pyc", + "lib/python3.11/__pycache__/subprocess.cpython-311.pyc", + "lib/python3.11/__pycache__/sunau.cpython-311.pyc", + "lib/python3.11/__pycache__/symtable.cpython-311.pyc", + "lib/python3.11/__pycache__/sysconfig.cpython-311.pyc", + "lib/python3.11/__pycache__/tabnanny.cpython-311.pyc", + "lib/python3.11/__pycache__/tarfile.cpython-311.pyc", + "lib/python3.11/__pycache__/telnetlib.cpython-311.pyc", + "lib/python3.11/__pycache__/tempfile.cpython-311.pyc", + "lib/python3.11/__pycache__/textwrap.cpython-311.pyc", + "lib/python3.11/__pycache__/this.cpython-311.pyc", + "lib/python3.11/__pycache__/threading.cpython-311.pyc", + "lib/python3.11/__pycache__/timeit.cpython-311.pyc", + "lib/python3.11/__pycache__/token.cpython-311.pyc", + "lib/python3.11/__pycache__/tokenize.cpython-311.pyc", + "lib/python3.11/__pycache__/trace.cpython-311.pyc", + "lib/python3.11/__pycache__/traceback.cpython-311.pyc", + "lib/python3.11/__pycache__/tracemalloc.cpython-311.pyc", + "lib/python3.11/__pycache__/tty.cpython-311.pyc", + "lib/python3.11/__pycache__/turtle.cpython-311.pyc", + "lib/python3.11/__pycache__/types.cpython-311.pyc", + "lib/python3.11/__pycache__/typing.cpython-311.pyc", + "lib/python3.11/__pycache__/uu.cpython-311.pyc", + "lib/python3.11/__pycache__/uuid.cpython-311.pyc", + "lib/python3.11/__pycache__/warnings.cpython-311.pyc", + "lib/python3.11/__pycache__/wave.cpython-311.pyc", + "lib/python3.11/__pycache__/weakref.cpython-311.pyc", + "lib/python3.11/__pycache__/webbrowser.cpython-311.pyc", + "lib/python3.11/__pycache__/xdrlib.cpython-311.pyc", + "lib/python3.11/__pycache__/zipapp.cpython-311.pyc", + "lib/python3.11/__pycache__/zipfile.cpython-311.pyc", + "lib/python3.11/__pycache__/zipimport.cpython-311.pyc", + "lib/python3.11/_aix_support.py", + "lib/python3.11/_bootsubprocess.py", + "lib/python3.11/_collections_abc.py", + "lib/python3.11/_compat_pickle.py", + "lib/python3.11/_compression.py", + "lib/python3.11/_markupbase.py", + "lib/python3.11/_osx_support.py", + "lib/python3.11/_py_abc.py", + "lib/python3.11/_pydecimal.py", + "lib/python3.11/_pyio.py", + "lib/python3.11/_sitebuiltins.py", + "lib/python3.11/_strptime.py", + "lib/python3.11/_sysconfigdata__darwin_darwin.py", + "lib/python3.11/_sysconfigdata__darwin_darwin.py.orig", + "lib/python3.11/_sysconfigdata_arm64_apple_darwin20_0_0.py", + "lib/python3.11/_threading_local.py", + "lib/python3.11/_weakrefset.py", + "lib/python3.11/abc.py", + "lib/python3.11/aifc.py", + "lib/python3.11/antigravity.py", + "lib/python3.11/argparse.py", + "lib/python3.11/ast.py", + "lib/python3.11/asynchat.py", + "lib/python3.11/asyncio/__init__.py", + "lib/python3.11/asyncio/__main__.py", + "lib/python3.11/asyncio/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/base_events.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/base_futures.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/base_subprocess.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/base_tasks.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/constants.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/coroutines.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/events.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/exceptions.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/format_helpers.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/futures.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/locks.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/log.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/mixins.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/proactor_events.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/protocols.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/queues.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/runners.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/selector_events.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/sslproto.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/staggered.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/streams.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/subprocess.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/taskgroups.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/tasks.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/threads.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/timeouts.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/transports.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/trsock.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/unix_events.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/windows_events.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/windows_utils.cpython-311.pyc", + "lib/python3.11/asyncio/base_events.py", + "lib/python3.11/asyncio/base_futures.py", + "lib/python3.11/asyncio/base_subprocess.py", + "lib/python3.11/asyncio/base_tasks.py", + "lib/python3.11/asyncio/constants.py", + "lib/python3.11/asyncio/coroutines.py", + "lib/python3.11/asyncio/events.py", + "lib/python3.11/asyncio/exceptions.py", + "lib/python3.11/asyncio/format_helpers.py", + "lib/python3.11/asyncio/futures.py", + "lib/python3.11/asyncio/locks.py", + "lib/python3.11/asyncio/log.py", + "lib/python3.11/asyncio/mixins.py", + "lib/python3.11/asyncio/proactor_events.py", + "lib/python3.11/asyncio/protocols.py", + "lib/python3.11/asyncio/queues.py", + "lib/python3.11/asyncio/runners.py", + "lib/python3.11/asyncio/selector_events.py", + "lib/python3.11/asyncio/sslproto.py", + "lib/python3.11/asyncio/staggered.py", + "lib/python3.11/asyncio/streams.py", + "lib/python3.11/asyncio/subprocess.py", + "lib/python3.11/asyncio/taskgroups.py", + "lib/python3.11/asyncio/tasks.py", + "lib/python3.11/asyncio/threads.py", + "lib/python3.11/asyncio/timeouts.py", + "lib/python3.11/asyncio/transports.py", + "lib/python3.11/asyncio/trsock.py", + "lib/python3.11/asyncio/unix_events.py", + "lib/python3.11/asyncio/windows_events.py", + "lib/python3.11/asyncio/windows_utils.py", + "lib/python3.11/asyncore.py", + "lib/python3.11/base64.py", + "lib/python3.11/bdb.py", + "lib/python3.11/bisect.py", + "lib/python3.11/bz2.py", + "lib/python3.11/cProfile.py", + "lib/python3.11/calendar.py", + "lib/python3.11/cgi.py", + "lib/python3.11/cgitb.py", + "lib/python3.11/chunk.py", + "lib/python3.11/cmd.py", + "lib/python3.11/code.py", + "lib/python3.11/codecs.py", + "lib/python3.11/codeop.py", + "lib/python3.11/collections/__init__.py", + "lib/python3.11/collections/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/collections/__pycache__/abc.cpython-311.pyc", + "lib/python3.11/collections/abc.py", + "lib/python3.11/colorsys.py", + "lib/python3.11/compileall.py", + "lib/python3.11/concurrent/__init__.py", + "lib/python3.11/concurrent/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/concurrent/futures/__init__.py", + "lib/python3.11/concurrent/futures/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/concurrent/futures/__pycache__/_base.cpython-311.pyc", + "lib/python3.11/concurrent/futures/__pycache__/process.cpython-311.pyc", + "lib/python3.11/concurrent/futures/__pycache__/thread.cpython-311.pyc", + "lib/python3.11/concurrent/futures/_base.py", + "lib/python3.11/concurrent/futures/process.py", + "lib/python3.11/concurrent/futures/thread.py", + "lib/python3.11/config-3.11-darwin/Makefile", + "lib/python3.11/config-3.11-darwin/Setup", + "lib/python3.11/config-3.11-darwin/Setup.bootstrap", + "lib/python3.11/config-3.11-darwin/Setup.local", + "lib/python3.11/config-3.11-darwin/Setup.stdlib", + "lib/python3.11/config-3.11-darwin/__pycache__/python-config.cpython-311.pyc", + "lib/python3.11/config-3.11-darwin/config.c", + "lib/python3.11/config-3.11-darwin/config.c.in", + "lib/python3.11/config-3.11-darwin/install-sh", + "lib/python3.11/config-3.11-darwin/makesetup", + "lib/python3.11/config-3.11-darwin/python-config.py", + "lib/python3.11/config-3.11-darwin/python.o", + "lib/python3.11/configparser.py", + "lib/python3.11/contextlib.py", + "lib/python3.11/contextvars.py", + "lib/python3.11/copy.py", + "lib/python3.11/copyreg.py", + "lib/python3.11/crypt.py", + "lib/python3.11/csv.py", + "lib/python3.11/ctypes/__init__.py", + "lib/python3.11/ctypes/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/ctypes/__pycache__/_aix.cpython-311.pyc", + "lib/python3.11/ctypes/__pycache__/_endian.cpython-311.pyc", + "lib/python3.11/ctypes/__pycache__/util.cpython-311.pyc", + "lib/python3.11/ctypes/__pycache__/wintypes.cpython-311.pyc", + "lib/python3.11/ctypes/_aix.py", + "lib/python3.11/ctypes/_endian.py", + "lib/python3.11/ctypes/macholib/README.ctypes", + "lib/python3.11/ctypes/macholib/__init__.py", + "lib/python3.11/ctypes/macholib/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/ctypes/macholib/__pycache__/dyld.cpython-311.pyc", + "lib/python3.11/ctypes/macholib/__pycache__/dylib.cpython-311.pyc", + "lib/python3.11/ctypes/macholib/__pycache__/framework.cpython-311.pyc", + "lib/python3.11/ctypes/macholib/dyld.py", + "lib/python3.11/ctypes/macholib/dylib.py", + "lib/python3.11/ctypes/macholib/fetch_macholib", + "lib/python3.11/ctypes/macholib/fetch_macholib.bat", + "lib/python3.11/ctypes/macholib/framework.py", + "lib/python3.11/ctypes/util.py", + "lib/python3.11/ctypes/wintypes.py", + "lib/python3.11/curses/__init__.py", + "lib/python3.11/curses/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/curses/__pycache__/ascii.cpython-311.pyc", + "lib/python3.11/curses/__pycache__/has_key.cpython-311.pyc", + "lib/python3.11/curses/__pycache__/panel.cpython-311.pyc", + "lib/python3.11/curses/__pycache__/textpad.cpython-311.pyc", + "lib/python3.11/curses/ascii.py", + "lib/python3.11/curses/has_key.py", + "lib/python3.11/curses/panel.py", + "lib/python3.11/curses/textpad.py", + "lib/python3.11/dataclasses.py", + "lib/python3.11/datetime.py", + "lib/python3.11/dbm/__init__.py", + "lib/python3.11/dbm/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/dbm/__pycache__/dumb.cpython-311.pyc", + "lib/python3.11/dbm/__pycache__/gnu.cpython-311.pyc", + "lib/python3.11/dbm/__pycache__/ndbm.cpython-311.pyc", + "lib/python3.11/dbm/dumb.py", + "lib/python3.11/dbm/gnu.py", + "lib/python3.11/dbm/ndbm.py", + "lib/python3.11/decimal.py", + "lib/python3.11/difflib.py", + "lib/python3.11/dis.py", + "lib/python3.11/distutils/README", + "lib/python3.11/distutils/__init__.py", + "lib/python3.11/distutils/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/_msvccompiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/archive_util.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/bcppcompiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/ccompiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/cmd.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/config.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/core.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/cygwinccompiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/debug.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/dep_util.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/dir_util.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/dist.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/errors.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/extension.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/fancy_getopt.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/file_util.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/filelist.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/log.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/msvc9compiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/msvccompiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/spawn.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/sysconfig.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/text_file.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/unixccompiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/util.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/version.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/versionpredicate.cpython-311.pyc", + "lib/python3.11/distutils/_msvccompiler.py", + "lib/python3.11/distutils/archive_util.py", + "lib/python3.11/distutils/bcppcompiler.py", + "lib/python3.11/distutils/ccompiler.py", + "lib/python3.11/distutils/cmd.py", + "lib/python3.11/distutils/command/__init__.py", + "lib/python3.11/distutils/command/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/bdist.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/bdist_dumb.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/bdist_rpm.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/build.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/build_clib.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/build_ext.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/build_py.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/build_scripts.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/check.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/clean.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/config.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/install.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/install_data.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/install_egg_info.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/install_headers.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/install_lib.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/install_scripts.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/register.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/sdist.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/upload.cpython-311.pyc", + "lib/python3.11/distutils/command/bdist.py", + "lib/python3.11/distutils/command/bdist_dumb.py", + "lib/python3.11/distutils/command/bdist_rpm.py", + "lib/python3.11/distutils/command/build.py", + "lib/python3.11/distutils/command/build_clib.py", + "lib/python3.11/distutils/command/build_ext.py", + "lib/python3.11/distutils/command/build_py.py", + "lib/python3.11/distutils/command/build_scripts.py", + "lib/python3.11/distutils/command/check.py", + "lib/python3.11/distutils/command/clean.py", + "lib/python3.11/distutils/command/command_template", + "lib/python3.11/distutils/command/config.py", + "lib/python3.11/distutils/command/install.py", + "lib/python3.11/distutils/command/install_data.py", + "lib/python3.11/distutils/command/install_egg_info.py", + "lib/python3.11/distutils/command/install_headers.py", + "lib/python3.11/distutils/command/install_lib.py", + "lib/python3.11/distutils/command/install_scripts.py", + "lib/python3.11/distutils/command/register.py", + "lib/python3.11/distutils/command/sdist.py", + "lib/python3.11/distutils/command/upload.py", + "lib/python3.11/distutils/config.py", + "lib/python3.11/distutils/core.py", + "lib/python3.11/distutils/cygwinccompiler.py", + "lib/python3.11/distutils/debug.py", + "lib/python3.11/distutils/dep_util.py", + "lib/python3.11/distutils/dir_util.py", + "lib/python3.11/distutils/dist.py", + "lib/python3.11/distutils/errors.py", + "lib/python3.11/distutils/extension.py", + "lib/python3.11/distutils/fancy_getopt.py", + "lib/python3.11/distutils/file_util.py", + "lib/python3.11/distutils/filelist.py", + "lib/python3.11/distutils/log.py", + "lib/python3.11/distutils/msvc9compiler.py", + "lib/python3.11/distutils/msvccompiler.py", + "lib/python3.11/distutils/spawn.py", + "lib/python3.11/distutils/sysconfig.py", + "lib/python3.11/distutils/tests/Setup.sample", + "lib/python3.11/distutils/tests/__init__.py", + "lib/python3.11/distutils/tests/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/support.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_archive_util.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_bdist.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_bdist_dumb.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_bdist_rpm.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_build.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_build_clib.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_build_ext.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_build_py.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_build_scripts.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_check.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_clean.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_cmd.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_config.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_config_cmd.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_core.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_cygwinccompiler.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_dep_util.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_dir_util.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_dist.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_extension.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_file_util.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_filelist.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_install.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_install_data.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_install_headers.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_install_lib.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_install_scripts.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_log.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_msvc9compiler.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_msvccompiler.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_register.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_sdist.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_spawn.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_sysconfig.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_text_file.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_unixccompiler.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_upload.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_util.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_version.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_versionpredicate.cpython-311.pyc", + "lib/python3.11/distutils/tests/includetest.rst", + "lib/python3.11/distutils/tests/support.py", + "lib/python3.11/distutils/tests/test_archive_util.py", + "lib/python3.11/distutils/tests/test_bdist.py", + "lib/python3.11/distutils/tests/test_bdist_dumb.py", + "lib/python3.11/distutils/tests/test_bdist_rpm.py", + "lib/python3.11/distutils/tests/test_build.py", + "lib/python3.11/distutils/tests/test_build_clib.py", + "lib/python3.11/distutils/tests/test_build_ext.py", + "lib/python3.11/distutils/tests/test_build_py.py", + "lib/python3.11/distutils/tests/test_build_scripts.py", + "lib/python3.11/distutils/tests/test_check.py", + "lib/python3.11/distutils/tests/test_clean.py", + "lib/python3.11/distutils/tests/test_cmd.py", + "lib/python3.11/distutils/tests/test_config.py", + "lib/python3.11/distutils/tests/test_config_cmd.py", + "lib/python3.11/distutils/tests/test_core.py", + "lib/python3.11/distutils/tests/test_cygwinccompiler.py", + "lib/python3.11/distutils/tests/test_dep_util.py", + "lib/python3.11/distutils/tests/test_dir_util.py", + "lib/python3.11/distutils/tests/test_dist.py", + "lib/python3.11/distutils/tests/test_extension.py", + "lib/python3.11/distutils/tests/test_file_util.py", + "lib/python3.11/distutils/tests/test_filelist.py", + "lib/python3.11/distutils/tests/test_install.py", + "lib/python3.11/distutils/tests/test_install_data.py", + "lib/python3.11/distutils/tests/test_install_headers.py", + "lib/python3.11/distutils/tests/test_install_lib.py", + "lib/python3.11/distutils/tests/test_install_scripts.py", + "lib/python3.11/distutils/tests/test_log.py", + "lib/python3.11/distutils/tests/test_msvc9compiler.py", + "lib/python3.11/distutils/tests/test_msvccompiler.py", + "lib/python3.11/distutils/tests/test_register.py", + "lib/python3.11/distutils/tests/test_sdist.py", + "lib/python3.11/distutils/tests/test_spawn.py", + "lib/python3.11/distutils/tests/test_sysconfig.py", + "lib/python3.11/distutils/tests/test_text_file.py", + "lib/python3.11/distutils/tests/test_unixccompiler.py", + "lib/python3.11/distutils/tests/test_upload.py", + "lib/python3.11/distutils/tests/test_util.py", + "lib/python3.11/distutils/tests/test_version.py", + "lib/python3.11/distutils/tests/test_versionpredicate.py", + "lib/python3.11/distutils/tests/xxmodule.c", + "lib/python3.11/distutils/text_file.py", + "lib/python3.11/distutils/unixccompiler.py", + "lib/python3.11/distutils/util.py", + "lib/python3.11/distutils/version.py", + "lib/python3.11/distutils/versionpredicate.py", + "lib/python3.11/doctest.py", + "lib/python3.11/email/__init__.py", + "lib/python3.11/email/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/email/__pycache__/_encoded_words.cpython-311.pyc", + "lib/python3.11/email/__pycache__/_header_value_parser.cpython-311.pyc", + "lib/python3.11/email/__pycache__/_parseaddr.cpython-311.pyc", + "lib/python3.11/email/__pycache__/_policybase.cpython-311.pyc", + "lib/python3.11/email/__pycache__/base64mime.cpython-311.pyc", + "lib/python3.11/email/__pycache__/charset.cpython-311.pyc", + "lib/python3.11/email/__pycache__/contentmanager.cpython-311.pyc", + "lib/python3.11/email/__pycache__/encoders.cpython-311.pyc", + "lib/python3.11/email/__pycache__/errors.cpython-311.pyc", + "lib/python3.11/email/__pycache__/feedparser.cpython-311.pyc", + "lib/python3.11/email/__pycache__/generator.cpython-311.pyc", + "lib/python3.11/email/__pycache__/header.cpython-311.pyc", + "lib/python3.11/email/__pycache__/headerregistry.cpython-311.pyc", + "lib/python3.11/email/__pycache__/iterators.cpython-311.pyc", + "lib/python3.11/email/__pycache__/message.cpython-311.pyc", + "lib/python3.11/email/__pycache__/parser.cpython-311.pyc", + "lib/python3.11/email/__pycache__/policy.cpython-311.pyc", + "lib/python3.11/email/__pycache__/quoprimime.cpython-311.pyc", + "lib/python3.11/email/__pycache__/utils.cpython-311.pyc", + "lib/python3.11/email/_encoded_words.py", + "lib/python3.11/email/_header_value_parser.py", + "lib/python3.11/email/_parseaddr.py", + "lib/python3.11/email/_policybase.py", + "lib/python3.11/email/architecture.rst", + "lib/python3.11/email/base64mime.py", + "lib/python3.11/email/charset.py", + "lib/python3.11/email/contentmanager.py", + "lib/python3.11/email/encoders.py", + "lib/python3.11/email/errors.py", + "lib/python3.11/email/feedparser.py", + "lib/python3.11/email/generator.py", + "lib/python3.11/email/header.py", + "lib/python3.11/email/headerregistry.py", + "lib/python3.11/email/iterators.py", + "lib/python3.11/email/message.py", + "lib/python3.11/email/mime/__init__.py", + "lib/python3.11/email/mime/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/application.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/audio.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/base.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/image.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/message.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/multipart.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/nonmultipart.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/text.cpython-311.pyc", + "lib/python3.11/email/mime/application.py", + "lib/python3.11/email/mime/audio.py", + "lib/python3.11/email/mime/base.py", + "lib/python3.11/email/mime/image.py", + "lib/python3.11/email/mime/message.py", + "lib/python3.11/email/mime/multipart.py", + "lib/python3.11/email/mime/nonmultipart.py", + "lib/python3.11/email/mime/text.py", + "lib/python3.11/email/parser.py", + "lib/python3.11/email/policy.py", + "lib/python3.11/email/quoprimime.py", + "lib/python3.11/email/utils.py", + "lib/python3.11/encodings/__init__.py", + "lib/python3.11/encodings/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/aliases.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/ascii.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/base64_codec.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/big5.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/big5hkscs.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/bz2_codec.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/charmap.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp037.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1006.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1026.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1125.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1140.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1250.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1251.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1252.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1253.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1254.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1255.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1256.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1257.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1258.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp273.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp424.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp437.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp500.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp720.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp737.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp775.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp850.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp852.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp855.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp856.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp857.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp858.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp860.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp861.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp862.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp863.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp864.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp865.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp866.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp869.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp874.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp875.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp932.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp949.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp950.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/euc_jis_2004.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/euc_jisx0213.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/euc_jp.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/euc_kr.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/gb18030.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/gb2312.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/gbk.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/hex_codec.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/hp_roman8.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/hz.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/idna.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_jp.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_jp_1.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_jp_2.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_jp_2004.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_jp_3.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_jp_ext.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_kr.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_1.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_10.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_11.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_13.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_14.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_15.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_16.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_2.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_3.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_4.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_5.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_6.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_7.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_8.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_9.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/johab.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/koi8_r.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/koi8_t.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/koi8_u.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/kz1048.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/latin_1.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_arabic.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_croatian.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_cyrillic.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_farsi.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_greek.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_iceland.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_latin2.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_roman.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_romanian.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_turkish.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mbcs.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/oem.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/palmos.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/ptcp154.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/punycode.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/quopri_codec.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/raw_unicode_escape.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/rot_13.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/shift_jis.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/shift_jis_2004.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/shift_jisx0213.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/tis_620.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/undefined.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/unicode_escape.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_16.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_16_be.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_16_le.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_32.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_32_be.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_32_le.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_7.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_8.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_8_sig.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/uu_codec.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/zlib_codec.cpython-311.pyc", + "lib/python3.11/encodings/aliases.py", + "lib/python3.11/encodings/ascii.py", + "lib/python3.11/encodings/base64_codec.py", + "lib/python3.11/encodings/big5.py", + "lib/python3.11/encodings/big5hkscs.py", + "lib/python3.11/encodings/bz2_codec.py", + "lib/python3.11/encodings/charmap.py", + "lib/python3.11/encodings/cp037.py", + "lib/python3.11/encodings/cp1006.py", + "lib/python3.11/encodings/cp1026.py", + "lib/python3.11/encodings/cp1125.py", + "lib/python3.11/encodings/cp1140.py", + "lib/python3.11/encodings/cp1250.py", + "lib/python3.11/encodings/cp1251.py", + "lib/python3.11/encodings/cp1252.py", + "lib/python3.11/encodings/cp1253.py", + "lib/python3.11/encodings/cp1254.py", + "lib/python3.11/encodings/cp1255.py", + "lib/python3.11/encodings/cp1256.py", + "lib/python3.11/encodings/cp1257.py", + "lib/python3.11/encodings/cp1258.py", + "lib/python3.11/encodings/cp273.py", + "lib/python3.11/encodings/cp424.py", + "lib/python3.11/encodings/cp437.py", + "lib/python3.11/encodings/cp500.py", + "lib/python3.11/encodings/cp720.py", + "lib/python3.11/encodings/cp737.py", + "lib/python3.11/encodings/cp775.py", + "lib/python3.11/encodings/cp850.py", + "lib/python3.11/encodings/cp852.py", + "lib/python3.11/encodings/cp855.py", + "lib/python3.11/encodings/cp856.py", + "lib/python3.11/encodings/cp857.py", + "lib/python3.11/encodings/cp858.py", + "lib/python3.11/encodings/cp860.py", + "lib/python3.11/encodings/cp861.py", + "lib/python3.11/encodings/cp862.py", + "lib/python3.11/encodings/cp863.py", + "lib/python3.11/encodings/cp864.py", + "lib/python3.11/encodings/cp865.py", + "lib/python3.11/encodings/cp866.py", + "lib/python3.11/encodings/cp869.py", + "lib/python3.11/encodings/cp874.py", + "lib/python3.11/encodings/cp875.py", + "lib/python3.11/encodings/cp932.py", + "lib/python3.11/encodings/cp949.py", + "lib/python3.11/encodings/cp950.py", + "lib/python3.11/encodings/euc_jis_2004.py", + "lib/python3.11/encodings/euc_jisx0213.py", + "lib/python3.11/encodings/euc_jp.py", + "lib/python3.11/encodings/euc_kr.py", + "lib/python3.11/encodings/gb18030.py", + "lib/python3.11/encodings/gb2312.py", + "lib/python3.11/encodings/gbk.py", + "lib/python3.11/encodings/hex_codec.py", + "lib/python3.11/encodings/hp_roman8.py", + "lib/python3.11/encodings/hz.py", + "lib/python3.11/encodings/idna.py", + "lib/python3.11/encodings/iso2022_jp.py", + "lib/python3.11/encodings/iso2022_jp_1.py", + "lib/python3.11/encodings/iso2022_jp_2.py", + "lib/python3.11/encodings/iso2022_jp_2004.py", + "lib/python3.11/encodings/iso2022_jp_3.py", + "lib/python3.11/encodings/iso2022_jp_ext.py", + "lib/python3.11/encodings/iso2022_kr.py", + "lib/python3.11/encodings/iso8859_1.py", + "lib/python3.11/encodings/iso8859_10.py", + "lib/python3.11/encodings/iso8859_11.py", + "lib/python3.11/encodings/iso8859_13.py", + "lib/python3.11/encodings/iso8859_14.py", + "lib/python3.11/encodings/iso8859_15.py", + "lib/python3.11/encodings/iso8859_16.py", + "lib/python3.11/encodings/iso8859_2.py", + "lib/python3.11/encodings/iso8859_3.py", + "lib/python3.11/encodings/iso8859_4.py", + "lib/python3.11/encodings/iso8859_5.py", + "lib/python3.11/encodings/iso8859_6.py", + "lib/python3.11/encodings/iso8859_7.py", + "lib/python3.11/encodings/iso8859_8.py", + "lib/python3.11/encodings/iso8859_9.py", + "lib/python3.11/encodings/johab.py", + "lib/python3.11/encodings/koi8_r.py", + "lib/python3.11/encodings/koi8_t.py", + "lib/python3.11/encodings/koi8_u.py", + "lib/python3.11/encodings/kz1048.py", + "lib/python3.11/encodings/latin_1.py", + "lib/python3.11/encodings/mac_arabic.py", + "lib/python3.11/encodings/mac_croatian.py", + "lib/python3.11/encodings/mac_cyrillic.py", + "lib/python3.11/encodings/mac_farsi.py", + "lib/python3.11/encodings/mac_greek.py", + "lib/python3.11/encodings/mac_iceland.py", + "lib/python3.11/encodings/mac_latin2.py", + "lib/python3.11/encodings/mac_roman.py", + "lib/python3.11/encodings/mac_romanian.py", + "lib/python3.11/encodings/mac_turkish.py", + "lib/python3.11/encodings/mbcs.py", + "lib/python3.11/encodings/oem.py", + "lib/python3.11/encodings/palmos.py", + "lib/python3.11/encodings/ptcp154.py", + "lib/python3.11/encodings/punycode.py", + "lib/python3.11/encodings/quopri_codec.py", + "lib/python3.11/encodings/raw_unicode_escape.py", + "lib/python3.11/encodings/rot_13.py", + "lib/python3.11/encodings/shift_jis.py", + "lib/python3.11/encodings/shift_jis_2004.py", + "lib/python3.11/encodings/shift_jisx0213.py", + "lib/python3.11/encodings/tis_620.py", + "lib/python3.11/encodings/undefined.py", + "lib/python3.11/encodings/unicode_escape.py", + "lib/python3.11/encodings/utf_16.py", + "lib/python3.11/encodings/utf_16_be.py", + "lib/python3.11/encodings/utf_16_le.py", + "lib/python3.11/encodings/utf_32.py", + "lib/python3.11/encodings/utf_32_be.py", + "lib/python3.11/encodings/utf_32_le.py", + "lib/python3.11/encodings/utf_7.py", + "lib/python3.11/encodings/utf_8.py", + "lib/python3.11/encodings/utf_8_sig.py", + "lib/python3.11/encodings/uu_codec.py", + "lib/python3.11/encodings/zlib_codec.py", + "lib/python3.11/ensurepip/__init__.py", + "lib/python3.11/ensurepip/__main__.py", + "lib/python3.11/ensurepip/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/ensurepip/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/ensurepip/__pycache__/_uninstall.cpython-311.pyc", + "lib/python3.11/ensurepip/_bundled/pip-23.2.1-py3-none-any.whl", + "lib/python3.11/ensurepip/_bundled/setuptools-65.5.0-py3-none-any.whl", + "lib/python3.11/ensurepip/_uninstall.py", + "lib/python3.11/enum.py", + "lib/python3.11/filecmp.py", + "lib/python3.11/fileinput.py", + "lib/python3.11/fnmatch.py", + "lib/python3.11/fractions.py", + "lib/python3.11/ftplib.py", + "lib/python3.11/functools.py", + "lib/python3.11/genericpath.py", + "lib/python3.11/getopt.py", + "lib/python3.11/getpass.py", + "lib/python3.11/gettext.py", + "lib/python3.11/glob.py", + "lib/python3.11/graphlib.py", + "lib/python3.11/gzip.py", + "lib/python3.11/hashlib.py", + "lib/python3.11/heapq.py", + "lib/python3.11/hmac.py", + "lib/python3.11/html/__init__.py", + "lib/python3.11/html/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/html/__pycache__/entities.cpython-311.pyc", + "lib/python3.11/html/__pycache__/parser.cpython-311.pyc", + "lib/python3.11/html/entities.py", + "lib/python3.11/html/parser.py", + "lib/python3.11/http/__init__.py", + "lib/python3.11/http/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/http/__pycache__/client.cpython-311.pyc", + "lib/python3.11/http/__pycache__/cookiejar.cpython-311.pyc", + "lib/python3.11/http/__pycache__/cookies.cpython-311.pyc", + "lib/python3.11/http/__pycache__/server.cpython-311.pyc", + "lib/python3.11/http/client.py", + "lib/python3.11/http/cookiejar.py", + "lib/python3.11/http/cookies.py", + "lib/python3.11/http/server.py", + "lib/python3.11/idlelib/CREDITS.txt", + "lib/python3.11/idlelib/ChangeLog", + "lib/python3.11/idlelib/HISTORY.txt", + "lib/python3.11/idlelib/Icons/README.txt", + "lib/python3.11/idlelib/Icons/folder.gif", + "lib/python3.11/idlelib/Icons/idle.ico", + "lib/python3.11/idlelib/Icons/idle_16.gif", + "lib/python3.11/idlelib/Icons/idle_16.png", + "lib/python3.11/idlelib/Icons/idle_256.png", + "lib/python3.11/idlelib/Icons/idle_32.gif", + "lib/python3.11/idlelib/Icons/idle_32.png", + "lib/python3.11/idlelib/Icons/idle_48.gif", + "lib/python3.11/idlelib/Icons/idle_48.png", + "lib/python3.11/idlelib/Icons/minusnode.gif", + "lib/python3.11/idlelib/Icons/openfolder.gif", + "lib/python3.11/idlelib/Icons/plusnode.gif", + "lib/python3.11/idlelib/Icons/python.gif", + "lib/python3.11/idlelib/Icons/tk.gif", + "lib/python3.11/idlelib/NEWS.txt", + "lib/python3.11/idlelib/NEWS2x.txt", + "lib/python3.11/idlelib/README.txt", + "lib/python3.11/idlelib/TODO.txt", + "lib/python3.11/idlelib/__init__.py", + "lib/python3.11/idlelib/__main__.py", + "lib/python3.11/idlelib/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/autocomplete.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/autocomplete_w.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/autoexpand.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/browser.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/calltip.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/calltip_w.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/codecontext.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/colorizer.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/config.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/config_key.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/configdialog.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/debugger.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/debugger_r.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/debugobj.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/debugobj_r.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/delegator.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/dynoption.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/editor.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/filelist.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/format.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/grep.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/help.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/help_about.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/history.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/hyperparser.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/idle.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/iomenu.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/macosx.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/mainmenu.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/multicall.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/outwin.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/parenmatch.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/pathbrowser.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/percolator.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/pyparse.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/pyshell.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/query.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/redirector.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/replace.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/rpc.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/run.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/runscript.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/scrolledlist.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/search.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/searchbase.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/searchengine.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/sidebar.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/squeezer.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/stackviewer.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/statusbar.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/textview.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/tooltip.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/tree.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/undo.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/util.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/window.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/zoomheight.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/zzdummy.cpython-311.pyc", + "lib/python3.11/idlelib/autocomplete.py", + "lib/python3.11/idlelib/autocomplete_w.py", + "lib/python3.11/idlelib/autoexpand.py", + "lib/python3.11/idlelib/browser.py", + "lib/python3.11/idlelib/calltip.py", + "lib/python3.11/idlelib/calltip_w.py", + "lib/python3.11/idlelib/codecontext.py", + "lib/python3.11/idlelib/colorizer.py", + "lib/python3.11/idlelib/config-extensions.def", + "lib/python3.11/idlelib/config-highlight.def", + "lib/python3.11/idlelib/config-keys.def", + "lib/python3.11/idlelib/config-main.def", + "lib/python3.11/idlelib/config.py", + "lib/python3.11/idlelib/config_key.py", + "lib/python3.11/idlelib/configdialog.py", + "lib/python3.11/idlelib/debugger.py", + "lib/python3.11/idlelib/debugger_r.py", + "lib/python3.11/idlelib/debugobj.py", + "lib/python3.11/idlelib/debugobj_r.py", + "lib/python3.11/idlelib/delegator.py", + "lib/python3.11/idlelib/dynoption.py", + "lib/python3.11/idlelib/editor.py", + "lib/python3.11/idlelib/extend.txt", + "lib/python3.11/idlelib/filelist.py", + "lib/python3.11/idlelib/format.py", + "lib/python3.11/idlelib/grep.py", + "lib/python3.11/idlelib/help.html", + "lib/python3.11/idlelib/help.py", + "lib/python3.11/idlelib/help_about.py", + "lib/python3.11/idlelib/history.py", + "lib/python3.11/idlelib/hyperparser.py", + "lib/python3.11/idlelib/idle.bat", + "lib/python3.11/idlelib/idle.py", + "lib/python3.11/idlelib/idle.pyw", + "lib/python3.11/idlelib/idle_test/README.txt", + "lib/python3.11/idlelib/idle_test/__init__.py", + "lib/python3.11/idlelib/idle_test/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/htest.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/mock_idle.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/mock_tk.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/template.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_autocomplete.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_autocomplete_w.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_autoexpand.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_browser.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_calltip.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_calltip_w.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_codecontext.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_colorizer.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_config.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_config_key.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_configdialog.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_debugger.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_debugger_r.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_debugobj.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_debugobj_r.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_delegator.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_editmenu.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_editor.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_filelist.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_format.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_grep.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_help.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_help_about.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_history.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_hyperparser.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_iomenu.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_macosx.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_mainmenu.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_multicall.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_outwin.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_parenmatch.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_pathbrowser.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_percolator.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_pyparse.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_pyshell.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_query.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_redirector.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_replace.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_rpc.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_run.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_runscript.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_scrolledlist.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_search.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_searchbase.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_searchengine.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_sidebar.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_squeezer.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_stackviewer.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_statusbar.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_text.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_textview.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_tooltip.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_tree.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_undo.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_util.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_warning.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_window.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_zoomheight.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_zzdummy.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/tkinter_testing_utils.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/example_noext", + "lib/python3.11/idlelib/idle_test/example_stub.pyi", + "lib/python3.11/idlelib/idle_test/htest.py", + "lib/python3.11/idlelib/idle_test/mock_idle.py", + "lib/python3.11/idlelib/idle_test/mock_tk.py", + "lib/python3.11/idlelib/idle_test/template.py", + "lib/python3.11/idlelib/idle_test/test_autocomplete.py", + "lib/python3.11/idlelib/idle_test/test_autocomplete_w.py", + "lib/python3.11/idlelib/idle_test/test_autoexpand.py", + "lib/python3.11/idlelib/idle_test/test_browser.py", + "lib/python3.11/idlelib/idle_test/test_calltip.py", + "lib/python3.11/idlelib/idle_test/test_calltip_w.py", + "lib/python3.11/idlelib/idle_test/test_codecontext.py", + "lib/python3.11/idlelib/idle_test/test_colorizer.py", + "lib/python3.11/idlelib/idle_test/test_config.py", + "lib/python3.11/idlelib/idle_test/test_config_key.py", + "lib/python3.11/idlelib/idle_test/test_configdialog.py", + "lib/python3.11/idlelib/idle_test/test_debugger.py", + "lib/python3.11/idlelib/idle_test/test_debugger_r.py", + "lib/python3.11/idlelib/idle_test/test_debugobj.py", + "lib/python3.11/idlelib/idle_test/test_debugobj_r.py", + "lib/python3.11/idlelib/idle_test/test_delegator.py", + "lib/python3.11/idlelib/idle_test/test_editmenu.py", + "lib/python3.11/idlelib/idle_test/test_editor.py", + "lib/python3.11/idlelib/idle_test/test_filelist.py", + "lib/python3.11/idlelib/idle_test/test_format.py", + "lib/python3.11/idlelib/idle_test/test_grep.py", + "lib/python3.11/idlelib/idle_test/test_help.py", + "lib/python3.11/idlelib/idle_test/test_help_about.py", + "lib/python3.11/idlelib/idle_test/test_history.py", + "lib/python3.11/idlelib/idle_test/test_hyperparser.py", + "lib/python3.11/idlelib/idle_test/test_iomenu.py", + "lib/python3.11/idlelib/idle_test/test_macosx.py", + "lib/python3.11/idlelib/idle_test/test_mainmenu.py", + "lib/python3.11/idlelib/idle_test/test_multicall.py", + "lib/python3.11/idlelib/idle_test/test_outwin.py", + "lib/python3.11/idlelib/idle_test/test_parenmatch.py", + "lib/python3.11/idlelib/idle_test/test_pathbrowser.py", + "lib/python3.11/idlelib/idle_test/test_percolator.py", + "lib/python3.11/idlelib/idle_test/test_pyparse.py", + "lib/python3.11/idlelib/idle_test/test_pyshell.py", + "lib/python3.11/idlelib/idle_test/test_query.py", + "lib/python3.11/idlelib/idle_test/test_redirector.py", + "lib/python3.11/idlelib/idle_test/test_replace.py", + "lib/python3.11/idlelib/idle_test/test_rpc.py", + "lib/python3.11/idlelib/idle_test/test_run.py", + "lib/python3.11/idlelib/idle_test/test_runscript.py", + "lib/python3.11/idlelib/idle_test/test_scrolledlist.py", + "lib/python3.11/idlelib/idle_test/test_search.py", + "lib/python3.11/idlelib/idle_test/test_searchbase.py", + "lib/python3.11/idlelib/idle_test/test_searchengine.py", + "lib/python3.11/idlelib/idle_test/test_sidebar.py", + "lib/python3.11/idlelib/idle_test/test_squeezer.py", + "lib/python3.11/idlelib/idle_test/test_stackviewer.py", + "lib/python3.11/idlelib/idle_test/test_statusbar.py", + "lib/python3.11/idlelib/idle_test/test_text.py", + "lib/python3.11/idlelib/idle_test/test_textview.py", + "lib/python3.11/idlelib/idle_test/test_tooltip.py", + "lib/python3.11/idlelib/idle_test/test_tree.py", + "lib/python3.11/idlelib/idle_test/test_undo.py", + "lib/python3.11/idlelib/idle_test/test_util.py", + "lib/python3.11/idlelib/idle_test/test_warning.py", + "lib/python3.11/idlelib/idle_test/test_window.py", + "lib/python3.11/idlelib/idle_test/test_zoomheight.py", + "lib/python3.11/idlelib/idle_test/test_zzdummy.py", + "lib/python3.11/idlelib/idle_test/tkinter_testing_utils.py", + "lib/python3.11/idlelib/iomenu.py", + "lib/python3.11/idlelib/macosx.py", + "lib/python3.11/idlelib/mainmenu.py", + "lib/python3.11/idlelib/multicall.py", + "lib/python3.11/idlelib/outwin.py", + "lib/python3.11/idlelib/parenmatch.py", + "lib/python3.11/idlelib/pathbrowser.py", + "lib/python3.11/idlelib/percolator.py", + "lib/python3.11/idlelib/pyparse.py", + "lib/python3.11/idlelib/pyshell.py", + "lib/python3.11/idlelib/query.py", + "lib/python3.11/idlelib/redirector.py", + "lib/python3.11/idlelib/replace.py", + "lib/python3.11/idlelib/rpc.py", + "lib/python3.11/idlelib/run.py", + "lib/python3.11/idlelib/runscript.py", + "lib/python3.11/idlelib/scrolledlist.py", + "lib/python3.11/idlelib/search.py", + "lib/python3.11/idlelib/searchbase.py", + "lib/python3.11/idlelib/searchengine.py", + "lib/python3.11/idlelib/sidebar.py", + "lib/python3.11/idlelib/squeezer.py", + "lib/python3.11/idlelib/stackviewer.py", + "lib/python3.11/idlelib/statusbar.py", + "lib/python3.11/idlelib/textview.py", + "lib/python3.11/idlelib/tooltip.py", + "lib/python3.11/idlelib/tree.py", + "lib/python3.11/idlelib/undo.py", + "lib/python3.11/idlelib/util.py", + "lib/python3.11/idlelib/window.py", + "lib/python3.11/idlelib/zoomheight.py", + "lib/python3.11/idlelib/zzdummy.py", + "lib/python3.11/imaplib.py", + "lib/python3.11/imghdr.py", + "lib/python3.11/imp.py", + "lib/python3.11/importlib/__init__.py", + "lib/python3.11/importlib/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/_abc.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/_bootstrap.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/_bootstrap_external.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/abc.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/machinery.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/readers.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/simple.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/util.cpython-311.pyc", + "lib/python3.11/importlib/_abc.py", + "lib/python3.11/importlib/_bootstrap.py", + "lib/python3.11/importlib/_bootstrap_external.py", + "lib/python3.11/importlib/abc.py", + "lib/python3.11/importlib/machinery.py", + "lib/python3.11/importlib/metadata/__init__.py", + "lib/python3.11/importlib/metadata/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/importlib/metadata/__pycache__/_adapters.cpython-311.pyc", + "lib/python3.11/importlib/metadata/__pycache__/_collections.cpython-311.pyc", + "lib/python3.11/importlib/metadata/__pycache__/_functools.cpython-311.pyc", + "lib/python3.11/importlib/metadata/__pycache__/_itertools.cpython-311.pyc", + "lib/python3.11/importlib/metadata/__pycache__/_meta.cpython-311.pyc", + "lib/python3.11/importlib/metadata/__pycache__/_text.cpython-311.pyc", + "lib/python3.11/importlib/metadata/_adapters.py", + "lib/python3.11/importlib/metadata/_collections.py", + "lib/python3.11/importlib/metadata/_functools.py", + "lib/python3.11/importlib/metadata/_itertools.py", + "lib/python3.11/importlib/metadata/_meta.py", + "lib/python3.11/importlib/metadata/_text.py", + "lib/python3.11/importlib/readers.py", + "lib/python3.11/importlib/resources/__init__.py", + "lib/python3.11/importlib/resources/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/_adapters.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/_common.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/_itertools.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/_legacy.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/abc.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/readers.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/simple.cpython-311.pyc", + "lib/python3.11/importlib/resources/_adapters.py", + "lib/python3.11/importlib/resources/_common.py", + "lib/python3.11/importlib/resources/_itertools.py", + "lib/python3.11/importlib/resources/_legacy.py", + "lib/python3.11/importlib/resources/abc.py", + "lib/python3.11/importlib/resources/readers.py", + "lib/python3.11/importlib/resources/simple.py", + "lib/python3.11/importlib/simple.py", + "lib/python3.11/importlib/util.py", + "lib/python3.11/inspect.py", + "lib/python3.11/io.py", + "lib/python3.11/ipaddress.py", + "lib/python3.11/json/__init__.py", + "lib/python3.11/json/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/json/__pycache__/decoder.cpython-311.pyc", + "lib/python3.11/json/__pycache__/encoder.cpython-311.pyc", + "lib/python3.11/json/__pycache__/scanner.cpython-311.pyc", + "lib/python3.11/json/__pycache__/tool.cpython-311.pyc", + "lib/python3.11/json/decoder.py", + "lib/python3.11/json/encoder.py", + "lib/python3.11/json/scanner.py", + "lib/python3.11/json/tool.py", + "lib/python3.11/keyword.py", + "lib/python3.11/lib-dynload/_asyncio.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_bisect.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_blake2.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_bz2.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_codecs_cn.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_codecs_hk.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_codecs_iso2022.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_codecs_jp.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_codecs_kr.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_codecs_tw.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_contextvars.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_crypt.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_csv.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_ctypes.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_ctypes_test.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_curses.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_curses_panel.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_datetime.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_dbm.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_decimal.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_elementtree.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_hashlib.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_heapq.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_json.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_lsprof.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_lzma.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_md5.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_multibytecodec.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_multiprocessing.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_opcode.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_pickle.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_posixshmem.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_posixsubprocess.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_queue.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_random.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_scproxy.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_sha1.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_sha256.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_sha3.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_sha512.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_socket.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_sqlite3.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_ssl.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_statistics.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_struct.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_testbuffer.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_testcapi.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_testclinic.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_testimportmultiple.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_testinternalcapi.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_testmultiphase.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_tkinter.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_typing.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_uuid.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_xxsubinterpreters.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_xxtestfuzz.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_zoneinfo.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/array.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/audioop.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/binascii.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/cmath.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/fcntl.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/grp.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/math.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/mmap.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/nis.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/pyexpat.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/readline.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/resource.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/select.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/syslog.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/termios.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/unicodedata.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/xxlimited.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/xxlimited_35.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/zlib.cpython-311-darwin.so", + "lib/python3.11/lib2to3/Grammar.txt", + "lib/python3.11/lib2to3/Grammar3.11.5.final.0.pickle", + "lib/python3.11/lib2to3/PatternGrammar.txt", + "lib/python3.11/lib2to3/PatternGrammar3.11.5.final.0.pickle", + "lib/python3.11/lib2to3/__init__.py", + "lib/python3.11/lib2to3/__main__.py", + "lib/python3.11/lib2to3/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/btm_matcher.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/btm_utils.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/fixer_base.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/fixer_util.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/main.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/patcomp.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/pygram.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/pytree.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/refactor.cpython-311.pyc", + "lib/python3.11/lib2to3/btm_matcher.py", + "lib/python3.11/lib2to3/btm_utils.py", + "lib/python3.11/lib2to3/fixer_base.py", + "lib/python3.11/lib2to3/fixer_util.py", + "lib/python3.11/lib2to3/fixes/__init__.py", + "lib/python3.11/lib2to3/fixes/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_apply.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_asserts.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_basestring.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_buffer.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_dict.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_except.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_exec.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_execfile.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_exitfunc.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_filter.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_funcattrs.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_future.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_getcwdu.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_has_key.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_idioms.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_import.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_imports.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_imports2.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_input.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_intern.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_isinstance.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_itertools.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_itertools_imports.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_long.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_map.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_metaclass.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_methodattrs.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_ne.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_next.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_nonzero.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_numliterals.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_operator.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_paren.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_print.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_raise.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_raw_input.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_reduce.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_reload.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_renames.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_repr.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_set_literal.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_standarderror.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_sys_exc.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_throw.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_tuple_params.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_types.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_unicode.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_urllib.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_ws_comma.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_xrange.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_xreadlines.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_zip.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/fix_apply.py", + "lib/python3.11/lib2to3/fixes/fix_asserts.py", + "lib/python3.11/lib2to3/fixes/fix_basestring.py", + "lib/python3.11/lib2to3/fixes/fix_buffer.py", + "lib/python3.11/lib2to3/fixes/fix_dict.py", + "lib/python3.11/lib2to3/fixes/fix_except.py", + "lib/python3.11/lib2to3/fixes/fix_exec.py", + "lib/python3.11/lib2to3/fixes/fix_execfile.py", + "lib/python3.11/lib2to3/fixes/fix_exitfunc.py", + "lib/python3.11/lib2to3/fixes/fix_filter.py", + "lib/python3.11/lib2to3/fixes/fix_funcattrs.py", + "lib/python3.11/lib2to3/fixes/fix_future.py", + "lib/python3.11/lib2to3/fixes/fix_getcwdu.py", + "lib/python3.11/lib2to3/fixes/fix_has_key.py", + "lib/python3.11/lib2to3/fixes/fix_idioms.py", + "lib/python3.11/lib2to3/fixes/fix_import.py", + "lib/python3.11/lib2to3/fixes/fix_imports.py", + "lib/python3.11/lib2to3/fixes/fix_imports2.py", + "lib/python3.11/lib2to3/fixes/fix_input.py", + "lib/python3.11/lib2to3/fixes/fix_intern.py", + "lib/python3.11/lib2to3/fixes/fix_isinstance.py", + "lib/python3.11/lib2to3/fixes/fix_itertools.py", + "lib/python3.11/lib2to3/fixes/fix_itertools_imports.py", + "lib/python3.11/lib2to3/fixes/fix_long.py", + "lib/python3.11/lib2to3/fixes/fix_map.py", + "lib/python3.11/lib2to3/fixes/fix_metaclass.py", + "lib/python3.11/lib2to3/fixes/fix_methodattrs.py", + "lib/python3.11/lib2to3/fixes/fix_ne.py", + "lib/python3.11/lib2to3/fixes/fix_next.py", + "lib/python3.11/lib2to3/fixes/fix_nonzero.py", + "lib/python3.11/lib2to3/fixes/fix_numliterals.py", + "lib/python3.11/lib2to3/fixes/fix_operator.py", + "lib/python3.11/lib2to3/fixes/fix_paren.py", + "lib/python3.11/lib2to3/fixes/fix_print.py", + "lib/python3.11/lib2to3/fixes/fix_raise.py", + "lib/python3.11/lib2to3/fixes/fix_raw_input.py", + "lib/python3.11/lib2to3/fixes/fix_reduce.py", + "lib/python3.11/lib2to3/fixes/fix_reload.py", + "lib/python3.11/lib2to3/fixes/fix_renames.py", + "lib/python3.11/lib2to3/fixes/fix_repr.py", + "lib/python3.11/lib2to3/fixes/fix_set_literal.py", + "lib/python3.11/lib2to3/fixes/fix_standarderror.py", + "lib/python3.11/lib2to3/fixes/fix_sys_exc.py", + "lib/python3.11/lib2to3/fixes/fix_throw.py", + "lib/python3.11/lib2to3/fixes/fix_tuple_params.py", + "lib/python3.11/lib2to3/fixes/fix_types.py", + "lib/python3.11/lib2to3/fixes/fix_unicode.py", + "lib/python3.11/lib2to3/fixes/fix_urllib.py", + "lib/python3.11/lib2to3/fixes/fix_ws_comma.py", + "lib/python3.11/lib2to3/fixes/fix_xrange.py", + "lib/python3.11/lib2to3/fixes/fix_xreadlines.py", + "lib/python3.11/lib2to3/fixes/fix_zip.py", + "lib/python3.11/lib2to3/main.py", + "lib/python3.11/lib2to3/patcomp.py", + "lib/python3.11/lib2to3/pgen2/__init__.py", + "lib/python3.11/lib2to3/pgen2/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/conv.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/driver.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/grammar.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/literals.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/parse.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/pgen.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/token.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/tokenize.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/conv.py", + "lib/python3.11/lib2to3/pgen2/driver.py", + "lib/python3.11/lib2to3/pgen2/grammar.py", + "lib/python3.11/lib2to3/pgen2/literals.py", + "lib/python3.11/lib2to3/pgen2/parse.py", + "lib/python3.11/lib2to3/pgen2/pgen.py", + "lib/python3.11/lib2to3/pgen2/token.py", + "lib/python3.11/lib2to3/pgen2/tokenize.py", + "lib/python3.11/lib2to3/pygram.py", + "lib/python3.11/lib2to3/pytree.py", + "lib/python3.11/lib2to3/refactor.py", + "lib/python3.11/lib2to3/tests/__init__.py", + "lib/python3.11/lib2to3/tests/__main__.py", + "lib/python3.11/lib2to3/tests/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/pytree_idempotency.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/support.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_all_fixers.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_fixers.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_main.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_parser.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_pytree.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_refactor.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_util.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/README", + "lib/python3.11/lib2to3/tests/data/__pycache__/infinite_recursion.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/__pycache__/py3_test_grammar.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/bom.py", + "lib/python3.11/lib2to3/tests/data/crlf.py", + "lib/python3.11/lib2to3/tests/data/different_encoding.py", + "lib/python3.11/lib2to3/tests/data/false_encoding.py", + "lib/python3.11/lib2to3/tests/data/fixers/__pycache__/bad_order.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/__pycache__/no_fixer_cls.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/__pycache__/parrot_example.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/bad_order.py", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__init__.py", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__pycache__/fix_explicit.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__pycache__/fix_first.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__pycache__/fix_last.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__pycache__/fix_parrot.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__pycache__/fix_preorder.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/fix_explicit.py", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/fix_first.py", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/fix_last.py", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/fix_parrot.py", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/fix_preorder.py", + "lib/python3.11/lib2to3/tests/data/fixers/no_fixer_cls.py", + "lib/python3.11/lib2to3/tests/data/fixers/parrot_example.py", + "lib/python3.11/lib2to3/tests/data/infinite_recursion.py", + "lib/python3.11/lib2to3/tests/data/py2_test_grammar.py", + "lib/python3.11/lib2to3/tests/data/py3_test_grammar.py", + "lib/python3.11/lib2to3/tests/pytree_idempotency.py", + "lib/python3.11/lib2to3/tests/support.py", + "lib/python3.11/lib2to3/tests/test_all_fixers.py", + "lib/python3.11/lib2to3/tests/test_fixers.py", + "lib/python3.11/lib2to3/tests/test_main.py", + "lib/python3.11/lib2to3/tests/test_parser.py", + "lib/python3.11/lib2to3/tests/test_pytree.py", + "lib/python3.11/lib2to3/tests/test_refactor.py", + "lib/python3.11/lib2to3/tests/test_util.py", + "lib/python3.11/linecache.py", + "lib/python3.11/locale.py", + "lib/python3.11/logging/__init__.py", + "lib/python3.11/logging/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/logging/__pycache__/config.cpython-311.pyc", + "lib/python3.11/logging/__pycache__/handlers.cpython-311.pyc", + "lib/python3.11/logging/config.py", + "lib/python3.11/logging/handlers.py", + "lib/python3.11/lzma.py", + "lib/python3.11/mailbox.py", + "lib/python3.11/mailcap.py", + "lib/python3.11/mimetypes.py", + "lib/python3.11/modulefinder.py", + "lib/python3.11/multiprocessing/__init__.py", + "lib/python3.11/multiprocessing/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/connection.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/context.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/forkserver.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/heap.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/managers.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/pool.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/popen_fork.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/popen_forkserver.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/popen_spawn_posix.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/popen_spawn_win32.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/process.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/queues.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/reduction.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/resource_sharer.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/resource_tracker.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/shared_memory.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/sharedctypes.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/spawn.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/synchronize.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/util.cpython-311.pyc", + "lib/python3.11/multiprocessing/connection.py", + "lib/python3.11/multiprocessing/context.py", + "lib/python3.11/multiprocessing/dummy/__init__.py", + "lib/python3.11/multiprocessing/dummy/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/multiprocessing/dummy/__pycache__/connection.cpython-311.pyc", + "lib/python3.11/multiprocessing/dummy/connection.py", + "lib/python3.11/multiprocessing/forkserver.py", + "lib/python3.11/multiprocessing/heap.py", + "lib/python3.11/multiprocessing/managers.py", + "lib/python3.11/multiprocessing/pool.py", + "lib/python3.11/multiprocessing/popen_fork.py", + "lib/python3.11/multiprocessing/popen_forkserver.py", + "lib/python3.11/multiprocessing/popen_spawn_posix.py", + "lib/python3.11/multiprocessing/popen_spawn_win32.py", + "lib/python3.11/multiprocessing/process.py", + "lib/python3.11/multiprocessing/queues.py", + "lib/python3.11/multiprocessing/reduction.py", + "lib/python3.11/multiprocessing/resource_sharer.py", + "lib/python3.11/multiprocessing/resource_tracker.py", + "lib/python3.11/multiprocessing/shared_memory.py", + "lib/python3.11/multiprocessing/sharedctypes.py", + "lib/python3.11/multiprocessing/spawn.py", + "lib/python3.11/multiprocessing/synchronize.py", + "lib/python3.11/multiprocessing/util.py", + "lib/python3.11/netrc.py", + "lib/python3.11/nntplib.py", + "lib/python3.11/ntpath.py", + "lib/python3.11/nturl2path.py", + "lib/python3.11/numbers.py", + "lib/python3.11/opcode.py", + "lib/python3.11/operator.py", + "lib/python3.11/optparse.py", + "lib/python3.11/os.py", + "lib/python3.11/pathlib.py", + "lib/python3.11/pdb.py", + "lib/python3.11/pickle.py", + "lib/python3.11/pickletools.py", + "lib/python3.11/pipes.py", + "lib/python3.11/pkgutil.py", + "lib/python3.11/platform.py", + "lib/python3.11/plistlib.py", + "lib/python3.11/poplib.py", + "lib/python3.11/posixpath.py", + "lib/python3.11/pprint.py", + "lib/python3.11/profile.py", + "lib/python3.11/pstats.py", + "lib/python3.11/pty.py", + "lib/python3.11/py_compile.py", + "lib/python3.11/pyclbr.py", + "lib/python3.11/pydoc.py", + "lib/python3.11/pydoc_data/__init__.py", + "lib/python3.11/pydoc_data/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/pydoc_data/__pycache__/topics.cpython-311.pyc", + "lib/python3.11/pydoc_data/_pydoc.css", + "lib/python3.11/pydoc_data/topics.py", + "lib/python3.11/queue.py", + "lib/python3.11/quopri.py", + "lib/python3.11/random.py", + "lib/python3.11/re/__init__.py", + "lib/python3.11/re/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/re/__pycache__/_casefix.cpython-311.pyc", + "lib/python3.11/re/__pycache__/_compiler.cpython-311.pyc", + "lib/python3.11/re/__pycache__/_constants.cpython-311.pyc", + "lib/python3.11/re/__pycache__/_parser.cpython-311.pyc", + "lib/python3.11/re/_casefix.py", + "lib/python3.11/re/_compiler.py", + "lib/python3.11/re/_constants.py", + "lib/python3.11/re/_parser.py", + "lib/python3.11/reprlib.py", + "lib/python3.11/rlcompleter.py", + "lib/python3.11/runpy.py", + "lib/python3.11/sched.py", + "lib/python3.11/secrets.py", + "lib/python3.11/selectors.py", + "lib/python3.11/shelve.py", + "lib/python3.11/shlex.py", + "lib/python3.11/shutil.py", + "lib/python3.11/signal.py", + "lib/python3.11/site-packages/README.txt", + "lib/python3.11/site.py", + "lib/python3.11/smtpd.py", + "lib/python3.11/smtplib.py", + "lib/python3.11/sndhdr.py", + "lib/python3.11/socket.py", + "lib/python3.11/socketserver.py", + "lib/python3.11/sqlite3/__init__.py", + "lib/python3.11/sqlite3/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/sqlite3/__pycache__/dbapi2.cpython-311.pyc", + "lib/python3.11/sqlite3/__pycache__/dump.cpython-311.pyc", + "lib/python3.11/sqlite3/dbapi2.py", + "lib/python3.11/sqlite3/dump.py", + "lib/python3.11/sre_compile.py", + "lib/python3.11/sre_constants.py", + "lib/python3.11/sre_parse.py", + "lib/python3.11/ssl.py", + "lib/python3.11/stat.py", + "lib/python3.11/statistics.py", + "lib/python3.11/string.py", + "lib/python3.11/stringprep.py", + "lib/python3.11/struct.py", + "lib/python3.11/subprocess.py", + "lib/python3.11/sunau.py", + "lib/python3.11/symtable.py", + "lib/python3.11/sysconfig.py", + "lib/python3.11/tabnanny.py", + "lib/python3.11/tarfile.py", + "lib/python3.11/telnetlib.py", + "lib/python3.11/tempfile.py", + "lib/python3.11/test/__init__.py", + "lib/python3.11/test/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/test/__pycache__/test_script_helper.cpython-311.pyc", + "lib/python3.11/test/__pycache__/test_support.cpython-311.pyc", + "lib/python3.11/test/support/__init__.py", + "lib/python3.11/test/support/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/bytecode_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/hashlib_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/import_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/interpreters.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/logging_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/os_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/script_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/socket_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/testresult.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/threading_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/warnings_helper.cpython-311.pyc", + "lib/python3.11/test/support/bytecode_helper.py", + "lib/python3.11/test/support/hashlib_helper.py", + "lib/python3.11/test/support/import_helper.py", + "lib/python3.11/test/support/interpreters.py", + "lib/python3.11/test/support/logging_helper.py", + "lib/python3.11/test/support/os_helper.py", + "lib/python3.11/test/support/script_helper.py", + "lib/python3.11/test/support/socket_helper.py", + "lib/python3.11/test/support/testresult.py", + "lib/python3.11/test/support/threading_helper.py", + "lib/python3.11/test/support/warnings_helper.py", + "lib/python3.11/test/test_script_helper.py", + "lib/python3.11/test/test_support.py", + "lib/python3.11/textwrap.py", + "lib/python3.11/this.py", + "lib/python3.11/threading.py", + "lib/python3.11/timeit.py", + "lib/python3.11/tkinter/__init__.py", + "lib/python3.11/tkinter/__main__.py", + "lib/python3.11/tkinter/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/colorchooser.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/commondialog.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/constants.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/dialog.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/dnd.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/filedialog.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/font.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/messagebox.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/scrolledtext.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/simpledialog.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/tix.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/ttk.cpython-311.pyc", + "lib/python3.11/tkinter/colorchooser.py", + "lib/python3.11/tkinter/commondialog.py", + "lib/python3.11/tkinter/constants.py", + "lib/python3.11/tkinter/dialog.py", + "lib/python3.11/tkinter/dnd.py", + "lib/python3.11/tkinter/filedialog.py", + "lib/python3.11/tkinter/font.py", + "lib/python3.11/tkinter/messagebox.py", + "lib/python3.11/tkinter/scrolledtext.py", + "lib/python3.11/tkinter/simpledialog.py", + "lib/python3.11/tkinter/tix.py", + "lib/python3.11/tkinter/ttk.py", + "lib/python3.11/token.py", + "lib/python3.11/tokenize.py", + "lib/python3.11/tomllib/__init__.py", + "lib/python3.11/tomllib/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/tomllib/__pycache__/_parser.cpython-311.pyc", + "lib/python3.11/tomllib/__pycache__/_re.cpython-311.pyc", + "lib/python3.11/tomllib/__pycache__/_types.cpython-311.pyc", + "lib/python3.11/tomllib/_parser.py", + "lib/python3.11/tomllib/_re.py", + "lib/python3.11/tomllib/_types.py", + "lib/python3.11/trace.py", + "lib/python3.11/traceback.py", + "lib/python3.11/tracemalloc.py", + "lib/python3.11/tty.py", + "lib/python3.11/turtle.py", + "lib/python3.11/turtledemo/__init__.py", + "lib/python3.11/turtledemo/__main__.py", + "lib/python3.11/turtledemo/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/bytedesign.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/chaos.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/clock.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/colormixer.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/forest.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/fractalcurves.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/lindenmayer.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/minimal_hanoi.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/nim.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/paint.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/peace.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/penrose.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/planet_and_moon.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/rosette.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/round_dance.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/sorting_animate.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/tree.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/two_canvases.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/yinyang.cpython-311.pyc", + "lib/python3.11/turtledemo/bytedesign.py", + "lib/python3.11/turtledemo/chaos.py", + "lib/python3.11/turtledemo/clock.py", + "lib/python3.11/turtledemo/colormixer.py", + "lib/python3.11/turtledemo/forest.py", + "lib/python3.11/turtledemo/fractalcurves.py", + "lib/python3.11/turtledemo/lindenmayer.py", + "lib/python3.11/turtledemo/minimal_hanoi.py", + "lib/python3.11/turtledemo/nim.py", + "lib/python3.11/turtledemo/paint.py", + "lib/python3.11/turtledemo/peace.py", + "lib/python3.11/turtledemo/penrose.py", + "lib/python3.11/turtledemo/planet_and_moon.py", + "lib/python3.11/turtledemo/rosette.py", + "lib/python3.11/turtledemo/round_dance.py", + "lib/python3.11/turtledemo/sorting_animate.py", + "lib/python3.11/turtledemo/tree.py", + "lib/python3.11/turtledemo/turtle.cfg", + "lib/python3.11/turtledemo/two_canvases.py", + "lib/python3.11/turtledemo/yinyang.py", + "lib/python3.11/types.py", + "lib/python3.11/typing.py", + "lib/python3.11/unittest/__init__.py", + "lib/python3.11/unittest/__main__.py", + "lib/python3.11/unittest/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/_log.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/async_case.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/case.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/loader.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/main.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/mock.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/result.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/runner.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/signals.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/suite.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/util.cpython-311.pyc", + "lib/python3.11/unittest/_log.py", + "lib/python3.11/unittest/async_case.py", + "lib/python3.11/unittest/case.py", + "lib/python3.11/unittest/loader.py", + "lib/python3.11/unittest/main.py", + "lib/python3.11/unittest/mock.py", + "lib/python3.11/unittest/result.py", + "lib/python3.11/unittest/runner.py", + "lib/python3.11/unittest/signals.py", + "lib/python3.11/unittest/suite.py", + "lib/python3.11/unittest/util.py", + "lib/python3.11/urllib/__init__.py", + "lib/python3.11/urllib/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/urllib/__pycache__/error.cpython-311.pyc", + "lib/python3.11/urllib/__pycache__/parse.cpython-311.pyc", + "lib/python3.11/urllib/__pycache__/request.cpython-311.pyc", + "lib/python3.11/urllib/__pycache__/response.cpython-311.pyc", + "lib/python3.11/urllib/__pycache__/robotparser.cpython-311.pyc", + "lib/python3.11/urllib/error.py", + "lib/python3.11/urllib/parse.py", + "lib/python3.11/urllib/request.py", + "lib/python3.11/urllib/response.py", + "lib/python3.11/urllib/robotparser.py", + "lib/python3.11/uu.py", + "lib/python3.11/uuid.py", + "lib/python3.11/venv/__init__.py", + "lib/python3.11/venv/__main__.py", + "lib/python3.11/venv/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/venv/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/venv/scripts/common/Activate.ps1", + "lib/python3.11/venv/scripts/common/activate", + "lib/python3.11/venv/scripts/posix/activate.csh", + "lib/python3.11/venv/scripts/posix/activate.fish", + "lib/python3.11/warnings.py", + "lib/python3.11/wave.py", + "lib/python3.11/weakref.py", + "lib/python3.11/webbrowser.py", + "lib/python3.11/wsgiref/__init__.py", + "lib/python3.11/wsgiref/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/wsgiref/__pycache__/handlers.cpython-311.pyc", + "lib/python3.11/wsgiref/__pycache__/headers.cpython-311.pyc", + "lib/python3.11/wsgiref/__pycache__/simple_server.cpython-311.pyc", + "lib/python3.11/wsgiref/__pycache__/types.cpython-311.pyc", + "lib/python3.11/wsgiref/__pycache__/util.cpython-311.pyc", + "lib/python3.11/wsgiref/__pycache__/validate.cpython-311.pyc", + "lib/python3.11/wsgiref/handlers.py", + "lib/python3.11/wsgiref/headers.py", + "lib/python3.11/wsgiref/simple_server.py", + "lib/python3.11/wsgiref/types.py", + "lib/python3.11/wsgiref/util.py", + "lib/python3.11/wsgiref/validate.py", + "lib/python3.11/xdrlib.py", + "lib/python3.11/xml/__init__.py", + "lib/python3.11/xml/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/xml/dom/NodeFilter.py", + "lib/python3.11/xml/dom/__init__.py", + "lib/python3.11/xml/dom/__pycache__/NodeFilter.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/domreg.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/expatbuilder.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/minicompat.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/minidom.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/pulldom.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/xmlbuilder.cpython-311.pyc", + "lib/python3.11/xml/dom/domreg.py", + "lib/python3.11/xml/dom/expatbuilder.py", + "lib/python3.11/xml/dom/minicompat.py", + "lib/python3.11/xml/dom/minidom.py", + "lib/python3.11/xml/dom/pulldom.py", + "lib/python3.11/xml/dom/xmlbuilder.py", + "lib/python3.11/xml/etree/ElementInclude.py", + "lib/python3.11/xml/etree/ElementPath.py", + "lib/python3.11/xml/etree/ElementTree.py", + "lib/python3.11/xml/etree/__init__.py", + "lib/python3.11/xml/etree/__pycache__/ElementInclude.cpython-311.pyc", + "lib/python3.11/xml/etree/__pycache__/ElementPath.cpython-311.pyc", + "lib/python3.11/xml/etree/__pycache__/ElementTree.cpython-311.pyc", + "lib/python3.11/xml/etree/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/xml/etree/__pycache__/cElementTree.cpython-311.pyc", + "lib/python3.11/xml/etree/cElementTree.py", + "lib/python3.11/xml/parsers/__init__.py", + "lib/python3.11/xml/parsers/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/xml/parsers/__pycache__/expat.cpython-311.pyc", + "lib/python3.11/xml/parsers/expat.py", + "lib/python3.11/xml/sax/__init__.py", + "lib/python3.11/xml/sax/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/xml/sax/__pycache__/_exceptions.cpython-311.pyc", + "lib/python3.11/xml/sax/__pycache__/expatreader.cpython-311.pyc", + "lib/python3.11/xml/sax/__pycache__/handler.cpython-311.pyc", + "lib/python3.11/xml/sax/__pycache__/saxutils.cpython-311.pyc", + "lib/python3.11/xml/sax/__pycache__/xmlreader.cpython-311.pyc", + "lib/python3.11/xml/sax/_exceptions.py", + "lib/python3.11/xml/sax/expatreader.py", + "lib/python3.11/xml/sax/handler.py", + "lib/python3.11/xml/sax/saxutils.py", + "lib/python3.11/xml/sax/xmlreader.py", + "lib/python3.11/xmlrpc/__init__.py", + "lib/python3.11/xmlrpc/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/xmlrpc/__pycache__/client.cpython-311.pyc", + "lib/python3.11/xmlrpc/__pycache__/server.cpython-311.pyc", + "lib/python3.11/xmlrpc/client.py", + "lib/python3.11/xmlrpc/server.py", + "lib/python3.11/zipapp.py", + "lib/python3.11/zipfile.py", + "lib/python3.11/zipimport.py", + "lib/python3.11/zoneinfo/__init__.py", + "lib/python3.11/zoneinfo/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/zoneinfo/__pycache__/_common.cpython-311.pyc", + "lib/python3.11/zoneinfo/__pycache__/_tzpath.cpython-311.pyc", + "lib/python3.11/zoneinfo/__pycache__/_zoneinfo.cpython-311.pyc", + "lib/python3.11/zoneinfo/_common.py", + "lib/python3.11/zoneinfo/_tzpath.py", + "lib/python3.11/zoneinfo/_zoneinfo.py", + "share/man/man1/python3.1", + "share/man/man1/python3.11.1" + ], + "fn": "python-3.11.5-hb885b13_0.conda", + "license": "PSF-2.0", + "link": { + "source": "/Users/donjayamanne/miniconda3/pkgs/python-3.11.5-hb885b13_0", + "type": 1 + }, + "md5": "6f528bdf159139704ab578df329dee70", + "name": "python", + "package_tarball_full_path": "/Users/donjayamanne/miniconda3/pkgs/python-3.11.5-hb885b13_0.conda", + "paths_data": { + "paths": [ + { + "_path": "bin/2to3-3.11", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "0eb2a68730c6910e60374b6231605a8fe9e4b1ef889fe6bf6955f00607263096", + "sha256_in_prefix": "db867f95c7e5e3d486928ab316afc7ee322118eace698a5fd9c35dd62a7c77e0", + "size_in_bytes": 347 + }, + { + "_path": "bin/idle3.11", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "9e7c5708a61f7b75f0fa84106b3698fc81e0632eea511e9635cc012d95e8ccec", + "sha256_in_prefix": "2daba7590451fb1240f116ad6c50dfb3fe12ab0d0c90450453672dc5f7992345", + "size_in_bytes": 345 + }, + { + "_path": "bin/pydoc3.11", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "af4b3f428ef9f3708c93b8d6a9c9b211c3e531ad480bac0644e18be3d675de15", + "sha256_in_prefix": "29373357dfd57b431809af8ab17e111c47011f8ed325e4b74075551cfd728dc0", + "size_in_bytes": 330 + }, + { + "_path": "bin/python3.11", + "file_mode": "binary", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "ea6aacf75da0a6e048c0acc7d6f9e7e67f4af4af635965ab25aad7956ed07b40", + "sha256_in_prefix": "5309a862e537b7e20d382f479a016995d2b60e7382673e57a98a8644d62a011a", + "size_in_bytes": 6019216 + }, + { + "_path": "bin/python3.11-config", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "48e7f0c28858cd7dd610f089ebce9d090b15273d6f965b5a665418880b9ad017", + "sha256_in_prefix": "178fb9ee8ae853adc2840a51642fbdfe239d4c189e632be37552f83ee881a9d5", + "size_in_bytes": 2289 + }, + { + "_path": "lib/libpython3.11.dylib", + "file_mode": "binary", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "813d7657214af2a40d6f98ed5ad6cd25bdaf9e1b52299dcc22457b6431f46226", + "sha256_in_prefix": "690e286e2a59750500c44dd3eb0fcc3f607604fd1a24a20da1d5877d9ac09cd0", + "size_in_bytes": 6019152 + }, + { + "_path": "lib/pkgconfig/python-3.11-embed.pc", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "5ce92c1022c5d4af2383596197f518fc12687f8f32bf3f42b96c7ee22ac9dc8d", + "sha256_in_prefix": "2ccb5bf00ff727b7941ad8be49360b25f86860ae2f49931743f628dafc9caac1", + "size_in_bytes": 558 + }, + { + "_path": "lib/pkgconfig/python-3.11.pc", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "46ac102bbce0c0b1ff9cabf905c7d44f3e3ff2911127a08b620cd1231a8a70c4", + "sha256_in_prefix": "01f5747180571713792597c3a4b2278f2e2b0e46aaa926e95cc007a373b589aa", + "size_in_bytes": 531 + }, + { + "_path": "lib/python3.11/_sysconfigdata__darwin_darwin.py", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "49c03531794c8e17dbf3bc3b28b5c731c19647b8430e74a7f05967863a73cd89", + "sha256_in_prefix": "d1fed13472229dad30d35c5cd3e497e4cbb16e5aa2fb66abc1919d55f9fa415c", + "size_in_bytes": 85118 + }, + { + "_path": "lib/python3.11/_sysconfigdata__darwin_darwin.py.orig", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "4e1b965e2665c46a97f8df38da25dc3e2636e6e62a2b525d38bfd9304978f7c9", + "sha256_in_prefix": "dbc742fac6650f3e6159c08dc75d77bbe5704af80a671c3ca09aa3e061ddd992", + "size_in_bytes": 97066 + }, + { + "_path": "lib/python3.11/_sysconfigdata_arm64_apple_darwin20_0_0.py", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "810dab3b07b0633c5d5b180351daecb4d1ebf51ee2216019c5dc08afb5c54fd1", + "sha256_in_prefix": "44ad76b97a9bc58243271c310c497b085745bbe5451b4cbf60d6afb475b49465", + "size_in_bytes": 87139 + }, + { + "_path": "lib/python3.11/config-3.11-darwin/Makefile", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "2a78da281edcb631ddd844a43a4e30d166eb6b13651e43a1664f0e1aa9384d3b", + "sha256_in_prefix": "fee789b4cc5318f60fd6d1b4294c7789bf333b55d6c4f8afa1dd4476e7fa4d5b", + "size_in_bytes": 126865 + }, + { + "_path": "lib/python3.11/config-3.11-darwin/python-config.py", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "48e7f0c28858cd7dd610f089ebce9d090b15273d6f965b5a665418880b9ad017", + "sha256_in_prefix": "178fb9ee8ae853adc2840a51642fbdfe239d4c189e632be37552f83ee881a9d5", + "size_in_bytes": 2289 + } + ], + "paths_version": 1 + }, + "requested_spec": "defaults/osx-arm64::python==3.11.5=hb885b13_0[md5=6f528bdf159139704ab578df329dee70]", + "sha256": "e6ae393f2072f9857ffbd78c56ea28ca345beeba4f0ab2e0d5975e424f71b252", + "size": 16161485, + "subdir": "osx-arm64", + "timestamp": 1694439441000, + "track_features": "", + "url": "https://repo.anaconda.com/pkgs/main/osx-arm64/python-3.11.5-hb885b13_0.conda", + "version": "3.11.5" +} \ No newline at end of file diff --git a/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/mambaforge-4.10.1-4/conda-meta/python-slugify-5.0.2-pyhd3eb1b0_0.json b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/mambaforge-4.10.1-4/conda-meta/python-slugify-5.0.2-pyhd3eb1b0_0.json new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/mambaforge-4.10.1-4/envs/.conda_envs_dir_test b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/mambaforge-4.10.1-4/envs/.conda_envs_dir_test new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/mambaforge/conda-meta/conda-23.11.0-py311hca03da5_0.json b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/mambaforge/conda-meta/conda-23.11.0-py311hca03da5_0.json new file mode 100644 index 000000000000..3be01e80b809 --- /dev/null +++ b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/mambaforge/conda-meta/conda-23.11.0-py311hca03da5_0.json @@ -0,0 +1,632 @@ +{ + "build": "py311hca03da5_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/osx-arm64", + "constrains": [ + "conda-content-trust >=0.1.1", + "conda-build >=3.27", + "conda-env >=2.6" + ], + "depends": [ + "archspec", + "boltons >=23.0.0", + "charset-normalizer", + "conda-libmamba-solver >=23.11.0", + "conda-package-handling >=2.2.0", + "distro >=1.5.0", + "jsonpatch >=1.32", + "menuinst", + "packaging >=23.0", + "platformdirs >=3.10.0", + "pluggy >=1.0.0", + "pycosat >=0.6.3", + "python >=3.11,<3.12.0a0", + "requests >=2.28.0,<3", + "ruamel.yaml >=0.11.14,<0.19", + "setuptools >=60.0.0", + "tqdm >=4", + "truststore >=0.8.0" + ], + "extracted_package_dir": "/Users/donjayamanne/miniconda3/pkgs/conda-23.11.0-py311hca03da5_0", + "features": "", + "files": [ + "bin/activate", + "bin/conda", + "bin/conda-env", + "bin/deactivate", + "condabin/conda", + "etc/fish/conf.d/conda.fish", + "etc/profile.d/conda.csh", + "etc/profile.d/conda.sh", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/INSTALLER", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/METADATA", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/RECORD", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/REQUESTED", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/WHEEL", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/direct_url.json", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/entry_points.txt", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/licenses/AUTHORS.md", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/licenses/LICENSE", + "lib/python3.11/site-packages/conda/__init__.py", + "lib/python3.11/site-packages/conda/__main__.py", + "lib/python3.11/site-packages/conda/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/__version__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/activate.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/api.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/deprecations.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/exception_handler.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/exceptions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/exports.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/history.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/instructions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/misc.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/plan.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/resolve.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/utils.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__version__.py", + "lib/python3.11/site-packages/conda/_vendor/__init__.py", + "lib/python3.11/site-packages/conda/_vendor/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/__pycache__/appdirs.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/__pycache__/distro.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/appdirs.LICENSE.txt", + "lib/python3.11/site-packages/conda/_vendor/appdirs.py", + "lib/python3.11/site-packages/conda/_vendor/boltons/LICENSE", + "lib/python3.11/site-packages/conda/_vendor/boltons/__init__.py", + "lib/python3.11/site-packages/conda/_vendor/boltons/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/boltons/__pycache__/setutils.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/boltons/__pycache__/timeutils.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/boltons/setutils.py", + "lib/python3.11/site-packages/conda/_vendor/boltons/timeutils.py", + "lib/python3.11/site-packages/conda/_vendor/cpuinfo/__init__.py", + "lib/python3.11/site-packages/conda/_vendor/cpuinfo/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/cpuinfo/__pycache__/cpuinfo.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/cpuinfo/cpuinfo.py", + "lib/python3.11/site-packages/conda/_vendor/distro.LICENSE.txt", + "lib/python3.11/site-packages/conda/_vendor/distro.py", + "lib/python3.11/site-packages/conda/_vendor/frozendict/LICENSE.txt", + "lib/python3.11/site-packages/conda/_vendor/frozendict/__init__.py", + "lib/python3.11/site-packages/conda/_vendor/frozendict/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/py_cpuinfo.LICENSE", + "lib/python3.11/site-packages/conda/_vendor/vendor.txt", + "lib/python3.11/site-packages/conda/activate.py", + "lib/python3.11/site-packages/conda/api.py", + "lib/python3.11/site-packages/conda/auxlib/LICENSE", + "lib/python3.11/site-packages/conda/auxlib/__init__.py", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/collection.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/compat.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/decorators.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/entity.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/exceptions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/ish.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/logz.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/packaging.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/type_coercion.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/collection.py", + "lib/python3.11/site-packages/conda/auxlib/compat.py", + "lib/python3.11/site-packages/conda/auxlib/decorators.py", + "lib/python3.11/site-packages/conda/auxlib/entity.py", + "lib/python3.11/site-packages/conda/auxlib/exceptions.py", + "lib/python3.11/site-packages/conda/auxlib/ish.py", + "lib/python3.11/site-packages/conda/auxlib/logz.py", + "lib/python3.11/site-packages/conda/auxlib/packaging.py", + "lib/python3.11/site-packages/conda/auxlib/type_coercion.py", + "lib/python3.11/site-packages/conda/base/__init__.py", + "lib/python3.11/site-packages/conda/base/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/base/__pycache__/constants.cpython-311.pyc", + "lib/python3.11/site-packages/conda/base/__pycache__/context.cpython-311.pyc", + "lib/python3.11/site-packages/conda/base/__pycache__/exceptions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/base/constants.py", + "lib/python3.11/site-packages/conda/base/context.py", + "lib/python3.11/site-packages/conda/base/exceptions.py", + "lib/python3.11/site-packages/conda/cli/__init__.py", + "lib/python3.11/site-packages/conda/cli/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/actions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/common.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/conda_argparse.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/find_commands.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/helpers.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/install.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_clean.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_compare.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_config.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_create.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_info.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_init.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_install.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_list.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_mock_activate.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_mock_deactivate.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_notices.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_package.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_pip.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_remove.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_rename.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_run.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_search.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_update.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/python_api.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/actions.py", + "lib/python3.11/site-packages/conda/cli/common.py", + "lib/python3.11/site-packages/conda/cli/conda_argparse.py", + "lib/python3.11/site-packages/conda/cli/find_commands.py", + "lib/python3.11/site-packages/conda/cli/helpers.py", + "lib/python3.11/site-packages/conda/cli/install.py", + "lib/python3.11/site-packages/conda/cli/main.py", + "lib/python3.11/site-packages/conda/cli/main_clean.py", + "lib/python3.11/site-packages/conda/cli/main_compare.py", + "lib/python3.11/site-packages/conda/cli/main_config.py", + "lib/python3.11/site-packages/conda/cli/main_create.py", + "lib/python3.11/site-packages/conda/cli/main_info.py", + "lib/python3.11/site-packages/conda/cli/main_init.py", + "lib/python3.11/site-packages/conda/cli/main_install.py", + "lib/python3.11/site-packages/conda/cli/main_list.py", + "lib/python3.11/site-packages/conda/cli/main_mock_activate.py", + "lib/python3.11/site-packages/conda/cli/main_mock_deactivate.py", + "lib/python3.11/site-packages/conda/cli/main_notices.py", + "lib/python3.11/site-packages/conda/cli/main_package.py", + "lib/python3.11/site-packages/conda/cli/main_pip.py", + "lib/python3.11/site-packages/conda/cli/main_remove.py", + "lib/python3.11/site-packages/conda/cli/main_rename.py", + "lib/python3.11/site-packages/conda/cli/main_run.py", + "lib/python3.11/site-packages/conda/cli/main_search.py", + "lib/python3.11/site-packages/conda/cli/main_update.py", + "lib/python3.11/site-packages/conda/cli/python_api.py", + "lib/python3.11/site-packages/conda/common/__init__.py", + "lib/python3.11/site-packages/conda/common/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/_logic.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/compat.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/configuration.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/constants.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/decorators.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/disk.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/io.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/iterators.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/logic.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/path.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/serialize.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/signals.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/toposort.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/url.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/_logic.py", + "lib/python3.11/site-packages/conda/common/_os/__init__.py", + "lib/python3.11/site-packages/conda/common/_os/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/_os/__pycache__/linux.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/_os/__pycache__/unix.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/_os/__pycache__/windows.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/_os/linux.py", + "lib/python3.11/site-packages/conda/common/_os/unix.py", + "lib/python3.11/site-packages/conda/common/_os/windows.py", + "lib/python3.11/site-packages/conda/common/compat.py", + "lib/python3.11/site-packages/conda/common/configuration.py", + "lib/python3.11/site-packages/conda/common/constants.py", + "lib/python3.11/site-packages/conda/common/decorators.py", + "lib/python3.11/site-packages/conda/common/disk.py", + "lib/python3.11/site-packages/conda/common/io.py", + "lib/python3.11/site-packages/conda/common/iterators.py", + "lib/python3.11/site-packages/conda/common/logic.py", + "lib/python3.11/site-packages/conda/common/path.py", + "lib/python3.11/site-packages/conda/common/pkg_formats/__init__.py", + "lib/python3.11/site-packages/conda/common/pkg_formats/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/pkg_formats/__pycache__/python.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/pkg_formats/python.py", + "lib/python3.11/site-packages/conda/common/serialize.py", + "lib/python3.11/site-packages/conda/common/signals.py", + "lib/python3.11/site-packages/conda/common/toposort.py", + "lib/python3.11/site-packages/conda/common/url.py", + "lib/python3.11/site-packages/conda/core/__init__.py", + "lib/python3.11/site-packages/conda/core/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/envs_manager.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/index.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/initialize.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/link.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/package_cache.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/package_cache_data.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/path_actions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/portability.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/prefix_data.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/solve.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/subdir_data.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/envs_manager.py", + "lib/python3.11/site-packages/conda/core/index.py", + "lib/python3.11/site-packages/conda/core/initialize.py", + "lib/python3.11/site-packages/conda/core/link.py", + "lib/python3.11/site-packages/conda/core/package_cache.py", + "lib/python3.11/site-packages/conda/core/package_cache_data.py", + "lib/python3.11/site-packages/conda/core/path_actions.py", + "lib/python3.11/site-packages/conda/core/portability.py", + "lib/python3.11/site-packages/conda/core/prefix_data.py", + "lib/python3.11/site-packages/conda/core/solve.py", + "lib/python3.11/site-packages/conda/core/subdir_data.py", + "lib/python3.11/site-packages/conda/deprecations.py", + "lib/python3.11/site-packages/conda/exception_handler.py", + "lib/python3.11/site-packages/conda/exceptions.py", + "lib/python3.11/site-packages/conda/exports.py", + "lib/python3.11/site-packages/conda/gateways/__init__.py", + "lib/python3.11/site-packages/conda/gateways/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/__pycache__/anaconda_client.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/__pycache__/logging.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/__pycache__/subprocess.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/anaconda_client.py", + "lib/python3.11/site-packages/conda/gateways/connection/__init__.py", + "lib/python3.11/site-packages/conda/gateways/connection/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/__pycache__/download.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/__pycache__/session.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/__init__.py", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/__pycache__/ftp.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/__pycache__/http.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/__pycache__/localfs.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/__pycache__/s3.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/ftp.py", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/http.py", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/localfs.py", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/s3.py", + "lib/python3.11/site-packages/conda/gateways/connection/download.py", + "lib/python3.11/site-packages/conda/gateways/connection/session.py", + "lib/python3.11/site-packages/conda/gateways/disk/__init__.py", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/create.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/delete.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/link.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/lock.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/permissions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/read.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/test.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/update.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/create.py", + "lib/python3.11/site-packages/conda/gateways/disk/delete.py", + "lib/python3.11/site-packages/conda/gateways/disk/link.py", + "lib/python3.11/site-packages/conda/gateways/disk/lock.py", + "lib/python3.11/site-packages/conda/gateways/disk/permissions.py", + "lib/python3.11/site-packages/conda/gateways/disk/read.py", + "lib/python3.11/site-packages/conda/gateways/disk/test.py", + "lib/python3.11/site-packages/conda/gateways/disk/update.py", + "lib/python3.11/site-packages/conda/gateways/logging.py", + "lib/python3.11/site-packages/conda/gateways/repodata/__init__.py", + "lib/python3.11/site-packages/conda/gateways/repodata/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/repodata/__pycache__/lock.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/__init__.py", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/__pycache__/core.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/__pycache__/fetch.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/__pycache__/interface.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/core.py", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/fetch.py", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/interface.py", + "lib/python3.11/site-packages/conda/gateways/repodata/lock.py", + "lib/python3.11/site-packages/conda/gateways/subprocess.py", + "lib/python3.11/site-packages/conda/history.py", + "lib/python3.11/site-packages/conda/instructions.py", + "lib/python3.11/site-packages/conda/misc.py", + "lib/python3.11/site-packages/conda/models/__init__.py", + "lib/python3.11/site-packages/conda/models/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/channel.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/dist.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/enums.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/leased_path_entry.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/match_spec.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/package_info.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/prefix_graph.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/records.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/version.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/channel.py", + "lib/python3.11/site-packages/conda/models/dist.py", + "lib/python3.11/site-packages/conda/models/enums.py", + "lib/python3.11/site-packages/conda/models/leased_path_entry.py", + "lib/python3.11/site-packages/conda/models/match_spec.py", + "lib/python3.11/site-packages/conda/models/package_info.py", + "lib/python3.11/site-packages/conda/models/prefix_graph.py", + "lib/python3.11/site-packages/conda/models/records.py", + "lib/python3.11/site-packages/conda/models/version.py", + "lib/python3.11/site-packages/conda/notices/__init__.py", + "lib/python3.11/site-packages/conda/notices/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/notices/__pycache__/cache.cpython-311.pyc", + "lib/python3.11/site-packages/conda/notices/__pycache__/core.cpython-311.pyc", + "lib/python3.11/site-packages/conda/notices/__pycache__/fetch.cpython-311.pyc", + "lib/python3.11/site-packages/conda/notices/__pycache__/types.cpython-311.pyc", + "lib/python3.11/site-packages/conda/notices/__pycache__/views.cpython-311.pyc", + "lib/python3.11/site-packages/conda/notices/cache.py", + "lib/python3.11/site-packages/conda/notices/core.py", + "lib/python3.11/site-packages/conda/notices/fetch.py", + "lib/python3.11/site-packages/conda/notices/types.py", + "lib/python3.11/site-packages/conda/notices/views.py", + "lib/python3.11/site-packages/conda/plan.py", + "lib/python3.11/site-packages/conda/plugins/__init__.py", + "lib/python3.11/site-packages/conda/plugins/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/__pycache__/hookspec.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/__pycache__/manager.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/__pycache__/solvers.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/__pycache__/types.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/hookspec.py", + "lib/python3.11/site-packages/conda/plugins/manager.py", + "lib/python3.11/site-packages/conda/plugins/solvers.py", + "lib/python3.11/site-packages/conda/plugins/subcommands/__init__.py", + "lib/python3.11/site-packages/conda/plugins/subcommands/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/subcommands/doctor/__init__.py", + "lib/python3.11/site-packages/conda/plugins/subcommands/doctor/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/subcommands/doctor/__pycache__/health_checks.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/subcommands/doctor/health_checks.py", + "lib/python3.11/site-packages/conda/plugins/types.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__init__.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/archspec.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/conda.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/cuda.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/freebsd.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/linux.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/osx.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/windows.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/archspec.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/conda.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/cuda.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/freebsd.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/linux.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/osx.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/windows.py", + "lib/python3.11/site-packages/conda/py.typed", + "lib/python3.11/site-packages/conda/resolve.py", + "lib/python3.11/site-packages/conda/shell/Library/bin/conda.bat", + "lib/python3.11/site-packages/conda/shell/Scripts/activate.bat", + "lib/python3.11/site-packages/conda/shell/bin/activate", + "lib/python3.11/site-packages/conda/shell/bin/conda", + "lib/python3.11/site-packages/conda/shell/bin/deactivate", + "lib/python3.11/site-packages/conda/shell/cli-32.exe", + "lib/python3.11/site-packages/conda/shell/cli-64.exe", + "lib/python3.11/site-packages/conda/shell/conda.xsh", + "lib/python3.11/site-packages/conda/shell/conda_icon.ico", + "lib/python3.11/site-packages/conda/shell/condabin/Conda.psm1", + "lib/python3.11/site-packages/conda/shell/condabin/_conda_activate.bat", + "lib/python3.11/site-packages/conda/shell/condabin/activate.bat", + "lib/python3.11/site-packages/conda/shell/condabin/conda-hook.ps1", + "lib/python3.11/site-packages/conda/shell/condabin/conda.bat", + "lib/python3.11/site-packages/conda/shell/condabin/conda_auto_activate.bat", + "lib/python3.11/site-packages/conda/shell/condabin/conda_hook.bat", + "lib/python3.11/site-packages/conda/shell/condabin/deactivate.bat", + "lib/python3.11/site-packages/conda/shell/condabin/rename_tmp.bat", + "lib/python3.11/site-packages/conda/shell/etc/fish/conf.d/conda.fish", + "lib/python3.11/site-packages/conda/shell/etc/profile.d/conda.csh", + "lib/python3.11/site-packages/conda/shell/etc/profile.d/conda.sh", + "lib/python3.11/site-packages/conda/testing/__init__.py", + "lib/python3.11/site-packages/conda/testing/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/__pycache__/cases.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/__pycache__/fixtures.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/__pycache__/helpers.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/__pycache__/integration.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/__pycache__/solver_helpers.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/cases.py", + "lib/python3.11/site-packages/conda/testing/fixtures.py", + "lib/python3.11/site-packages/conda/testing/gateways/__init__.py", + "lib/python3.11/site-packages/conda/testing/gateways/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/gateways/__pycache__/fixtures.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/gateways/fixtures.py", + "lib/python3.11/site-packages/conda/testing/helpers.py", + "lib/python3.11/site-packages/conda/testing/integration.py", + "lib/python3.11/site-packages/conda/testing/notices/__init__.py", + "lib/python3.11/site-packages/conda/testing/notices/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/notices/__pycache__/fixtures.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/notices/__pycache__/helpers.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/notices/fixtures.py", + "lib/python3.11/site-packages/conda/testing/notices/helpers.py", + "lib/python3.11/site-packages/conda/testing/solver_helpers.py", + "lib/python3.11/site-packages/conda/trust/__init__.py", + "lib/python3.11/site-packages/conda/trust/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/trust/__pycache__/constants.cpython-311.pyc", + "lib/python3.11/site-packages/conda/trust/__pycache__/signature_verification.cpython-311.pyc", + "lib/python3.11/site-packages/conda/trust/constants.py", + "lib/python3.11/site-packages/conda/trust/signature_verification.py", + "lib/python3.11/site-packages/conda/utils.py", + "lib/python3.11/site-packages/conda_env/README.md", + "lib/python3.11/site-packages/conda_env/__init__.py", + "lib/python3.11/site-packages/conda_env/__main__.py", + "lib/python3.11/site-packages/conda_env/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/__pycache__/env.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/__pycache__/pip_util.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__init__.py", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/common.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_config.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_create.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_export.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_list.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_remove.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_update.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_vars.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/common.py", + "lib/python3.11/site-packages/conda_env/cli/main.py", + "lib/python3.11/site-packages/conda_env/cli/main_config.py", + "lib/python3.11/site-packages/conda_env/cli/main_create.py", + "lib/python3.11/site-packages/conda_env/cli/main_export.py", + "lib/python3.11/site-packages/conda_env/cli/main_list.py", + "lib/python3.11/site-packages/conda_env/cli/main_remove.py", + "lib/python3.11/site-packages/conda_env/cli/main_update.py", + "lib/python3.11/site-packages/conda_env/cli/main_vars.py", + "lib/python3.11/site-packages/conda_env/env.py", + "lib/python3.11/site-packages/conda_env/installers/__init__.py", + "lib/python3.11/site-packages/conda_env/installers/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/installers/__pycache__/base.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/installers/__pycache__/conda.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/installers/__pycache__/pip.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/installers/base.py", + "lib/python3.11/site-packages/conda_env/installers/conda.py", + "lib/python3.11/site-packages/conda_env/installers/pip.py", + "lib/python3.11/site-packages/conda_env/pip_util.py", + "lib/python3.11/site-packages/conda_env/specs/__init__.py", + "lib/python3.11/site-packages/conda_env/specs/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/specs/__pycache__/binstar.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/specs/__pycache__/requirements.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/specs/__pycache__/yaml_file.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/specs/binstar.py", + "lib/python3.11/site-packages/conda_env/specs/requirements.py", + "lib/python3.11/site-packages/conda_env/specs/yaml_file.py", + "lib/python3.11/site-packages/tests/conda_env/__init__.py", + "lib/python3.11/site-packages/tests/conda_env/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/__pycache__/test_cli.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/__pycache__/test_create.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/__pycache__/test_env.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/__pycache__/test_pip_util.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/__pycache__/utils.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/specs/__init__.py", + "lib/python3.11/site-packages/tests/conda_env/specs/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/specs/__pycache__/test_binstar.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/specs/__pycache__/test_requirements.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/specs/__pycache__/test_yaml_file.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/specs/test_binstar.py", + "lib/python3.11/site-packages/tests/conda_env/specs/test_requirements.py", + "lib/python3.11/site-packages/tests/conda_env/specs/test_yaml_file.py", + "lib/python3.11/site-packages/tests/conda_env/support/add-pip.yml", + "lib/python3.11/site-packages/tests/conda_env/support/advanced-pip/.gitignore", + "lib/python3.11/site-packages/tests/conda_env/support/advanced-pip/another-project-requirements.txt", + "lib/python3.11/site-packages/tests/conda_env/support/advanced-pip/environment.yml", + "lib/python3.11/site-packages/tests/conda_env/support/advanced-pip/module_to_install_in_editable_mode/__pycache__/setup.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/support/advanced-pip/module_to_install_in_editable_mode/setup.py", + "lib/python3.11/site-packages/tests/conda_env/support/channels_with_envvars.yml", + "lib/python3.11/site-packages/tests/conda_env/support/empty_env.yml", + "lib/python3.11/site-packages/tests/conda_env/support/env_with_dependencies.yml", + "lib/python3.11/site-packages/tests/conda_env/support/example-yaml/environment.yaml", + "lib/python3.11/site-packages/tests/conda_env/support/example/environment.yml", + "lib/python3.11/site-packages/tests/conda_env/support/example/environment_host_port.yml", + "lib/python3.11/site-packages/tests/conda_env/support/example/environment_pinned.yml", + "lib/python3.11/site-packages/tests/conda_env/support/example/environment_pinned_updated.yml", + "lib/python3.11/site-packages/tests/conda_env/support/foo/bar/baz/readme", + "lib/python3.11/site-packages/tests/conda_env/support/foo/bar/readme", + "lib/python3.11/site-packages/tests/conda_env/support/foo/environment.yml", + "lib/python3.11/site-packages/tests/conda_env/support/invalid_keys.yml", + "lib/python3.11/site-packages/tests/conda_env/support/notebook.ipynb", + "lib/python3.11/site-packages/tests/conda_env/support/notebook_with_env.ipynb", + "lib/python3.11/site-packages/tests/conda_env/support/pip_argh.yml", + "lib/python3.11/site-packages/tests/conda_env/support/requirements.txt", + "lib/python3.11/site-packages/tests/conda_env/support/saved-env/environment.yml", + "lib/python3.11/site-packages/tests/conda_env/support/simple.yml", + "lib/python3.11/site-packages/tests/conda_env/support/valid_keys.yml", + "lib/python3.11/site-packages/tests/conda_env/support/with-pip.yml", + "lib/python3.11/site-packages/tests/conda_env/test_cli.py", + "lib/python3.11/site-packages/tests/conda_env/test_create.py", + "lib/python3.11/site-packages/tests/conda_env/test_env.py", + "lib/python3.11/site-packages/tests/conda_env/test_pip_util.py", + "lib/python3.11/site-packages/tests/conda_env/utils.py", + "lib/python3.11/site-packages/tests/test-recipes/activate_deactivate_package/src/etc/conda/activate.d/activate.bat", + "lib/python3.11/site-packages/tests/test-recipes/activate_deactivate_package/src/etc/conda/activate.d/activate.sh", + "lib/python3.11/site-packages/tests/test-recipes/activate_deactivate_package/src/etc/conda/deactivate.d/deactivate.bat", + "lib/python3.11/site-packages/tests/test-recipes/activate_deactivate_package/src/etc/conda/deactivate.d/deactivate.sh", + "lib/python3.11/site-packages/xontrib/conda.xsh", + "shell/condabin/Conda.psm1", + "shell/condabin/conda-hook.ps1" + ], + "fn": "conda-23.11.0-py311hca03da5_0.conda", + "license": "BSD-3-Clause", + "link": { + "source": "/Users/donjayamanne/miniconda3/pkgs/conda-23.11.0-py311hca03da5_0", + "type": 1 + }, + "md5": "d40f56a649df2d05c5468713732e005e", + "name": "conda", + "package_tarball_full_path": "/Users/donjayamanne/miniconda3/pkgs/conda-23.11.0-py311hca03da5_0.conda", + "paths_data": { + "paths": [ + { + "_path": "bin/activate", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "92dd3f5997c70939665a9000ba114ba13f28c5ce1341fa75060f48dcb808a127", + "sha256_in_prefix": "4270a26a4429c0dd5a4c35900f8b2211b35c7447367b6f2b8470bdedc1f240ca", + "size_in_bytes": 429 + }, + { + "_path": "bin/conda", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "c6380d731f573d898f146d5580e0447dd44d068d619bda7aff326095f8bc4f88", + "sha256_in_prefix": "b5dd14921f011aa934757f31b62e0fa2be17a1a9f99ccb2d26a1f12a864d64e8", + "size_in_bytes": 756 + }, + { + "_path": "bin/conda-env", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "c7e6fa37766fe556ef4f95c0860a0eb7f7817c6f057ba9369e248bcdd7f37c9d", + "sha256_in_prefix": "88be67a0d6c47edbd65fa3d860a3514daed6b6bac830ec93800cf43fd778379c", + "size_in_bytes": 393 + }, + { + "_path": "bin/deactivate", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "a69da038fee96660c3f47c2c393c05b54986ba0c929aada61cd410df6e09746e", + "sha256_in_prefix": "2af9834dc0f7c2fb9db2f9e67829700c6828774d9ad7996602324c5a5387a89c", + "size_in_bytes": 517 + }, + { + "_path": "condabin/conda", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "c6380d731f573d898f146d5580e0447dd44d068d619bda7aff326095f8bc4f88", + "sha256_in_prefix": "b5dd14921f011aa934757f31b62e0fa2be17a1a9f99ccb2d26a1f12a864d64e8", + "size_in_bytes": 756 + }, + { + "_path": "etc/fish/conf.d/conda.fish", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "85caec3d76f3239e105f88cbafc6acbe04cd97fd4c1db4da4e0dcf4d357a631e", + "sha256_in_prefix": "a1ab61539200ab52ec85d9bf7de9b1cfe4a7fbdd4da2f6a7882d417ea8c7d3e1", + "size_in_bytes": 4880 + }, + { + "_path": "etc/profile.d/conda.csh", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "966581001ffd439152bf4432c7c436e25014aa2386668a00145b4087aa354604", + "sha256_in_prefix": "85a53ef7d70dcb1c16695b970bbc3880b74eaa23fff43dde57796e34fcb2ead7", + "size_in_bytes": 3163 + }, + { + "_path": "etc/profile.d/conda.sh", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "a147ccd49f1579e69c49cb12114421d95b84a1e02ef1df7c4f8c51d44cd026d1", + "sha256_in_prefix": "920d3be6a977141273da05e8d0a1867352013f1e2702a313fea15a101432f344", + "size_in_bytes": 2552 + }, + { + "_path": "lib/python3.11/site-packages/xontrib/conda.xsh", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "e0e9fb9f5d108c70434802b45e51910671b409a3cddd7b4ec887af2b07e2ce05", + "sha256_in_prefix": "c0650607c2cf90f2ce94f3b7370349922fdac5901e3316fa9f065d8773b3f944", + "size_in_bytes": 7565 + }, + { + "_path": "shell/condabin/conda-hook.ps1", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "94f9a90527bf021292a113a9e546e3f5dd042ae3afc0ed2a7a5763ef312ac756", + "sha256_in_prefix": "4edd554f34b2aa567876996da1be4cbc89d866e0e3d958f42d7889ccff8f617f", + "size_in_bytes": 1047 + } + ], + "paths_version": 1 + }, + "requested_spec": "defaults/osx-arm64::conda==23.11.0=py311hca03da5_0[md5=d40f56a649df2d05c5468713732e005e]", + "sha256": "63ade392153a88ba334593059bfce7ab3b6df1dbbd6622655c8a7db587f70a78", + "size": 1317120, + "subdir": "osx-arm64", + "timestamp": 1701719702000, + "track_features": "", + "url": "https://repo.anaconda.com/pkgs/main/osx-arm64/conda-23.11.0-py311hca03da5_0.conda", + "version": "23.11.0" +} \ No newline at end of file diff --git a/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/mambaforge/conda-meta/history b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/mambaforge/conda-meta/history new file mode 100644 index 000000000000..b196a3e5922b --- /dev/null +++ b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/mambaforge/conda-meta/history @@ -0,0 +1,72 @@ +==> 2024-02-14 17:04:16 <== +# cmd: /Users/donjayamanne/miniconda3/conda.exe install --offline --file /Users/donjayamanne/miniconda3/pkgs/env.txt -yp /Users/donjayamanne/miniconda3 +# conda version: 23.10.0 ++defaults/noarch::archspec-0.2.1-pyhd3eb1b0_0 ++defaults/noarch::charset-normalizer-2.0.4-pyhd3eb1b0_0 ++defaults/noarch::conda-libmamba-solver-23.12.0-pyhd3eb1b0_1 ++defaults/noarch::jsonpatch-1.32-pyhd3eb1b0_0 ++defaults/noarch::jsonpointer-2.1-pyhd3eb1b0_0 ++defaults/noarch::pybind11-abi-4-hd3eb1b0_1 ++defaults/noarch::pycparser-2.21-pyhd3eb1b0_0 ++defaults/noarch::tzdata-2023c-h04d1e81_0 ++defaults/osx-arm64::boltons-23.0.0-py311hca03da5_0 ++defaults/osx-arm64::brotli-python-1.0.9-py311h313beb8_7 ++defaults/osx-arm64::bzip2-1.0.8-h620ffc9_4 ++defaults/osx-arm64::c-ares-1.19.1-h80987f9_0 ++defaults/osx-arm64::ca-certificates-2023.12.12-hca03da5_0 ++defaults/osx-arm64::certifi-2023.11.17-py311hca03da5_0 ++defaults/osx-arm64::cffi-1.16.0-py311h80987f9_0 ++defaults/osx-arm64::conda-23.11.0-py311hca03da5_0 ++defaults/osx-arm64::conda-content-trust-0.2.0-py311hca03da5_0 ++defaults/osx-arm64::conda-package-handling-2.2.0-py311hca03da5_0 ++defaults/osx-arm64::conda-package-streaming-0.9.0-py311hca03da5_0 ++defaults/osx-arm64::cryptography-41.0.7-py311hd4332d6_0 ++defaults/osx-arm64::distro-1.8.0-py311hca03da5_0 ++defaults/osx-arm64::fmt-9.1.0-h48ca7d4_0 ++defaults/osx-arm64::icu-73.1-h313beb8_0 ++defaults/osx-arm64::idna-3.4-py311hca03da5_0 ++defaults/osx-arm64::krb5-1.20.1-hf3e1bf2_1 ++defaults/osx-arm64::libarchive-3.6.2-h62fee54_2 ++defaults/osx-arm64::libcurl-8.4.0-h3e2b118_1 ++defaults/osx-arm64::libcxx-14.0.6-h848a8c0_0 ++defaults/osx-arm64::libedit-3.1.20230828-h80987f9_0 ++defaults/osx-arm64::libev-4.33-h1a28f6b_1 ++defaults/osx-arm64::libffi-3.4.4-hca03da5_0 ++defaults/osx-arm64::libiconv-1.16-h1a28f6b_2 ++defaults/osx-arm64::libmamba-1.5.3-h15e39b3_0 ++defaults/osx-arm64::libmambapy-1.5.3-py311h1c5506f_0 ++defaults/osx-arm64::libnghttp2-1.57.0-h62f6fdd_0 ++defaults/osx-arm64::libsolv-0.7.24-h514c7bf_0 ++defaults/osx-arm64::libssh2-1.10.0-h02f6b3c_2 ++defaults/osx-arm64::libxml2-2.10.4-h0dcf63f_1 ++defaults/osx-arm64::lz4-c-1.9.4-h313beb8_0 ++defaults/osx-arm64::menuinst-2.0.1-py311hca03da5_1 ++defaults/osx-arm64::ncurses-6.4-h313beb8_0 ++defaults/osx-arm64::openssl-3.0.12-h1a28f6b_0 ++defaults/osx-arm64::packaging-23.1-py311hca03da5_0 ++defaults/osx-arm64::pcre2-10.42-hb066dcc_0 ++defaults/osx-arm64::pip-23.3.1-py311hca03da5_0 ++defaults/osx-arm64::platformdirs-3.10.0-py311hca03da5_0 ++defaults/osx-arm64::pluggy-1.0.0-py311hca03da5_1 ++defaults/osx-arm64::pycosat-0.6.6-py311h80987f9_0 ++defaults/osx-arm64::pyopenssl-23.2.0-py311hca03da5_0 ++defaults/osx-arm64::pysocks-1.7.1-py311hca03da5_0 ++defaults/osx-arm64::python-3.11.5-hb885b13_0 ++defaults/osx-arm64::python.app-3-py311h80987f9_0 ++defaults/osx-arm64::readline-8.2-h1a28f6b_0 ++defaults/osx-arm64::reproc-14.2.4-hc377ac9_1 ++defaults/osx-arm64::reproc-cpp-14.2.4-hc377ac9_1 ++defaults/osx-arm64::requests-2.31.0-py311hca03da5_0 ++defaults/osx-arm64::ruamel.yaml-0.17.21-py311h80987f9_0 ++defaults/osx-arm64::setuptools-68.2.2-py311hca03da5_0 ++defaults/osx-arm64::sqlite-3.41.2-h80987f9_0 ++defaults/osx-arm64::tk-8.6.12-hb8d0fd4_0 ++defaults/osx-arm64::tqdm-4.65.0-py311hb6e6a13_0 ++defaults/osx-arm64::truststore-0.8.0-py311hca03da5_0 ++defaults/osx-arm64::urllib3-1.26.18-py311hca03da5_0 ++defaults/osx-arm64::wheel-0.41.2-py311hca03da5_0 ++defaults/osx-arm64::xz-5.4.5-h80987f9_0 ++defaults/osx-arm64::yaml-cpp-0.8.0-h313beb8_0 ++defaults/osx-arm64::zlib-1.2.13-h5a0b063_0 ++defaults/osx-arm64::zstandard-0.19.0-py311h80987f9_0 ++defaults/osx-arm64::zstd-1.5.5-hd90d995_0 diff --git a/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/mambaforge/conda-meta/python-3.11.5-hb885b13_0.json b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/mambaforge/conda-meta/python-3.11.5-hb885b13_0.json new file mode 100644 index 000000000000..90b9af01a4e0 --- /dev/null +++ b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/mambaforge/conda-meta/python-3.11.5-hb885b13_0.json @@ -0,0 +1,2280 @@ +{ + "build": "hb885b13_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/osx-arm64", + "constrains": [], + "depends": [ + "bzip2 >=1.0.8,<2.0a0", + "libffi >=3.4,<3.5", + "libffi >=3.4,<4.0a0", + "ncurses >=6.4,<7.0a0", + "openssl >=3.0.10,<4.0a0", + "readline >=8.1.2,<9.0a0", + "sqlite >=3.41.2,<4.0a0", + "tk >=8.6.12,<8.7.0a0", + "tzdata", + "xz >=5.4.2,<6.0a0", + "zlib >=1.2.13,<1.3.0a0", + "pip" + ], + "extracted_package_dir": "/Users/donjayamanne/miniconda3/pkgs/python-3.11.5-hb885b13_0", + "features": "", + "files": [ + "bin/2to3", + "bin/2to3-3.11", + "bin/idle3", + "bin/idle3.11", + "bin/pydoc", + "bin/pydoc3", + "bin/pydoc3.11", + "bin/python", + "bin/python3", + "bin/python3-config", + "bin/python3.1", + "bin/python3.11", + "bin/python3.11-config", + "include/python3.11/Python.h", + "include/python3.11/abstract.h", + "include/python3.11/bltinmodule.h", + "include/python3.11/boolobject.h", + "include/python3.11/bytearrayobject.h", + "include/python3.11/bytesobject.h", + "include/python3.11/ceval.h", + "include/python3.11/codecs.h", + "include/python3.11/compile.h", + "include/python3.11/complexobject.h", + "include/python3.11/cpython/abstract.h", + "include/python3.11/cpython/bytearrayobject.h", + "include/python3.11/cpython/bytesobject.h", + "include/python3.11/cpython/cellobject.h", + "include/python3.11/cpython/ceval.h", + "include/python3.11/cpython/classobject.h", + "include/python3.11/cpython/code.h", + "include/python3.11/cpython/compile.h", + "include/python3.11/cpython/complexobject.h", + "include/python3.11/cpython/context.h", + "include/python3.11/cpython/descrobject.h", + "include/python3.11/cpython/dictobject.h", + "include/python3.11/cpython/fileobject.h", + "include/python3.11/cpython/fileutils.h", + "include/python3.11/cpython/floatobject.h", + "include/python3.11/cpython/frameobject.h", + "include/python3.11/cpython/funcobject.h", + "include/python3.11/cpython/genobject.h", + "include/python3.11/cpython/import.h", + "include/python3.11/cpython/initconfig.h", + "include/python3.11/cpython/listobject.h", + "include/python3.11/cpython/longintrepr.h", + "include/python3.11/cpython/longobject.h", + "include/python3.11/cpython/methodobject.h", + "include/python3.11/cpython/modsupport.h", + "include/python3.11/cpython/object.h", + "include/python3.11/cpython/objimpl.h", + "include/python3.11/cpython/odictobject.h", + "include/python3.11/cpython/picklebufobject.h", + "include/python3.11/cpython/pthread_stubs.h", + "include/python3.11/cpython/pyctype.h", + "include/python3.11/cpython/pydebug.h", + "include/python3.11/cpython/pyerrors.h", + "include/python3.11/cpython/pyfpe.h", + "include/python3.11/cpython/pyframe.h", + "include/python3.11/cpython/pylifecycle.h", + "include/python3.11/cpython/pymem.h", + "include/python3.11/cpython/pystate.h", + "include/python3.11/cpython/pythonrun.h", + "include/python3.11/cpython/pythread.h", + "include/python3.11/cpython/pytime.h", + "include/python3.11/cpython/setobject.h", + "include/python3.11/cpython/sysmodule.h", + "include/python3.11/cpython/traceback.h", + "include/python3.11/cpython/tupleobject.h", + "include/python3.11/cpython/unicodeobject.h", + "include/python3.11/cpython/warnings.h", + "include/python3.11/cpython/weakrefobject.h", + "include/python3.11/datetime.h", + "include/python3.11/descrobject.h", + "include/python3.11/dictobject.h", + "include/python3.11/dynamic_annotations.h", + "include/python3.11/enumobject.h", + "include/python3.11/errcode.h", + "include/python3.11/exports.h", + "include/python3.11/fileobject.h", + "include/python3.11/fileutils.h", + "include/python3.11/floatobject.h", + "include/python3.11/frameobject.h", + "include/python3.11/genericaliasobject.h", + "include/python3.11/import.h", + "include/python3.11/internal/pycore_abstract.h", + "include/python3.11/internal/pycore_accu.h", + "include/python3.11/internal/pycore_asdl.h", + "include/python3.11/internal/pycore_ast.h", + "include/python3.11/internal/pycore_ast_state.h", + "include/python3.11/internal/pycore_atomic.h", + "include/python3.11/internal/pycore_atomic_funcs.h", + "include/python3.11/internal/pycore_bitutils.h", + "include/python3.11/internal/pycore_blocks_output_buffer.h", + "include/python3.11/internal/pycore_bytes_methods.h", + "include/python3.11/internal/pycore_bytesobject.h", + "include/python3.11/internal/pycore_call.h", + "include/python3.11/internal/pycore_ceval.h", + "include/python3.11/internal/pycore_code.h", + "include/python3.11/internal/pycore_compile.h", + "include/python3.11/internal/pycore_condvar.h", + "include/python3.11/internal/pycore_context.h", + "include/python3.11/internal/pycore_dict.h", + "include/python3.11/internal/pycore_dtoa.h", + "include/python3.11/internal/pycore_emscripten_signal.h", + "include/python3.11/internal/pycore_exceptions.h", + "include/python3.11/internal/pycore_fileutils.h", + "include/python3.11/internal/pycore_floatobject.h", + "include/python3.11/internal/pycore_format.h", + "include/python3.11/internal/pycore_frame.h", + "include/python3.11/internal/pycore_function.h", + "include/python3.11/internal/pycore_gc.h", + "include/python3.11/internal/pycore_genobject.h", + "include/python3.11/internal/pycore_getopt.h", + "include/python3.11/internal/pycore_gil.h", + "include/python3.11/internal/pycore_global_objects.h", + "include/python3.11/internal/pycore_global_strings.h", + "include/python3.11/internal/pycore_hamt.h", + "include/python3.11/internal/pycore_hashtable.h", + "include/python3.11/internal/pycore_import.h", + "include/python3.11/internal/pycore_initconfig.h", + "include/python3.11/internal/pycore_interp.h", + "include/python3.11/internal/pycore_interpreteridobject.h", + "include/python3.11/internal/pycore_list.h", + "include/python3.11/internal/pycore_long.h", + "include/python3.11/internal/pycore_moduleobject.h", + "include/python3.11/internal/pycore_namespace.h", + "include/python3.11/internal/pycore_object.h", + "include/python3.11/internal/pycore_opcode.h", + "include/python3.11/internal/pycore_parser.h", + "include/python3.11/internal/pycore_pathconfig.h", + "include/python3.11/internal/pycore_pyarena.h", + "include/python3.11/internal/pycore_pyerrors.h", + "include/python3.11/internal/pycore_pyhash.h", + "include/python3.11/internal/pycore_pylifecycle.h", + "include/python3.11/internal/pycore_pymath.h", + "include/python3.11/internal/pycore_pymem.h", + "include/python3.11/internal/pycore_pystate.h", + "include/python3.11/internal/pycore_runtime.h", + "include/python3.11/internal/pycore_runtime_init.h", + "include/python3.11/internal/pycore_signal.h", + "include/python3.11/internal/pycore_sliceobject.h", + "include/python3.11/internal/pycore_strhex.h", + "include/python3.11/internal/pycore_structseq.h", + "include/python3.11/internal/pycore_symtable.h", + "include/python3.11/internal/pycore_sysmodule.h", + "include/python3.11/internal/pycore_traceback.h", + "include/python3.11/internal/pycore_tuple.h", + "include/python3.11/internal/pycore_typeobject.h", + "include/python3.11/internal/pycore_ucnhash.h", + "include/python3.11/internal/pycore_unicodeobject.h", + "include/python3.11/internal/pycore_unionobject.h", + "include/python3.11/internal/pycore_warnings.h", + "include/python3.11/intrcheck.h", + "include/python3.11/iterobject.h", + "include/python3.11/listobject.h", + "include/python3.11/longobject.h", + "include/python3.11/marshal.h", + "include/python3.11/memoryobject.h", + "include/python3.11/methodobject.h", + "include/python3.11/modsupport.h", + "include/python3.11/moduleobject.h", + "include/python3.11/object.h", + "include/python3.11/objimpl.h", + "include/python3.11/opcode.h", + "include/python3.11/osdefs.h", + "include/python3.11/osmodule.h", + "include/python3.11/patchlevel.h", + "include/python3.11/py_curses.h", + "include/python3.11/pybuffer.h", + "include/python3.11/pycapsule.h", + "include/python3.11/pyconfig.h", + "include/python3.11/pydtrace.h", + "include/python3.11/pyerrors.h", + "include/python3.11/pyexpat.h", + "include/python3.11/pyframe.h", + "include/python3.11/pyhash.h", + "include/python3.11/pylifecycle.h", + "include/python3.11/pymacconfig.h", + "include/python3.11/pymacro.h", + "include/python3.11/pymath.h", + "include/python3.11/pymem.h", + "include/python3.11/pyport.h", + "include/python3.11/pystate.h", + "include/python3.11/pystrcmp.h", + "include/python3.11/pystrtod.h", + "include/python3.11/pythonrun.h", + "include/python3.11/pythread.h", + "include/python3.11/pytypedefs.h", + "include/python3.11/rangeobject.h", + "include/python3.11/setobject.h", + "include/python3.11/sliceobject.h", + "include/python3.11/structmember.h", + "include/python3.11/structseq.h", + "include/python3.11/sysmodule.h", + "include/python3.11/token.h", + "include/python3.11/traceback.h", + "include/python3.11/tracemalloc.h", + "include/python3.11/tupleobject.h", + "include/python3.11/typeslots.h", + "include/python3.11/unicodeobject.h", + "include/python3.11/warnings.h", + "include/python3.11/weakrefobject.h", + "lib/libpython3.11.dylib", + "lib/pkgconfig/python-3.11-embed.pc", + "lib/pkgconfig/python-3.11.pc", + "lib/pkgconfig/python3-embed.pc", + "lib/pkgconfig/python3.pc", + "lib/python3.1", + "lib/python3.11/LICENSE.txt", + "lib/python3.11/__future__.py", + "lib/python3.11/__hello__.py", + "lib/python3.11/__phello__/__init__.py", + "lib/python3.11/__phello__/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/__phello__/__pycache__/spam.cpython-311.pyc", + "lib/python3.11/__phello__/spam.py", + "lib/python3.11/__pycache__/__future__.cpython-311.pyc", + "lib/python3.11/__pycache__/__hello__.cpython-311.pyc", + "lib/python3.11/__pycache__/_aix_support.cpython-311.pyc", + "lib/python3.11/__pycache__/_bootsubprocess.cpython-311.pyc", + "lib/python3.11/__pycache__/_collections_abc.cpython-311.pyc", + "lib/python3.11/__pycache__/_compat_pickle.cpython-311.pyc", + "lib/python3.11/__pycache__/_compression.cpython-311.pyc", + "lib/python3.11/__pycache__/_markupbase.cpython-311.pyc", + "lib/python3.11/__pycache__/_osx_support.cpython-311.pyc", + "lib/python3.11/__pycache__/_py_abc.cpython-311.pyc", + "lib/python3.11/__pycache__/_pydecimal.cpython-311.pyc", + "lib/python3.11/__pycache__/_pyio.cpython-311.pyc", + "lib/python3.11/__pycache__/_sitebuiltins.cpython-311.pyc", + "lib/python3.11/__pycache__/_strptime.cpython-311.pyc", + "lib/python3.11/__pycache__/_sysconfigdata__darwin_darwin.cpython-311.pyc", + "lib/python3.11/__pycache__/_sysconfigdata_arm64_apple_darwin20_0_0.cpython-311.pyc", + "lib/python3.11/__pycache__/_threading_local.cpython-311.pyc", + "lib/python3.11/__pycache__/_weakrefset.cpython-311.pyc", + "lib/python3.11/__pycache__/abc.cpython-311.pyc", + "lib/python3.11/__pycache__/aifc.cpython-311.pyc", + "lib/python3.11/__pycache__/antigravity.cpython-311.pyc", + "lib/python3.11/__pycache__/argparse.cpython-311.pyc", + "lib/python3.11/__pycache__/ast.cpython-311.pyc", + "lib/python3.11/__pycache__/asynchat.cpython-311.pyc", + "lib/python3.11/__pycache__/asyncore.cpython-311.pyc", + "lib/python3.11/__pycache__/base64.cpython-311.pyc", + "lib/python3.11/__pycache__/bdb.cpython-311.pyc", + "lib/python3.11/__pycache__/bisect.cpython-311.pyc", + "lib/python3.11/__pycache__/bz2.cpython-311.pyc", + "lib/python3.11/__pycache__/cProfile.cpython-311.pyc", + "lib/python3.11/__pycache__/calendar.cpython-311.pyc", + "lib/python3.11/__pycache__/cgi.cpython-311.pyc", + "lib/python3.11/__pycache__/cgitb.cpython-311.pyc", + "lib/python3.11/__pycache__/chunk.cpython-311.pyc", + "lib/python3.11/__pycache__/cmd.cpython-311.pyc", + "lib/python3.11/__pycache__/code.cpython-311.pyc", + "lib/python3.11/__pycache__/codecs.cpython-311.pyc", + "lib/python3.11/__pycache__/codeop.cpython-311.pyc", + "lib/python3.11/__pycache__/colorsys.cpython-311.pyc", + "lib/python3.11/__pycache__/compileall.cpython-311.pyc", + "lib/python3.11/__pycache__/configparser.cpython-311.pyc", + "lib/python3.11/__pycache__/contextlib.cpython-311.pyc", + "lib/python3.11/__pycache__/contextvars.cpython-311.pyc", + "lib/python3.11/__pycache__/copy.cpython-311.pyc", + "lib/python3.11/__pycache__/copyreg.cpython-311.pyc", + "lib/python3.11/__pycache__/crypt.cpython-311.pyc", + "lib/python3.11/__pycache__/csv.cpython-311.pyc", + "lib/python3.11/__pycache__/dataclasses.cpython-311.pyc", + "lib/python3.11/__pycache__/datetime.cpython-311.pyc", + "lib/python3.11/__pycache__/decimal.cpython-311.pyc", + "lib/python3.11/__pycache__/difflib.cpython-311.pyc", + "lib/python3.11/__pycache__/dis.cpython-311.pyc", + "lib/python3.11/__pycache__/doctest.cpython-311.pyc", + "lib/python3.11/__pycache__/enum.cpython-311.pyc", + "lib/python3.11/__pycache__/filecmp.cpython-311.pyc", + "lib/python3.11/__pycache__/fileinput.cpython-311.pyc", + "lib/python3.11/__pycache__/fnmatch.cpython-311.pyc", + "lib/python3.11/__pycache__/fractions.cpython-311.pyc", + "lib/python3.11/__pycache__/ftplib.cpython-311.pyc", + "lib/python3.11/__pycache__/functools.cpython-311.pyc", + "lib/python3.11/__pycache__/genericpath.cpython-311.pyc", + "lib/python3.11/__pycache__/getopt.cpython-311.pyc", + "lib/python3.11/__pycache__/getpass.cpython-311.pyc", + "lib/python3.11/__pycache__/gettext.cpython-311.pyc", + "lib/python3.11/__pycache__/glob.cpython-311.pyc", + "lib/python3.11/__pycache__/graphlib.cpython-311.pyc", + "lib/python3.11/__pycache__/gzip.cpython-311.pyc", + "lib/python3.11/__pycache__/hashlib.cpython-311.pyc", + "lib/python3.11/__pycache__/heapq.cpython-311.pyc", + "lib/python3.11/__pycache__/hmac.cpython-311.pyc", + "lib/python3.11/__pycache__/imaplib.cpython-311.pyc", + "lib/python3.11/__pycache__/imghdr.cpython-311.pyc", + "lib/python3.11/__pycache__/imp.cpython-311.pyc", + "lib/python3.11/__pycache__/inspect.cpython-311.pyc", + "lib/python3.11/__pycache__/io.cpython-311.pyc", + "lib/python3.11/__pycache__/ipaddress.cpython-311.pyc", + "lib/python3.11/__pycache__/keyword.cpython-311.pyc", + "lib/python3.11/__pycache__/linecache.cpython-311.pyc", + "lib/python3.11/__pycache__/locale.cpython-311.pyc", + "lib/python3.11/__pycache__/lzma.cpython-311.pyc", + "lib/python3.11/__pycache__/mailbox.cpython-311.pyc", + "lib/python3.11/__pycache__/mailcap.cpython-311.pyc", + "lib/python3.11/__pycache__/mimetypes.cpython-311.pyc", + "lib/python3.11/__pycache__/modulefinder.cpython-311.pyc", + "lib/python3.11/__pycache__/netrc.cpython-311.pyc", + "lib/python3.11/__pycache__/nntplib.cpython-311.pyc", + "lib/python3.11/__pycache__/ntpath.cpython-311.pyc", + "lib/python3.11/__pycache__/nturl2path.cpython-311.pyc", + "lib/python3.11/__pycache__/numbers.cpython-311.pyc", + "lib/python3.11/__pycache__/opcode.cpython-311.pyc", + "lib/python3.11/__pycache__/operator.cpython-311.pyc", + "lib/python3.11/__pycache__/optparse.cpython-311.pyc", + "lib/python3.11/__pycache__/os.cpython-311.pyc", + "lib/python3.11/__pycache__/pathlib.cpython-311.pyc", + "lib/python3.11/__pycache__/pdb.cpython-311.pyc", + "lib/python3.11/__pycache__/pickle.cpython-311.pyc", + "lib/python3.11/__pycache__/pickletools.cpython-311.pyc", + "lib/python3.11/__pycache__/pipes.cpython-311.pyc", + "lib/python3.11/__pycache__/pkgutil.cpython-311.pyc", + "lib/python3.11/__pycache__/platform.cpython-311.pyc", + "lib/python3.11/__pycache__/plistlib.cpython-311.pyc", + "lib/python3.11/__pycache__/poplib.cpython-311.pyc", + "lib/python3.11/__pycache__/posixpath.cpython-311.pyc", + "lib/python3.11/__pycache__/pprint.cpython-311.pyc", + "lib/python3.11/__pycache__/profile.cpython-311.pyc", + "lib/python3.11/__pycache__/pstats.cpython-311.pyc", + "lib/python3.11/__pycache__/pty.cpython-311.pyc", + "lib/python3.11/__pycache__/py_compile.cpython-311.pyc", + "lib/python3.11/__pycache__/pyclbr.cpython-311.pyc", + "lib/python3.11/__pycache__/pydoc.cpython-311.pyc", + "lib/python3.11/__pycache__/queue.cpython-311.pyc", + "lib/python3.11/__pycache__/quopri.cpython-311.pyc", + "lib/python3.11/__pycache__/random.cpython-311.pyc", + "lib/python3.11/__pycache__/reprlib.cpython-311.pyc", + "lib/python3.11/__pycache__/rlcompleter.cpython-311.pyc", + "lib/python3.11/__pycache__/runpy.cpython-311.pyc", + "lib/python3.11/__pycache__/sched.cpython-311.pyc", + "lib/python3.11/__pycache__/secrets.cpython-311.pyc", + "lib/python3.11/__pycache__/selectors.cpython-311.pyc", + "lib/python3.11/__pycache__/shelve.cpython-311.pyc", + "lib/python3.11/__pycache__/shlex.cpython-311.pyc", + "lib/python3.11/__pycache__/shutil.cpython-311.pyc", + "lib/python3.11/__pycache__/signal.cpython-311.pyc", + "lib/python3.11/__pycache__/site.cpython-311.pyc", + "lib/python3.11/__pycache__/smtpd.cpython-311.pyc", + "lib/python3.11/__pycache__/smtplib.cpython-311.pyc", + "lib/python3.11/__pycache__/sndhdr.cpython-311.pyc", + "lib/python3.11/__pycache__/socket.cpython-311.pyc", + "lib/python3.11/__pycache__/socketserver.cpython-311.pyc", + "lib/python3.11/__pycache__/sre_compile.cpython-311.pyc", + "lib/python3.11/__pycache__/sre_constants.cpython-311.pyc", + "lib/python3.11/__pycache__/sre_parse.cpython-311.pyc", + "lib/python3.11/__pycache__/ssl.cpython-311.pyc", + "lib/python3.11/__pycache__/stat.cpython-311.pyc", + "lib/python3.11/__pycache__/statistics.cpython-311.pyc", + "lib/python3.11/__pycache__/string.cpython-311.pyc", + "lib/python3.11/__pycache__/stringprep.cpython-311.pyc", + "lib/python3.11/__pycache__/struct.cpython-311.pyc", + "lib/python3.11/__pycache__/subprocess.cpython-311.pyc", + "lib/python3.11/__pycache__/sunau.cpython-311.pyc", + "lib/python3.11/__pycache__/symtable.cpython-311.pyc", + "lib/python3.11/__pycache__/sysconfig.cpython-311.pyc", + "lib/python3.11/__pycache__/tabnanny.cpython-311.pyc", + "lib/python3.11/__pycache__/tarfile.cpython-311.pyc", + "lib/python3.11/__pycache__/telnetlib.cpython-311.pyc", + "lib/python3.11/__pycache__/tempfile.cpython-311.pyc", + "lib/python3.11/__pycache__/textwrap.cpython-311.pyc", + "lib/python3.11/__pycache__/this.cpython-311.pyc", + "lib/python3.11/__pycache__/threading.cpython-311.pyc", + "lib/python3.11/__pycache__/timeit.cpython-311.pyc", + "lib/python3.11/__pycache__/token.cpython-311.pyc", + "lib/python3.11/__pycache__/tokenize.cpython-311.pyc", + "lib/python3.11/__pycache__/trace.cpython-311.pyc", + "lib/python3.11/__pycache__/traceback.cpython-311.pyc", + "lib/python3.11/__pycache__/tracemalloc.cpython-311.pyc", + "lib/python3.11/__pycache__/tty.cpython-311.pyc", + "lib/python3.11/__pycache__/turtle.cpython-311.pyc", + "lib/python3.11/__pycache__/types.cpython-311.pyc", + "lib/python3.11/__pycache__/typing.cpython-311.pyc", + "lib/python3.11/__pycache__/uu.cpython-311.pyc", + "lib/python3.11/__pycache__/uuid.cpython-311.pyc", + "lib/python3.11/__pycache__/warnings.cpython-311.pyc", + "lib/python3.11/__pycache__/wave.cpython-311.pyc", + "lib/python3.11/__pycache__/weakref.cpython-311.pyc", + "lib/python3.11/__pycache__/webbrowser.cpython-311.pyc", + "lib/python3.11/__pycache__/xdrlib.cpython-311.pyc", + "lib/python3.11/__pycache__/zipapp.cpython-311.pyc", + "lib/python3.11/__pycache__/zipfile.cpython-311.pyc", + "lib/python3.11/__pycache__/zipimport.cpython-311.pyc", + "lib/python3.11/_aix_support.py", + "lib/python3.11/_bootsubprocess.py", + "lib/python3.11/_collections_abc.py", + "lib/python3.11/_compat_pickle.py", + "lib/python3.11/_compression.py", + "lib/python3.11/_markupbase.py", + "lib/python3.11/_osx_support.py", + "lib/python3.11/_py_abc.py", + "lib/python3.11/_pydecimal.py", + "lib/python3.11/_pyio.py", + "lib/python3.11/_sitebuiltins.py", + "lib/python3.11/_strptime.py", + "lib/python3.11/_sysconfigdata__darwin_darwin.py", + "lib/python3.11/_sysconfigdata__darwin_darwin.py.orig", + "lib/python3.11/_sysconfigdata_arm64_apple_darwin20_0_0.py", + "lib/python3.11/_threading_local.py", + "lib/python3.11/_weakrefset.py", + "lib/python3.11/abc.py", + "lib/python3.11/aifc.py", + "lib/python3.11/antigravity.py", + "lib/python3.11/argparse.py", + "lib/python3.11/ast.py", + "lib/python3.11/asynchat.py", + "lib/python3.11/asyncio/__init__.py", + "lib/python3.11/asyncio/__main__.py", + "lib/python3.11/asyncio/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/base_events.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/base_futures.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/base_subprocess.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/base_tasks.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/constants.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/coroutines.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/events.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/exceptions.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/format_helpers.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/futures.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/locks.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/log.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/mixins.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/proactor_events.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/protocols.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/queues.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/runners.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/selector_events.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/sslproto.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/staggered.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/streams.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/subprocess.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/taskgroups.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/tasks.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/threads.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/timeouts.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/transports.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/trsock.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/unix_events.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/windows_events.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/windows_utils.cpython-311.pyc", + "lib/python3.11/asyncio/base_events.py", + "lib/python3.11/asyncio/base_futures.py", + "lib/python3.11/asyncio/base_subprocess.py", + "lib/python3.11/asyncio/base_tasks.py", + "lib/python3.11/asyncio/constants.py", + "lib/python3.11/asyncio/coroutines.py", + "lib/python3.11/asyncio/events.py", + "lib/python3.11/asyncio/exceptions.py", + "lib/python3.11/asyncio/format_helpers.py", + "lib/python3.11/asyncio/futures.py", + "lib/python3.11/asyncio/locks.py", + "lib/python3.11/asyncio/log.py", + "lib/python3.11/asyncio/mixins.py", + "lib/python3.11/asyncio/proactor_events.py", + "lib/python3.11/asyncio/protocols.py", + "lib/python3.11/asyncio/queues.py", + "lib/python3.11/asyncio/runners.py", + "lib/python3.11/asyncio/selector_events.py", + "lib/python3.11/asyncio/sslproto.py", + "lib/python3.11/asyncio/staggered.py", + "lib/python3.11/asyncio/streams.py", + "lib/python3.11/asyncio/subprocess.py", + "lib/python3.11/asyncio/taskgroups.py", + "lib/python3.11/asyncio/tasks.py", + "lib/python3.11/asyncio/threads.py", + "lib/python3.11/asyncio/timeouts.py", + "lib/python3.11/asyncio/transports.py", + "lib/python3.11/asyncio/trsock.py", + "lib/python3.11/asyncio/unix_events.py", + "lib/python3.11/asyncio/windows_events.py", + "lib/python3.11/asyncio/windows_utils.py", + "lib/python3.11/asyncore.py", + "lib/python3.11/base64.py", + "lib/python3.11/bdb.py", + "lib/python3.11/bisect.py", + "lib/python3.11/bz2.py", + "lib/python3.11/cProfile.py", + "lib/python3.11/calendar.py", + "lib/python3.11/cgi.py", + "lib/python3.11/cgitb.py", + "lib/python3.11/chunk.py", + "lib/python3.11/cmd.py", + "lib/python3.11/code.py", + "lib/python3.11/codecs.py", + "lib/python3.11/codeop.py", + "lib/python3.11/collections/__init__.py", + "lib/python3.11/collections/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/collections/__pycache__/abc.cpython-311.pyc", + "lib/python3.11/collections/abc.py", + "lib/python3.11/colorsys.py", + "lib/python3.11/compileall.py", + "lib/python3.11/concurrent/__init__.py", + "lib/python3.11/concurrent/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/concurrent/futures/__init__.py", + "lib/python3.11/concurrent/futures/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/concurrent/futures/__pycache__/_base.cpython-311.pyc", + "lib/python3.11/concurrent/futures/__pycache__/process.cpython-311.pyc", + "lib/python3.11/concurrent/futures/__pycache__/thread.cpython-311.pyc", + "lib/python3.11/concurrent/futures/_base.py", + "lib/python3.11/concurrent/futures/process.py", + "lib/python3.11/concurrent/futures/thread.py", + "lib/python3.11/config-3.11-darwin/Makefile", + "lib/python3.11/config-3.11-darwin/Setup", + "lib/python3.11/config-3.11-darwin/Setup.bootstrap", + "lib/python3.11/config-3.11-darwin/Setup.local", + "lib/python3.11/config-3.11-darwin/Setup.stdlib", + "lib/python3.11/config-3.11-darwin/__pycache__/python-config.cpython-311.pyc", + "lib/python3.11/config-3.11-darwin/config.c", + "lib/python3.11/config-3.11-darwin/config.c.in", + "lib/python3.11/config-3.11-darwin/install-sh", + "lib/python3.11/config-3.11-darwin/makesetup", + "lib/python3.11/config-3.11-darwin/python-config.py", + "lib/python3.11/config-3.11-darwin/python.o", + "lib/python3.11/configparser.py", + "lib/python3.11/contextlib.py", + "lib/python3.11/contextvars.py", + "lib/python3.11/copy.py", + "lib/python3.11/copyreg.py", + "lib/python3.11/crypt.py", + "lib/python3.11/csv.py", + "lib/python3.11/ctypes/__init__.py", + "lib/python3.11/ctypes/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/ctypes/__pycache__/_aix.cpython-311.pyc", + "lib/python3.11/ctypes/__pycache__/_endian.cpython-311.pyc", + "lib/python3.11/ctypes/__pycache__/util.cpython-311.pyc", + "lib/python3.11/ctypes/__pycache__/wintypes.cpython-311.pyc", + "lib/python3.11/ctypes/_aix.py", + "lib/python3.11/ctypes/_endian.py", + "lib/python3.11/ctypes/macholib/README.ctypes", + "lib/python3.11/ctypes/macholib/__init__.py", + "lib/python3.11/ctypes/macholib/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/ctypes/macholib/__pycache__/dyld.cpython-311.pyc", + "lib/python3.11/ctypes/macholib/__pycache__/dylib.cpython-311.pyc", + "lib/python3.11/ctypes/macholib/__pycache__/framework.cpython-311.pyc", + "lib/python3.11/ctypes/macholib/dyld.py", + "lib/python3.11/ctypes/macholib/dylib.py", + "lib/python3.11/ctypes/macholib/fetch_macholib", + "lib/python3.11/ctypes/macholib/fetch_macholib.bat", + "lib/python3.11/ctypes/macholib/framework.py", + "lib/python3.11/ctypes/util.py", + "lib/python3.11/ctypes/wintypes.py", + "lib/python3.11/curses/__init__.py", + "lib/python3.11/curses/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/curses/__pycache__/ascii.cpython-311.pyc", + "lib/python3.11/curses/__pycache__/has_key.cpython-311.pyc", + "lib/python3.11/curses/__pycache__/panel.cpython-311.pyc", + "lib/python3.11/curses/__pycache__/textpad.cpython-311.pyc", + "lib/python3.11/curses/ascii.py", + "lib/python3.11/curses/has_key.py", + "lib/python3.11/curses/panel.py", + "lib/python3.11/curses/textpad.py", + "lib/python3.11/dataclasses.py", + "lib/python3.11/datetime.py", + "lib/python3.11/dbm/__init__.py", + "lib/python3.11/dbm/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/dbm/__pycache__/dumb.cpython-311.pyc", + "lib/python3.11/dbm/__pycache__/gnu.cpython-311.pyc", + "lib/python3.11/dbm/__pycache__/ndbm.cpython-311.pyc", + "lib/python3.11/dbm/dumb.py", + "lib/python3.11/dbm/gnu.py", + "lib/python3.11/dbm/ndbm.py", + "lib/python3.11/decimal.py", + "lib/python3.11/difflib.py", + "lib/python3.11/dis.py", + "lib/python3.11/distutils/README", + "lib/python3.11/distutils/__init__.py", + "lib/python3.11/distutils/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/_msvccompiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/archive_util.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/bcppcompiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/ccompiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/cmd.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/config.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/core.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/cygwinccompiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/debug.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/dep_util.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/dir_util.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/dist.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/errors.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/extension.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/fancy_getopt.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/file_util.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/filelist.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/log.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/msvc9compiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/msvccompiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/spawn.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/sysconfig.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/text_file.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/unixccompiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/util.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/version.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/versionpredicate.cpython-311.pyc", + "lib/python3.11/distutils/_msvccompiler.py", + "lib/python3.11/distutils/archive_util.py", + "lib/python3.11/distutils/bcppcompiler.py", + "lib/python3.11/distutils/ccompiler.py", + "lib/python3.11/distutils/cmd.py", + "lib/python3.11/distutils/command/__init__.py", + "lib/python3.11/distutils/command/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/bdist.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/bdist_dumb.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/bdist_rpm.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/build.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/build_clib.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/build_ext.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/build_py.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/build_scripts.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/check.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/clean.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/config.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/install.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/install_data.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/install_egg_info.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/install_headers.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/install_lib.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/install_scripts.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/register.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/sdist.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/upload.cpython-311.pyc", + "lib/python3.11/distutils/command/bdist.py", + "lib/python3.11/distutils/command/bdist_dumb.py", + "lib/python3.11/distutils/command/bdist_rpm.py", + "lib/python3.11/distutils/command/build.py", + "lib/python3.11/distutils/command/build_clib.py", + "lib/python3.11/distutils/command/build_ext.py", + "lib/python3.11/distutils/command/build_py.py", + "lib/python3.11/distutils/command/build_scripts.py", + "lib/python3.11/distutils/command/check.py", + "lib/python3.11/distutils/command/clean.py", + "lib/python3.11/distutils/command/command_template", + "lib/python3.11/distutils/command/config.py", + "lib/python3.11/distutils/command/install.py", + "lib/python3.11/distutils/command/install_data.py", + "lib/python3.11/distutils/command/install_egg_info.py", + "lib/python3.11/distutils/command/install_headers.py", + "lib/python3.11/distutils/command/install_lib.py", + "lib/python3.11/distutils/command/install_scripts.py", + "lib/python3.11/distutils/command/register.py", + "lib/python3.11/distutils/command/sdist.py", + "lib/python3.11/distutils/command/upload.py", + "lib/python3.11/distutils/config.py", + "lib/python3.11/distutils/core.py", + "lib/python3.11/distutils/cygwinccompiler.py", + "lib/python3.11/distutils/debug.py", + "lib/python3.11/distutils/dep_util.py", + "lib/python3.11/distutils/dir_util.py", + "lib/python3.11/distutils/dist.py", + "lib/python3.11/distutils/errors.py", + "lib/python3.11/distutils/extension.py", + "lib/python3.11/distutils/fancy_getopt.py", + "lib/python3.11/distutils/file_util.py", + "lib/python3.11/distutils/filelist.py", + "lib/python3.11/distutils/log.py", + "lib/python3.11/distutils/msvc9compiler.py", + "lib/python3.11/distutils/msvccompiler.py", + "lib/python3.11/distutils/spawn.py", + "lib/python3.11/distutils/sysconfig.py", + "lib/python3.11/distutils/tests/Setup.sample", + "lib/python3.11/distutils/tests/__init__.py", + "lib/python3.11/distutils/tests/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/support.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_archive_util.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_bdist.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_bdist_dumb.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_bdist_rpm.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_build.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_build_clib.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_build_ext.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_build_py.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_build_scripts.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_check.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_clean.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_cmd.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_config.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_config_cmd.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_core.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_cygwinccompiler.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_dep_util.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_dir_util.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_dist.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_extension.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_file_util.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_filelist.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_install.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_install_data.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_install_headers.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_install_lib.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_install_scripts.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_log.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_msvc9compiler.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_msvccompiler.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_register.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_sdist.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_spawn.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_sysconfig.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_text_file.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_unixccompiler.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_upload.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_util.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_version.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_versionpredicate.cpython-311.pyc", + "lib/python3.11/distutils/tests/includetest.rst", + "lib/python3.11/distutils/tests/support.py", + "lib/python3.11/distutils/tests/test_archive_util.py", + "lib/python3.11/distutils/tests/test_bdist.py", + "lib/python3.11/distutils/tests/test_bdist_dumb.py", + "lib/python3.11/distutils/tests/test_bdist_rpm.py", + "lib/python3.11/distutils/tests/test_build.py", + "lib/python3.11/distutils/tests/test_build_clib.py", + "lib/python3.11/distutils/tests/test_build_ext.py", + "lib/python3.11/distutils/tests/test_build_py.py", + "lib/python3.11/distutils/tests/test_build_scripts.py", + "lib/python3.11/distutils/tests/test_check.py", + "lib/python3.11/distutils/tests/test_clean.py", + "lib/python3.11/distutils/tests/test_cmd.py", + "lib/python3.11/distutils/tests/test_config.py", + "lib/python3.11/distutils/tests/test_config_cmd.py", + "lib/python3.11/distutils/tests/test_core.py", + "lib/python3.11/distutils/tests/test_cygwinccompiler.py", + "lib/python3.11/distutils/tests/test_dep_util.py", + "lib/python3.11/distutils/tests/test_dir_util.py", + "lib/python3.11/distutils/tests/test_dist.py", + "lib/python3.11/distutils/tests/test_extension.py", + "lib/python3.11/distutils/tests/test_file_util.py", + "lib/python3.11/distutils/tests/test_filelist.py", + "lib/python3.11/distutils/tests/test_install.py", + "lib/python3.11/distutils/tests/test_install_data.py", + "lib/python3.11/distutils/tests/test_install_headers.py", + "lib/python3.11/distutils/tests/test_install_lib.py", + "lib/python3.11/distutils/tests/test_install_scripts.py", + "lib/python3.11/distutils/tests/test_log.py", + "lib/python3.11/distutils/tests/test_msvc9compiler.py", + "lib/python3.11/distutils/tests/test_msvccompiler.py", + "lib/python3.11/distutils/tests/test_register.py", + "lib/python3.11/distutils/tests/test_sdist.py", + "lib/python3.11/distutils/tests/test_spawn.py", + "lib/python3.11/distutils/tests/test_sysconfig.py", + "lib/python3.11/distutils/tests/test_text_file.py", + "lib/python3.11/distutils/tests/test_unixccompiler.py", + "lib/python3.11/distutils/tests/test_upload.py", + "lib/python3.11/distutils/tests/test_util.py", + "lib/python3.11/distutils/tests/test_version.py", + "lib/python3.11/distutils/tests/test_versionpredicate.py", + "lib/python3.11/distutils/tests/xxmodule.c", + "lib/python3.11/distutils/text_file.py", + "lib/python3.11/distutils/unixccompiler.py", + "lib/python3.11/distutils/util.py", + "lib/python3.11/distutils/version.py", + "lib/python3.11/distutils/versionpredicate.py", + "lib/python3.11/doctest.py", + "lib/python3.11/email/__init__.py", + "lib/python3.11/email/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/email/__pycache__/_encoded_words.cpython-311.pyc", + "lib/python3.11/email/__pycache__/_header_value_parser.cpython-311.pyc", + "lib/python3.11/email/__pycache__/_parseaddr.cpython-311.pyc", + "lib/python3.11/email/__pycache__/_policybase.cpython-311.pyc", + "lib/python3.11/email/__pycache__/base64mime.cpython-311.pyc", + "lib/python3.11/email/__pycache__/charset.cpython-311.pyc", + "lib/python3.11/email/__pycache__/contentmanager.cpython-311.pyc", + "lib/python3.11/email/__pycache__/encoders.cpython-311.pyc", + "lib/python3.11/email/__pycache__/errors.cpython-311.pyc", + "lib/python3.11/email/__pycache__/feedparser.cpython-311.pyc", + "lib/python3.11/email/__pycache__/generator.cpython-311.pyc", + "lib/python3.11/email/__pycache__/header.cpython-311.pyc", + "lib/python3.11/email/__pycache__/headerregistry.cpython-311.pyc", + "lib/python3.11/email/__pycache__/iterators.cpython-311.pyc", + "lib/python3.11/email/__pycache__/message.cpython-311.pyc", + "lib/python3.11/email/__pycache__/parser.cpython-311.pyc", + "lib/python3.11/email/__pycache__/policy.cpython-311.pyc", + "lib/python3.11/email/__pycache__/quoprimime.cpython-311.pyc", + "lib/python3.11/email/__pycache__/utils.cpython-311.pyc", + "lib/python3.11/email/_encoded_words.py", + "lib/python3.11/email/_header_value_parser.py", + "lib/python3.11/email/_parseaddr.py", + "lib/python3.11/email/_policybase.py", + "lib/python3.11/email/architecture.rst", + "lib/python3.11/email/base64mime.py", + "lib/python3.11/email/charset.py", + "lib/python3.11/email/contentmanager.py", + "lib/python3.11/email/encoders.py", + "lib/python3.11/email/errors.py", + "lib/python3.11/email/feedparser.py", + "lib/python3.11/email/generator.py", + "lib/python3.11/email/header.py", + "lib/python3.11/email/headerregistry.py", + "lib/python3.11/email/iterators.py", + "lib/python3.11/email/message.py", + "lib/python3.11/email/mime/__init__.py", + "lib/python3.11/email/mime/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/application.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/audio.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/base.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/image.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/message.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/multipart.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/nonmultipart.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/text.cpython-311.pyc", + "lib/python3.11/email/mime/application.py", + "lib/python3.11/email/mime/audio.py", + "lib/python3.11/email/mime/base.py", + "lib/python3.11/email/mime/image.py", + "lib/python3.11/email/mime/message.py", + "lib/python3.11/email/mime/multipart.py", + "lib/python3.11/email/mime/nonmultipart.py", + "lib/python3.11/email/mime/text.py", + "lib/python3.11/email/parser.py", + "lib/python3.11/email/policy.py", + "lib/python3.11/email/quoprimime.py", + "lib/python3.11/email/utils.py", + "lib/python3.11/encodings/__init__.py", + "lib/python3.11/encodings/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/aliases.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/ascii.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/base64_codec.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/big5.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/big5hkscs.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/bz2_codec.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/charmap.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp037.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1006.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1026.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1125.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1140.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1250.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1251.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1252.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1253.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1254.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1255.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1256.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1257.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1258.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp273.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp424.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp437.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp500.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp720.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp737.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp775.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp850.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp852.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp855.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp856.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp857.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp858.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp860.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp861.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp862.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp863.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp864.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp865.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp866.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp869.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp874.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp875.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp932.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp949.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp950.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/euc_jis_2004.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/euc_jisx0213.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/euc_jp.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/euc_kr.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/gb18030.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/gb2312.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/gbk.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/hex_codec.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/hp_roman8.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/hz.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/idna.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_jp.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_jp_1.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_jp_2.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_jp_2004.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_jp_3.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_jp_ext.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_kr.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_1.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_10.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_11.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_13.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_14.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_15.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_16.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_2.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_3.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_4.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_5.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_6.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_7.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_8.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_9.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/johab.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/koi8_r.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/koi8_t.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/koi8_u.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/kz1048.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/latin_1.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_arabic.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_croatian.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_cyrillic.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_farsi.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_greek.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_iceland.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_latin2.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_roman.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_romanian.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_turkish.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mbcs.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/oem.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/palmos.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/ptcp154.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/punycode.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/quopri_codec.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/raw_unicode_escape.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/rot_13.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/shift_jis.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/shift_jis_2004.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/shift_jisx0213.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/tis_620.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/undefined.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/unicode_escape.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_16.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_16_be.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_16_le.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_32.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_32_be.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_32_le.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_7.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_8.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_8_sig.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/uu_codec.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/zlib_codec.cpython-311.pyc", + "lib/python3.11/encodings/aliases.py", + "lib/python3.11/encodings/ascii.py", + "lib/python3.11/encodings/base64_codec.py", + "lib/python3.11/encodings/big5.py", + "lib/python3.11/encodings/big5hkscs.py", + "lib/python3.11/encodings/bz2_codec.py", + "lib/python3.11/encodings/charmap.py", + "lib/python3.11/encodings/cp037.py", + "lib/python3.11/encodings/cp1006.py", + "lib/python3.11/encodings/cp1026.py", + "lib/python3.11/encodings/cp1125.py", + "lib/python3.11/encodings/cp1140.py", + "lib/python3.11/encodings/cp1250.py", + "lib/python3.11/encodings/cp1251.py", + "lib/python3.11/encodings/cp1252.py", + "lib/python3.11/encodings/cp1253.py", + "lib/python3.11/encodings/cp1254.py", + "lib/python3.11/encodings/cp1255.py", + "lib/python3.11/encodings/cp1256.py", + "lib/python3.11/encodings/cp1257.py", + "lib/python3.11/encodings/cp1258.py", + "lib/python3.11/encodings/cp273.py", + "lib/python3.11/encodings/cp424.py", + "lib/python3.11/encodings/cp437.py", + "lib/python3.11/encodings/cp500.py", + "lib/python3.11/encodings/cp720.py", + "lib/python3.11/encodings/cp737.py", + "lib/python3.11/encodings/cp775.py", + "lib/python3.11/encodings/cp850.py", + "lib/python3.11/encodings/cp852.py", + "lib/python3.11/encodings/cp855.py", + "lib/python3.11/encodings/cp856.py", + "lib/python3.11/encodings/cp857.py", + "lib/python3.11/encodings/cp858.py", + "lib/python3.11/encodings/cp860.py", + "lib/python3.11/encodings/cp861.py", + "lib/python3.11/encodings/cp862.py", + "lib/python3.11/encodings/cp863.py", + "lib/python3.11/encodings/cp864.py", + "lib/python3.11/encodings/cp865.py", + "lib/python3.11/encodings/cp866.py", + "lib/python3.11/encodings/cp869.py", + "lib/python3.11/encodings/cp874.py", + "lib/python3.11/encodings/cp875.py", + "lib/python3.11/encodings/cp932.py", + "lib/python3.11/encodings/cp949.py", + "lib/python3.11/encodings/cp950.py", + "lib/python3.11/encodings/euc_jis_2004.py", + "lib/python3.11/encodings/euc_jisx0213.py", + "lib/python3.11/encodings/euc_jp.py", + "lib/python3.11/encodings/euc_kr.py", + "lib/python3.11/encodings/gb18030.py", + "lib/python3.11/encodings/gb2312.py", + "lib/python3.11/encodings/gbk.py", + "lib/python3.11/encodings/hex_codec.py", + "lib/python3.11/encodings/hp_roman8.py", + "lib/python3.11/encodings/hz.py", + "lib/python3.11/encodings/idna.py", + "lib/python3.11/encodings/iso2022_jp.py", + "lib/python3.11/encodings/iso2022_jp_1.py", + "lib/python3.11/encodings/iso2022_jp_2.py", + "lib/python3.11/encodings/iso2022_jp_2004.py", + "lib/python3.11/encodings/iso2022_jp_3.py", + "lib/python3.11/encodings/iso2022_jp_ext.py", + "lib/python3.11/encodings/iso2022_kr.py", + "lib/python3.11/encodings/iso8859_1.py", + "lib/python3.11/encodings/iso8859_10.py", + "lib/python3.11/encodings/iso8859_11.py", + "lib/python3.11/encodings/iso8859_13.py", + "lib/python3.11/encodings/iso8859_14.py", + "lib/python3.11/encodings/iso8859_15.py", + "lib/python3.11/encodings/iso8859_16.py", + "lib/python3.11/encodings/iso8859_2.py", + "lib/python3.11/encodings/iso8859_3.py", + "lib/python3.11/encodings/iso8859_4.py", + "lib/python3.11/encodings/iso8859_5.py", + "lib/python3.11/encodings/iso8859_6.py", + "lib/python3.11/encodings/iso8859_7.py", + "lib/python3.11/encodings/iso8859_8.py", + "lib/python3.11/encodings/iso8859_9.py", + "lib/python3.11/encodings/johab.py", + "lib/python3.11/encodings/koi8_r.py", + "lib/python3.11/encodings/koi8_t.py", + "lib/python3.11/encodings/koi8_u.py", + "lib/python3.11/encodings/kz1048.py", + "lib/python3.11/encodings/latin_1.py", + "lib/python3.11/encodings/mac_arabic.py", + "lib/python3.11/encodings/mac_croatian.py", + "lib/python3.11/encodings/mac_cyrillic.py", + "lib/python3.11/encodings/mac_farsi.py", + "lib/python3.11/encodings/mac_greek.py", + "lib/python3.11/encodings/mac_iceland.py", + "lib/python3.11/encodings/mac_latin2.py", + "lib/python3.11/encodings/mac_roman.py", + "lib/python3.11/encodings/mac_romanian.py", + "lib/python3.11/encodings/mac_turkish.py", + "lib/python3.11/encodings/mbcs.py", + "lib/python3.11/encodings/oem.py", + "lib/python3.11/encodings/palmos.py", + "lib/python3.11/encodings/ptcp154.py", + "lib/python3.11/encodings/punycode.py", + "lib/python3.11/encodings/quopri_codec.py", + "lib/python3.11/encodings/raw_unicode_escape.py", + "lib/python3.11/encodings/rot_13.py", + "lib/python3.11/encodings/shift_jis.py", + "lib/python3.11/encodings/shift_jis_2004.py", + "lib/python3.11/encodings/shift_jisx0213.py", + "lib/python3.11/encodings/tis_620.py", + "lib/python3.11/encodings/undefined.py", + "lib/python3.11/encodings/unicode_escape.py", + "lib/python3.11/encodings/utf_16.py", + "lib/python3.11/encodings/utf_16_be.py", + "lib/python3.11/encodings/utf_16_le.py", + "lib/python3.11/encodings/utf_32.py", + "lib/python3.11/encodings/utf_32_be.py", + "lib/python3.11/encodings/utf_32_le.py", + "lib/python3.11/encodings/utf_7.py", + "lib/python3.11/encodings/utf_8.py", + "lib/python3.11/encodings/utf_8_sig.py", + "lib/python3.11/encodings/uu_codec.py", + "lib/python3.11/encodings/zlib_codec.py", + "lib/python3.11/ensurepip/__init__.py", + "lib/python3.11/ensurepip/__main__.py", + "lib/python3.11/ensurepip/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/ensurepip/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/ensurepip/__pycache__/_uninstall.cpython-311.pyc", + "lib/python3.11/ensurepip/_bundled/pip-23.2.1-py3-none-any.whl", + "lib/python3.11/ensurepip/_bundled/setuptools-65.5.0-py3-none-any.whl", + "lib/python3.11/ensurepip/_uninstall.py", + "lib/python3.11/enum.py", + "lib/python3.11/filecmp.py", + "lib/python3.11/fileinput.py", + "lib/python3.11/fnmatch.py", + "lib/python3.11/fractions.py", + "lib/python3.11/ftplib.py", + "lib/python3.11/functools.py", + "lib/python3.11/genericpath.py", + "lib/python3.11/getopt.py", + "lib/python3.11/getpass.py", + "lib/python3.11/gettext.py", + "lib/python3.11/glob.py", + "lib/python3.11/graphlib.py", + "lib/python3.11/gzip.py", + "lib/python3.11/hashlib.py", + "lib/python3.11/heapq.py", + "lib/python3.11/hmac.py", + "lib/python3.11/html/__init__.py", + "lib/python3.11/html/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/html/__pycache__/entities.cpython-311.pyc", + "lib/python3.11/html/__pycache__/parser.cpython-311.pyc", + "lib/python3.11/html/entities.py", + "lib/python3.11/html/parser.py", + "lib/python3.11/http/__init__.py", + "lib/python3.11/http/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/http/__pycache__/client.cpython-311.pyc", + "lib/python3.11/http/__pycache__/cookiejar.cpython-311.pyc", + "lib/python3.11/http/__pycache__/cookies.cpython-311.pyc", + "lib/python3.11/http/__pycache__/server.cpython-311.pyc", + "lib/python3.11/http/client.py", + "lib/python3.11/http/cookiejar.py", + "lib/python3.11/http/cookies.py", + "lib/python3.11/http/server.py", + "lib/python3.11/idlelib/CREDITS.txt", + "lib/python3.11/idlelib/ChangeLog", + "lib/python3.11/idlelib/HISTORY.txt", + "lib/python3.11/idlelib/Icons/README.txt", + "lib/python3.11/idlelib/Icons/folder.gif", + "lib/python3.11/idlelib/Icons/idle.ico", + "lib/python3.11/idlelib/Icons/idle_16.gif", + "lib/python3.11/idlelib/Icons/idle_16.png", + "lib/python3.11/idlelib/Icons/idle_256.png", + "lib/python3.11/idlelib/Icons/idle_32.gif", + "lib/python3.11/idlelib/Icons/idle_32.png", + "lib/python3.11/idlelib/Icons/idle_48.gif", + "lib/python3.11/idlelib/Icons/idle_48.png", + "lib/python3.11/idlelib/Icons/minusnode.gif", + "lib/python3.11/idlelib/Icons/openfolder.gif", + "lib/python3.11/idlelib/Icons/plusnode.gif", + "lib/python3.11/idlelib/Icons/python.gif", + "lib/python3.11/idlelib/Icons/tk.gif", + "lib/python3.11/idlelib/NEWS.txt", + "lib/python3.11/idlelib/NEWS2x.txt", + "lib/python3.11/idlelib/README.txt", + "lib/python3.11/idlelib/TODO.txt", + "lib/python3.11/idlelib/__init__.py", + "lib/python3.11/idlelib/__main__.py", + "lib/python3.11/idlelib/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/autocomplete.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/autocomplete_w.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/autoexpand.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/browser.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/calltip.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/calltip_w.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/codecontext.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/colorizer.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/config.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/config_key.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/configdialog.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/debugger.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/debugger_r.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/debugobj.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/debugobj_r.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/delegator.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/dynoption.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/editor.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/filelist.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/format.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/grep.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/help.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/help_about.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/history.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/hyperparser.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/idle.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/iomenu.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/macosx.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/mainmenu.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/multicall.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/outwin.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/parenmatch.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/pathbrowser.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/percolator.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/pyparse.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/pyshell.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/query.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/redirector.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/replace.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/rpc.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/run.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/runscript.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/scrolledlist.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/search.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/searchbase.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/searchengine.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/sidebar.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/squeezer.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/stackviewer.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/statusbar.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/textview.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/tooltip.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/tree.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/undo.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/util.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/window.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/zoomheight.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/zzdummy.cpython-311.pyc", + "lib/python3.11/idlelib/autocomplete.py", + "lib/python3.11/idlelib/autocomplete_w.py", + "lib/python3.11/idlelib/autoexpand.py", + "lib/python3.11/idlelib/browser.py", + "lib/python3.11/idlelib/calltip.py", + "lib/python3.11/idlelib/calltip_w.py", + "lib/python3.11/idlelib/codecontext.py", + "lib/python3.11/idlelib/colorizer.py", + "lib/python3.11/idlelib/config-extensions.def", + "lib/python3.11/idlelib/config-highlight.def", + "lib/python3.11/idlelib/config-keys.def", + "lib/python3.11/idlelib/config-main.def", + "lib/python3.11/idlelib/config.py", + "lib/python3.11/idlelib/config_key.py", + "lib/python3.11/idlelib/configdialog.py", + "lib/python3.11/idlelib/debugger.py", + "lib/python3.11/idlelib/debugger_r.py", + "lib/python3.11/idlelib/debugobj.py", + "lib/python3.11/idlelib/debugobj_r.py", + "lib/python3.11/idlelib/delegator.py", + "lib/python3.11/idlelib/dynoption.py", + "lib/python3.11/idlelib/editor.py", + "lib/python3.11/idlelib/extend.txt", + "lib/python3.11/idlelib/filelist.py", + "lib/python3.11/idlelib/format.py", + "lib/python3.11/idlelib/grep.py", + "lib/python3.11/idlelib/help.html", + "lib/python3.11/idlelib/help.py", + "lib/python3.11/idlelib/help_about.py", + "lib/python3.11/idlelib/history.py", + "lib/python3.11/idlelib/hyperparser.py", + "lib/python3.11/idlelib/idle.bat", + "lib/python3.11/idlelib/idle.py", + "lib/python3.11/idlelib/idle.pyw", + "lib/python3.11/idlelib/idle_test/README.txt", + "lib/python3.11/idlelib/idle_test/__init__.py", + "lib/python3.11/idlelib/idle_test/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/htest.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/mock_idle.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/mock_tk.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/template.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_autocomplete.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_autocomplete_w.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_autoexpand.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_browser.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_calltip.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_calltip_w.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_codecontext.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_colorizer.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_config.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_config_key.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_configdialog.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_debugger.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_debugger_r.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_debugobj.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_debugobj_r.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_delegator.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_editmenu.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_editor.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_filelist.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_format.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_grep.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_help.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_help_about.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_history.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_hyperparser.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_iomenu.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_macosx.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_mainmenu.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_multicall.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_outwin.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_parenmatch.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_pathbrowser.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_percolator.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_pyparse.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_pyshell.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_query.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_redirector.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_replace.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_rpc.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_run.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_runscript.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_scrolledlist.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_search.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_searchbase.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_searchengine.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_sidebar.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_squeezer.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_stackviewer.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_statusbar.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_text.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_textview.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_tooltip.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_tree.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_undo.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_util.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_warning.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_window.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_zoomheight.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_zzdummy.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/tkinter_testing_utils.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/example_noext", + "lib/python3.11/idlelib/idle_test/example_stub.pyi", + "lib/python3.11/idlelib/idle_test/htest.py", + "lib/python3.11/idlelib/idle_test/mock_idle.py", + "lib/python3.11/idlelib/idle_test/mock_tk.py", + "lib/python3.11/idlelib/idle_test/template.py", + "lib/python3.11/idlelib/idle_test/test_autocomplete.py", + "lib/python3.11/idlelib/idle_test/test_autocomplete_w.py", + "lib/python3.11/idlelib/idle_test/test_autoexpand.py", + "lib/python3.11/idlelib/idle_test/test_browser.py", + "lib/python3.11/idlelib/idle_test/test_calltip.py", + "lib/python3.11/idlelib/idle_test/test_calltip_w.py", + "lib/python3.11/idlelib/idle_test/test_codecontext.py", + "lib/python3.11/idlelib/idle_test/test_colorizer.py", + "lib/python3.11/idlelib/idle_test/test_config.py", + "lib/python3.11/idlelib/idle_test/test_config_key.py", + "lib/python3.11/idlelib/idle_test/test_configdialog.py", + "lib/python3.11/idlelib/idle_test/test_debugger.py", + "lib/python3.11/idlelib/idle_test/test_debugger_r.py", + "lib/python3.11/idlelib/idle_test/test_debugobj.py", + "lib/python3.11/idlelib/idle_test/test_debugobj_r.py", + "lib/python3.11/idlelib/idle_test/test_delegator.py", + "lib/python3.11/idlelib/idle_test/test_editmenu.py", + "lib/python3.11/idlelib/idle_test/test_editor.py", + "lib/python3.11/idlelib/idle_test/test_filelist.py", + "lib/python3.11/idlelib/idle_test/test_format.py", + "lib/python3.11/idlelib/idle_test/test_grep.py", + "lib/python3.11/idlelib/idle_test/test_help.py", + "lib/python3.11/idlelib/idle_test/test_help_about.py", + "lib/python3.11/idlelib/idle_test/test_history.py", + "lib/python3.11/idlelib/idle_test/test_hyperparser.py", + "lib/python3.11/idlelib/idle_test/test_iomenu.py", + "lib/python3.11/idlelib/idle_test/test_macosx.py", + "lib/python3.11/idlelib/idle_test/test_mainmenu.py", + "lib/python3.11/idlelib/idle_test/test_multicall.py", + "lib/python3.11/idlelib/idle_test/test_outwin.py", + "lib/python3.11/idlelib/idle_test/test_parenmatch.py", + "lib/python3.11/idlelib/idle_test/test_pathbrowser.py", + "lib/python3.11/idlelib/idle_test/test_percolator.py", + "lib/python3.11/idlelib/idle_test/test_pyparse.py", + "lib/python3.11/idlelib/idle_test/test_pyshell.py", + "lib/python3.11/idlelib/idle_test/test_query.py", + "lib/python3.11/idlelib/idle_test/test_redirector.py", + "lib/python3.11/idlelib/idle_test/test_replace.py", + "lib/python3.11/idlelib/idle_test/test_rpc.py", + "lib/python3.11/idlelib/idle_test/test_run.py", + "lib/python3.11/idlelib/idle_test/test_runscript.py", + "lib/python3.11/idlelib/idle_test/test_scrolledlist.py", + "lib/python3.11/idlelib/idle_test/test_search.py", + "lib/python3.11/idlelib/idle_test/test_searchbase.py", + "lib/python3.11/idlelib/idle_test/test_searchengine.py", + "lib/python3.11/idlelib/idle_test/test_sidebar.py", + "lib/python3.11/idlelib/idle_test/test_squeezer.py", + "lib/python3.11/idlelib/idle_test/test_stackviewer.py", + "lib/python3.11/idlelib/idle_test/test_statusbar.py", + "lib/python3.11/idlelib/idle_test/test_text.py", + "lib/python3.11/idlelib/idle_test/test_textview.py", + "lib/python3.11/idlelib/idle_test/test_tooltip.py", + "lib/python3.11/idlelib/idle_test/test_tree.py", + "lib/python3.11/idlelib/idle_test/test_undo.py", + "lib/python3.11/idlelib/idle_test/test_util.py", + "lib/python3.11/idlelib/idle_test/test_warning.py", + "lib/python3.11/idlelib/idle_test/test_window.py", + "lib/python3.11/idlelib/idle_test/test_zoomheight.py", + "lib/python3.11/idlelib/idle_test/test_zzdummy.py", + "lib/python3.11/idlelib/idle_test/tkinter_testing_utils.py", + "lib/python3.11/idlelib/iomenu.py", + "lib/python3.11/idlelib/macosx.py", + "lib/python3.11/idlelib/mainmenu.py", + "lib/python3.11/idlelib/multicall.py", + "lib/python3.11/idlelib/outwin.py", + "lib/python3.11/idlelib/parenmatch.py", + "lib/python3.11/idlelib/pathbrowser.py", + "lib/python3.11/idlelib/percolator.py", + "lib/python3.11/idlelib/pyparse.py", + "lib/python3.11/idlelib/pyshell.py", + "lib/python3.11/idlelib/query.py", + "lib/python3.11/idlelib/redirector.py", + "lib/python3.11/idlelib/replace.py", + "lib/python3.11/idlelib/rpc.py", + "lib/python3.11/idlelib/run.py", + "lib/python3.11/idlelib/runscript.py", + "lib/python3.11/idlelib/scrolledlist.py", + "lib/python3.11/idlelib/search.py", + "lib/python3.11/idlelib/searchbase.py", + "lib/python3.11/idlelib/searchengine.py", + "lib/python3.11/idlelib/sidebar.py", + "lib/python3.11/idlelib/squeezer.py", + "lib/python3.11/idlelib/stackviewer.py", + "lib/python3.11/idlelib/statusbar.py", + "lib/python3.11/idlelib/textview.py", + "lib/python3.11/idlelib/tooltip.py", + "lib/python3.11/idlelib/tree.py", + "lib/python3.11/idlelib/undo.py", + "lib/python3.11/idlelib/util.py", + "lib/python3.11/idlelib/window.py", + "lib/python3.11/idlelib/zoomheight.py", + "lib/python3.11/idlelib/zzdummy.py", + "lib/python3.11/imaplib.py", + "lib/python3.11/imghdr.py", + "lib/python3.11/imp.py", + "lib/python3.11/importlib/__init__.py", + "lib/python3.11/importlib/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/_abc.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/_bootstrap.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/_bootstrap_external.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/abc.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/machinery.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/readers.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/simple.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/util.cpython-311.pyc", + "lib/python3.11/importlib/_abc.py", + "lib/python3.11/importlib/_bootstrap.py", + "lib/python3.11/importlib/_bootstrap_external.py", + "lib/python3.11/importlib/abc.py", + "lib/python3.11/importlib/machinery.py", + "lib/python3.11/importlib/metadata/__init__.py", + "lib/python3.11/importlib/metadata/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/importlib/metadata/__pycache__/_adapters.cpython-311.pyc", + "lib/python3.11/importlib/metadata/__pycache__/_collections.cpython-311.pyc", + "lib/python3.11/importlib/metadata/__pycache__/_functools.cpython-311.pyc", + "lib/python3.11/importlib/metadata/__pycache__/_itertools.cpython-311.pyc", + "lib/python3.11/importlib/metadata/__pycache__/_meta.cpython-311.pyc", + "lib/python3.11/importlib/metadata/__pycache__/_text.cpython-311.pyc", + "lib/python3.11/importlib/metadata/_adapters.py", + "lib/python3.11/importlib/metadata/_collections.py", + "lib/python3.11/importlib/metadata/_functools.py", + "lib/python3.11/importlib/metadata/_itertools.py", + "lib/python3.11/importlib/metadata/_meta.py", + "lib/python3.11/importlib/metadata/_text.py", + "lib/python3.11/importlib/readers.py", + "lib/python3.11/importlib/resources/__init__.py", + "lib/python3.11/importlib/resources/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/_adapters.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/_common.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/_itertools.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/_legacy.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/abc.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/readers.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/simple.cpython-311.pyc", + "lib/python3.11/importlib/resources/_adapters.py", + "lib/python3.11/importlib/resources/_common.py", + "lib/python3.11/importlib/resources/_itertools.py", + "lib/python3.11/importlib/resources/_legacy.py", + "lib/python3.11/importlib/resources/abc.py", + "lib/python3.11/importlib/resources/readers.py", + "lib/python3.11/importlib/resources/simple.py", + "lib/python3.11/importlib/simple.py", + "lib/python3.11/importlib/util.py", + "lib/python3.11/inspect.py", + "lib/python3.11/io.py", + "lib/python3.11/ipaddress.py", + "lib/python3.11/json/__init__.py", + "lib/python3.11/json/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/json/__pycache__/decoder.cpython-311.pyc", + "lib/python3.11/json/__pycache__/encoder.cpython-311.pyc", + "lib/python3.11/json/__pycache__/scanner.cpython-311.pyc", + "lib/python3.11/json/__pycache__/tool.cpython-311.pyc", + "lib/python3.11/json/decoder.py", + "lib/python3.11/json/encoder.py", + "lib/python3.11/json/scanner.py", + "lib/python3.11/json/tool.py", + "lib/python3.11/keyword.py", + "lib/python3.11/lib-dynload/_asyncio.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_bisect.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_blake2.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_bz2.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_codecs_cn.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_codecs_hk.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_codecs_iso2022.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_codecs_jp.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_codecs_kr.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_codecs_tw.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_contextvars.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_crypt.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_csv.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_ctypes.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_ctypes_test.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_curses.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_curses_panel.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_datetime.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_dbm.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_decimal.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_elementtree.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_hashlib.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_heapq.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_json.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_lsprof.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_lzma.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_md5.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_multibytecodec.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_multiprocessing.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_opcode.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_pickle.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_posixshmem.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_posixsubprocess.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_queue.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_random.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_scproxy.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_sha1.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_sha256.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_sha3.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_sha512.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_socket.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_sqlite3.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_ssl.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_statistics.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_struct.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_testbuffer.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_testcapi.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_testclinic.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_testimportmultiple.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_testinternalcapi.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_testmultiphase.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_tkinter.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_typing.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_uuid.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_xxsubinterpreters.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_xxtestfuzz.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_zoneinfo.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/array.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/audioop.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/binascii.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/cmath.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/fcntl.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/grp.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/math.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/mmap.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/nis.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/pyexpat.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/readline.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/resource.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/select.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/syslog.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/termios.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/unicodedata.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/xxlimited.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/xxlimited_35.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/zlib.cpython-311-darwin.so", + "lib/python3.11/lib2to3/Grammar.txt", + "lib/python3.11/lib2to3/Grammar3.11.5.final.0.pickle", + "lib/python3.11/lib2to3/PatternGrammar.txt", + "lib/python3.11/lib2to3/PatternGrammar3.11.5.final.0.pickle", + "lib/python3.11/lib2to3/__init__.py", + "lib/python3.11/lib2to3/__main__.py", + "lib/python3.11/lib2to3/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/btm_matcher.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/btm_utils.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/fixer_base.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/fixer_util.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/main.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/patcomp.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/pygram.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/pytree.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/refactor.cpython-311.pyc", + "lib/python3.11/lib2to3/btm_matcher.py", + "lib/python3.11/lib2to3/btm_utils.py", + "lib/python3.11/lib2to3/fixer_base.py", + "lib/python3.11/lib2to3/fixer_util.py", + "lib/python3.11/lib2to3/fixes/__init__.py", + "lib/python3.11/lib2to3/fixes/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_apply.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_asserts.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_basestring.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_buffer.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_dict.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_except.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_exec.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_execfile.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_exitfunc.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_filter.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_funcattrs.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_future.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_getcwdu.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_has_key.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_idioms.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_import.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_imports.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_imports2.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_input.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_intern.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_isinstance.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_itertools.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_itertools_imports.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_long.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_map.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_metaclass.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_methodattrs.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_ne.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_next.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_nonzero.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_numliterals.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_operator.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_paren.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_print.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_raise.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_raw_input.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_reduce.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_reload.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_renames.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_repr.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_set_literal.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_standarderror.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_sys_exc.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_throw.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_tuple_params.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_types.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_unicode.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_urllib.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_ws_comma.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_xrange.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_xreadlines.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_zip.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/fix_apply.py", + "lib/python3.11/lib2to3/fixes/fix_asserts.py", + "lib/python3.11/lib2to3/fixes/fix_basestring.py", + "lib/python3.11/lib2to3/fixes/fix_buffer.py", + "lib/python3.11/lib2to3/fixes/fix_dict.py", + "lib/python3.11/lib2to3/fixes/fix_except.py", + "lib/python3.11/lib2to3/fixes/fix_exec.py", + "lib/python3.11/lib2to3/fixes/fix_execfile.py", + "lib/python3.11/lib2to3/fixes/fix_exitfunc.py", + "lib/python3.11/lib2to3/fixes/fix_filter.py", + "lib/python3.11/lib2to3/fixes/fix_funcattrs.py", + "lib/python3.11/lib2to3/fixes/fix_future.py", + "lib/python3.11/lib2to3/fixes/fix_getcwdu.py", + "lib/python3.11/lib2to3/fixes/fix_has_key.py", + "lib/python3.11/lib2to3/fixes/fix_idioms.py", + "lib/python3.11/lib2to3/fixes/fix_import.py", + "lib/python3.11/lib2to3/fixes/fix_imports.py", + "lib/python3.11/lib2to3/fixes/fix_imports2.py", + "lib/python3.11/lib2to3/fixes/fix_input.py", + "lib/python3.11/lib2to3/fixes/fix_intern.py", + "lib/python3.11/lib2to3/fixes/fix_isinstance.py", + "lib/python3.11/lib2to3/fixes/fix_itertools.py", + "lib/python3.11/lib2to3/fixes/fix_itertools_imports.py", + "lib/python3.11/lib2to3/fixes/fix_long.py", + "lib/python3.11/lib2to3/fixes/fix_map.py", + "lib/python3.11/lib2to3/fixes/fix_metaclass.py", + "lib/python3.11/lib2to3/fixes/fix_methodattrs.py", + "lib/python3.11/lib2to3/fixes/fix_ne.py", + "lib/python3.11/lib2to3/fixes/fix_next.py", + "lib/python3.11/lib2to3/fixes/fix_nonzero.py", + "lib/python3.11/lib2to3/fixes/fix_numliterals.py", + "lib/python3.11/lib2to3/fixes/fix_operator.py", + "lib/python3.11/lib2to3/fixes/fix_paren.py", + "lib/python3.11/lib2to3/fixes/fix_print.py", + "lib/python3.11/lib2to3/fixes/fix_raise.py", + "lib/python3.11/lib2to3/fixes/fix_raw_input.py", + "lib/python3.11/lib2to3/fixes/fix_reduce.py", + "lib/python3.11/lib2to3/fixes/fix_reload.py", + "lib/python3.11/lib2to3/fixes/fix_renames.py", + "lib/python3.11/lib2to3/fixes/fix_repr.py", + "lib/python3.11/lib2to3/fixes/fix_set_literal.py", + "lib/python3.11/lib2to3/fixes/fix_standarderror.py", + "lib/python3.11/lib2to3/fixes/fix_sys_exc.py", + "lib/python3.11/lib2to3/fixes/fix_throw.py", + "lib/python3.11/lib2to3/fixes/fix_tuple_params.py", + "lib/python3.11/lib2to3/fixes/fix_types.py", + "lib/python3.11/lib2to3/fixes/fix_unicode.py", + "lib/python3.11/lib2to3/fixes/fix_urllib.py", + "lib/python3.11/lib2to3/fixes/fix_ws_comma.py", + "lib/python3.11/lib2to3/fixes/fix_xrange.py", + "lib/python3.11/lib2to3/fixes/fix_xreadlines.py", + "lib/python3.11/lib2to3/fixes/fix_zip.py", + "lib/python3.11/lib2to3/main.py", + "lib/python3.11/lib2to3/patcomp.py", + "lib/python3.11/lib2to3/pgen2/__init__.py", + "lib/python3.11/lib2to3/pgen2/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/conv.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/driver.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/grammar.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/literals.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/parse.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/pgen.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/token.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/tokenize.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/conv.py", + "lib/python3.11/lib2to3/pgen2/driver.py", + "lib/python3.11/lib2to3/pgen2/grammar.py", + "lib/python3.11/lib2to3/pgen2/literals.py", + "lib/python3.11/lib2to3/pgen2/parse.py", + "lib/python3.11/lib2to3/pgen2/pgen.py", + "lib/python3.11/lib2to3/pgen2/token.py", + "lib/python3.11/lib2to3/pgen2/tokenize.py", + "lib/python3.11/lib2to3/pygram.py", + "lib/python3.11/lib2to3/pytree.py", + "lib/python3.11/lib2to3/refactor.py", + "lib/python3.11/lib2to3/tests/__init__.py", + "lib/python3.11/lib2to3/tests/__main__.py", + "lib/python3.11/lib2to3/tests/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/pytree_idempotency.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/support.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_all_fixers.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_fixers.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_main.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_parser.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_pytree.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_refactor.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_util.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/README", + "lib/python3.11/lib2to3/tests/data/__pycache__/infinite_recursion.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/__pycache__/py3_test_grammar.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/bom.py", + "lib/python3.11/lib2to3/tests/data/crlf.py", + "lib/python3.11/lib2to3/tests/data/different_encoding.py", + "lib/python3.11/lib2to3/tests/data/false_encoding.py", + "lib/python3.11/lib2to3/tests/data/fixers/__pycache__/bad_order.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/__pycache__/no_fixer_cls.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/__pycache__/parrot_example.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/bad_order.py", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__init__.py", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__pycache__/fix_explicit.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__pycache__/fix_first.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__pycache__/fix_last.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__pycache__/fix_parrot.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__pycache__/fix_preorder.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/fix_explicit.py", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/fix_first.py", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/fix_last.py", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/fix_parrot.py", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/fix_preorder.py", + "lib/python3.11/lib2to3/tests/data/fixers/no_fixer_cls.py", + "lib/python3.11/lib2to3/tests/data/fixers/parrot_example.py", + "lib/python3.11/lib2to3/tests/data/infinite_recursion.py", + "lib/python3.11/lib2to3/tests/data/py2_test_grammar.py", + "lib/python3.11/lib2to3/tests/data/py3_test_grammar.py", + "lib/python3.11/lib2to3/tests/pytree_idempotency.py", + "lib/python3.11/lib2to3/tests/support.py", + "lib/python3.11/lib2to3/tests/test_all_fixers.py", + "lib/python3.11/lib2to3/tests/test_fixers.py", + "lib/python3.11/lib2to3/tests/test_main.py", + "lib/python3.11/lib2to3/tests/test_parser.py", + "lib/python3.11/lib2to3/tests/test_pytree.py", + "lib/python3.11/lib2to3/tests/test_refactor.py", + "lib/python3.11/lib2to3/tests/test_util.py", + "lib/python3.11/linecache.py", + "lib/python3.11/locale.py", + "lib/python3.11/logging/__init__.py", + "lib/python3.11/logging/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/logging/__pycache__/config.cpython-311.pyc", + "lib/python3.11/logging/__pycache__/handlers.cpython-311.pyc", + "lib/python3.11/logging/config.py", + "lib/python3.11/logging/handlers.py", + "lib/python3.11/lzma.py", + "lib/python3.11/mailbox.py", + "lib/python3.11/mailcap.py", + "lib/python3.11/mimetypes.py", + "lib/python3.11/modulefinder.py", + "lib/python3.11/multiprocessing/__init__.py", + "lib/python3.11/multiprocessing/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/connection.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/context.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/forkserver.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/heap.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/managers.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/pool.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/popen_fork.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/popen_forkserver.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/popen_spawn_posix.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/popen_spawn_win32.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/process.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/queues.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/reduction.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/resource_sharer.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/resource_tracker.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/shared_memory.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/sharedctypes.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/spawn.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/synchronize.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/util.cpython-311.pyc", + "lib/python3.11/multiprocessing/connection.py", + "lib/python3.11/multiprocessing/context.py", + "lib/python3.11/multiprocessing/dummy/__init__.py", + "lib/python3.11/multiprocessing/dummy/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/multiprocessing/dummy/__pycache__/connection.cpython-311.pyc", + "lib/python3.11/multiprocessing/dummy/connection.py", + "lib/python3.11/multiprocessing/forkserver.py", + "lib/python3.11/multiprocessing/heap.py", + "lib/python3.11/multiprocessing/managers.py", + "lib/python3.11/multiprocessing/pool.py", + "lib/python3.11/multiprocessing/popen_fork.py", + "lib/python3.11/multiprocessing/popen_forkserver.py", + "lib/python3.11/multiprocessing/popen_spawn_posix.py", + "lib/python3.11/multiprocessing/popen_spawn_win32.py", + "lib/python3.11/multiprocessing/process.py", + "lib/python3.11/multiprocessing/queues.py", + "lib/python3.11/multiprocessing/reduction.py", + "lib/python3.11/multiprocessing/resource_sharer.py", + "lib/python3.11/multiprocessing/resource_tracker.py", + "lib/python3.11/multiprocessing/shared_memory.py", + "lib/python3.11/multiprocessing/sharedctypes.py", + "lib/python3.11/multiprocessing/spawn.py", + "lib/python3.11/multiprocessing/synchronize.py", + "lib/python3.11/multiprocessing/util.py", + "lib/python3.11/netrc.py", + "lib/python3.11/nntplib.py", + "lib/python3.11/ntpath.py", + "lib/python3.11/nturl2path.py", + "lib/python3.11/numbers.py", + "lib/python3.11/opcode.py", + "lib/python3.11/operator.py", + "lib/python3.11/optparse.py", + "lib/python3.11/os.py", + "lib/python3.11/pathlib.py", + "lib/python3.11/pdb.py", + "lib/python3.11/pickle.py", + "lib/python3.11/pickletools.py", + "lib/python3.11/pipes.py", + "lib/python3.11/pkgutil.py", + "lib/python3.11/platform.py", + "lib/python3.11/plistlib.py", + "lib/python3.11/poplib.py", + "lib/python3.11/posixpath.py", + "lib/python3.11/pprint.py", + "lib/python3.11/profile.py", + "lib/python3.11/pstats.py", + "lib/python3.11/pty.py", + "lib/python3.11/py_compile.py", + "lib/python3.11/pyclbr.py", + "lib/python3.11/pydoc.py", + "lib/python3.11/pydoc_data/__init__.py", + "lib/python3.11/pydoc_data/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/pydoc_data/__pycache__/topics.cpython-311.pyc", + "lib/python3.11/pydoc_data/_pydoc.css", + "lib/python3.11/pydoc_data/topics.py", + "lib/python3.11/queue.py", + "lib/python3.11/quopri.py", + "lib/python3.11/random.py", + "lib/python3.11/re/__init__.py", + "lib/python3.11/re/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/re/__pycache__/_casefix.cpython-311.pyc", + "lib/python3.11/re/__pycache__/_compiler.cpython-311.pyc", + "lib/python3.11/re/__pycache__/_constants.cpython-311.pyc", + "lib/python3.11/re/__pycache__/_parser.cpython-311.pyc", + "lib/python3.11/re/_casefix.py", + "lib/python3.11/re/_compiler.py", + "lib/python3.11/re/_constants.py", + "lib/python3.11/re/_parser.py", + "lib/python3.11/reprlib.py", + "lib/python3.11/rlcompleter.py", + "lib/python3.11/runpy.py", + "lib/python3.11/sched.py", + "lib/python3.11/secrets.py", + "lib/python3.11/selectors.py", + "lib/python3.11/shelve.py", + "lib/python3.11/shlex.py", + "lib/python3.11/shutil.py", + "lib/python3.11/signal.py", + "lib/python3.11/site-packages/README.txt", + "lib/python3.11/site.py", + "lib/python3.11/smtpd.py", + "lib/python3.11/smtplib.py", + "lib/python3.11/sndhdr.py", + "lib/python3.11/socket.py", + "lib/python3.11/socketserver.py", + "lib/python3.11/sqlite3/__init__.py", + "lib/python3.11/sqlite3/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/sqlite3/__pycache__/dbapi2.cpython-311.pyc", + "lib/python3.11/sqlite3/__pycache__/dump.cpython-311.pyc", + "lib/python3.11/sqlite3/dbapi2.py", + "lib/python3.11/sqlite3/dump.py", + "lib/python3.11/sre_compile.py", + "lib/python3.11/sre_constants.py", + "lib/python3.11/sre_parse.py", + "lib/python3.11/ssl.py", + "lib/python3.11/stat.py", + "lib/python3.11/statistics.py", + "lib/python3.11/string.py", + "lib/python3.11/stringprep.py", + "lib/python3.11/struct.py", + "lib/python3.11/subprocess.py", + "lib/python3.11/sunau.py", + "lib/python3.11/symtable.py", + "lib/python3.11/sysconfig.py", + "lib/python3.11/tabnanny.py", + "lib/python3.11/tarfile.py", + "lib/python3.11/telnetlib.py", + "lib/python3.11/tempfile.py", + "lib/python3.11/test/__init__.py", + "lib/python3.11/test/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/test/__pycache__/test_script_helper.cpython-311.pyc", + "lib/python3.11/test/__pycache__/test_support.cpython-311.pyc", + "lib/python3.11/test/support/__init__.py", + "lib/python3.11/test/support/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/bytecode_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/hashlib_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/import_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/interpreters.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/logging_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/os_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/script_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/socket_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/testresult.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/threading_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/warnings_helper.cpython-311.pyc", + "lib/python3.11/test/support/bytecode_helper.py", + "lib/python3.11/test/support/hashlib_helper.py", + "lib/python3.11/test/support/import_helper.py", + "lib/python3.11/test/support/interpreters.py", + "lib/python3.11/test/support/logging_helper.py", + "lib/python3.11/test/support/os_helper.py", + "lib/python3.11/test/support/script_helper.py", + "lib/python3.11/test/support/socket_helper.py", + "lib/python3.11/test/support/testresult.py", + "lib/python3.11/test/support/threading_helper.py", + "lib/python3.11/test/support/warnings_helper.py", + "lib/python3.11/test/test_script_helper.py", + "lib/python3.11/test/test_support.py", + "lib/python3.11/textwrap.py", + "lib/python3.11/this.py", + "lib/python3.11/threading.py", + "lib/python3.11/timeit.py", + "lib/python3.11/tkinter/__init__.py", + "lib/python3.11/tkinter/__main__.py", + "lib/python3.11/tkinter/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/colorchooser.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/commondialog.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/constants.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/dialog.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/dnd.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/filedialog.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/font.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/messagebox.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/scrolledtext.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/simpledialog.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/tix.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/ttk.cpython-311.pyc", + "lib/python3.11/tkinter/colorchooser.py", + "lib/python3.11/tkinter/commondialog.py", + "lib/python3.11/tkinter/constants.py", + "lib/python3.11/tkinter/dialog.py", + "lib/python3.11/tkinter/dnd.py", + "lib/python3.11/tkinter/filedialog.py", + "lib/python3.11/tkinter/font.py", + "lib/python3.11/tkinter/messagebox.py", + "lib/python3.11/tkinter/scrolledtext.py", + "lib/python3.11/tkinter/simpledialog.py", + "lib/python3.11/tkinter/tix.py", + "lib/python3.11/tkinter/ttk.py", + "lib/python3.11/token.py", + "lib/python3.11/tokenize.py", + "lib/python3.11/tomllib/__init__.py", + "lib/python3.11/tomllib/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/tomllib/__pycache__/_parser.cpython-311.pyc", + "lib/python3.11/tomllib/__pycache__/_re.cpython-311.pyc", + "lib/python3.11/tomllib/__pycache__/_types.cpython-311.pyc", + "lib/python3.11/tomllib/_parser.py", + "lib/python3.11/tomllib/_re.py", + "lib/python3.11/tomllib/_types.py", + "lib/python3.11/trace.py", + "lib/python3.11/traceback.py", + "lib/python3.11/tracemalloc.py", + "lib/python3.11/tty.py", + "lib/python3.11/turtle.py", + "lib/python3.11/turtledemo/__init__.py", + "lib/python3.11/turtledemo/__main__.py", + "lib/python3.11/turtledemo/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/bytedesign.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/chaos.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/clock.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/colormixer.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/forest.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/fractalcurves.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/lindenmayer.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/minimal_hanoi.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/nim.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/paint.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/peace.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/penrose.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/planet_and_moon.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/rosette.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/round_dance.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/sorting_animate.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/tree.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/two_canvases.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/yinyang.cpython-311.pyc", + "lib/python3.11/turtledemo/bytedesign.py", + "lib/python3.11/turtledemo/chaos.py", + "lib/python3.11/turtledemo/clock.py", + "lib/python3.11/turtledemo/colormixer.py", + "lib/python3.11/turtledemo/forest.py", + "lib/python3.11/turtledemo/fractalcurves.py", + "lib/python3.11/turtledemo/lindenmayer.py", + "lib/python3.11/turtledemo/minimal_hanoi.py", + "lib/python3.11/turtledemo/nim.py", + "lib/python3.11/turtledemo/paint.py", + "lib/python3.11/turtledemo/peace.py", + "lib/python3.11/turtledemo/penrose.py", + "lib/python3.11/turtledemo/planet_and_moon.py", + "lib/python3.11/turtledemo/rosette.py", + "lib/python3.11/turtledemo/round_dance.py", + "lib/python3.11/turtledemo/sorting_animate.py", + "lib/python3.11/turtledemo/tree.py", + "lib/python3.11/turtledemo/turtle.cfg", + "lib/python3.11/turtledemo/two_canvases.py", + "lib/python3.11/turtledemo/yinyang.py", + "lib/python3.11/types.py", + "lib/python3.11/typing.py", + "lib/python3.11/unittest/__init__.py", + "lib/python3.11/unittest/__main__.py", + "lib/python3.11/unittest/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/_log.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/async_case.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/case.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/loader.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/main.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/mock.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/result.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/runner.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/signals.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/suite.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/util.cpython-311.pyc", + "lib/python3.11/unittest/_log.py", + "lib/python3.11/unittest/async_case.py", + "lib/python3.11/unittest/case.py", + "lib/python3.11/unittest/loader.py", + "lib/python3.11/unittest/main.py", + "lib/python3.11/unittest/mock.py", + "lib/python3.11/unittest/result.py", + "lib/python3.11/unittest/runner.py", + "lib/python3.11/unittest/signals.py", + "lib/python3.11/unittest/suite.py", + "lib/python3.11/unittest/util.py", + "lib/python3.11/urllib/__init__.py", + "lib/python3.11/urllib/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/urllib/__pycache__/error.cpython-311.pyc", + "lib/python3.11/urllib/__pycache__/parse.cpython-311.pyc", + "lib/python3.11/urllib/__pycache__/request.cpython-311.pyc", + "lib/python3.11/urllib/__pycache__/response.cpython-311.pyc", + "lib/python3.11/urllib/__pycache__/robotparser.cpython-311.pyc", + "lib/python3.11/urllib/error.py", + "lib/python3.11/urllib/parse.py", + "lib/python3.11/urllib/request.py", + "lib/python3.11/urllib/response.py", + "lib/python3.11/urllib/robotparser.py", + "lib/python3.11/uu.py", + "lib/python3.11/uuid.py", + "lib/python3.11/venv/__init__.py", + "lib/python3.11/venv/__main__.py", + "lib/python3.11/venv/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/venv/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/venv/scripts/common/Activate.ps1", + "lib/python3.11/venv/scripts/common/activate", + "lib/python3.11/venv/scripts/posix/activate.csh", + "lib/python3.11/venv/scripts/posix/activate.fish", + "lib/python3.11/warnings.py", + "lib/python3.11/wave.py", + "lib/python3.11/weakref.py", + "lib/python3.11/webbrowser.py", + "lib/python3.11/wsgiref/__init__.py", + "lib/python3.11/wsgiref/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/wsgiref/__pycache__/handlers.cpython-311.pyc", + "lib/python3.11/wsgiref/__pycache__/headers.cpython-311.pyc", + "lib/python3.11/wsgiref/__pycache__/simple_server.cpython-311.pyc", + "lib/python3.11/wsgiref/__pycache__/types.cpython-311.pyc", + "lib/python3.11/wsgiref/__pycache__/util.cpython-311.pyc", + "lib/python3.11/wsgiref/__pycache__/validate.cpython-311.pyc", + "lib/python3.11/wsgiref/handlers.py", + "lib/python3.11/wsgiref/headers.py", + "lib/python3.11/wsgiref/simple_server.py", + "lib/python3.11/wsgiref/types.py", + "lib/python3.11/wsgiref/util.py", + "lib/python3.11/wsgiref/validate.py", + "lib/python3.11/xdrlib.py", + "lib/python3.11/xml/__init__.py", + "lib/python3.11/xml/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/xml/dom/NodeFilter.py", + "lib/python3.11/xml/dom/__init__.py", + "lib/python3.11/xml/dom/__pycache__/NodeFilter.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/domreg.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/expatbuilder.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/minicompat.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/minidom.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/pulldom.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/xmlbuilder.cpython-311.pyc", + "lib/python3.11/xml/dom/domreg.py", + "lib/python3.11/xml/dom/expatbuilder.py", + "lib/python3.11/xml/dom/minicompat.py", + "lib/python3.11/xml/dom/minidom.py", + "lib/python3.11/xml/dom/pulldom.py", + "lib/python3.11/xml/dom/xmlbuilder.py", + "lib/python3.11/xml/etree/ElementInclude.py", + "lib/python3.11/xml/etree/ElementPath.py", + "lib/python3.11/xml/etree/ElementTree.py", + "lib/python3.11/xml/etree/__init__.py", + "lib/python3.11/xml/etree/__pycache__/ElementInclude.cpython-311.pyc", + "lib/python3.11/xml/etree/__pycache__/ElementPath.cpython-311.pyc", + "lib/python3.11/xml/etree/__pycache__/ElementTree.cpython-311.pyc", + "lib/python3.11/xml/etree/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/xml/etree/__pycache__/cElementTree.cpython-311.pyc", + "lib/python3.11/xml/etree/cElementTree.py", + "lib/python3.11/xml/parsers/__init__.py", + "lib/python3.11/xml/parsers/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/xml/parsers/__pycache__/expat.cpython-311.pyc", + "lib/python3.11/xml/parsers/expat.py", + "lib/python3.11/xml/sax/__init__.py", + "lib/python3.11/xml/sax/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/xml/sax/__pycache__/_exceptions.cpython-311.pyc", + "lib/python3.11/xml/sax/__pycache__/expatreader.cpython-311.pyc", + "lib/python3.11/xml/sax/__pycache__/handler.cpython-311.pyc", + "lib/python3.11/xml/sax/__pycache__/saxutils.cpython-311.pyc", + "lib/python3.11/xml/sax/__pycache__/xmlreader.cpython-311.pyc", + "lib/python3.11/xml/sax/_exceptions.py", + "lib/python3.11/xml/sax/expatreader.py", + "lib/python3.11/xml/sax/handler.py", + "lib/python3.11/xml/sax/saxutils.py", + "lib/python3.11/xml/sax/xmlreader.py", + "lib/python3.11/xmlrpc/__init__.py", + "lib/python3.11/xmlrpc/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/xmlrpc/__pycache__/client.cpython-311.pyc", + "lib/python3.11/xmlrpc/__pycache__/server.cpython-311.pyc", + "lib/python3.11/xmlrpc/client.py", + "lib/python3.11/xmlrpc/server.py", + "lib/python3.11/zipapp.py", + "lib/python3.11/zipfile.py", + "lib/python3.11/zipimport.py", + "lib/python3.11/zoneinfo/__init__.py", + "lib/python3.11/zoneinfo/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/zoneinfo/__pycache__/_common.cpython-311.pyc", + "lib/python3.11/zoneinfo/__pycache__/_tzpath.cpython-311.pyc", + "lib/python3.11/zoneinfo/__pycache__/_zoneinfo.cpython-311.pyc", + "lib/python3.11/zoneinfo/_common.py", + "lib/python3.11/zoneinfo/_tzpath.py", + "lib/python3.11/zoneinfo/_zoneinfo.py", + "share/man/man1/python3.1", + "share/man/man1/python3.11.1" + ], + "fn": "python-3.11.5-hb885b13_0.conda", + "license": "PSF-2.0", + "link": { + "source": "/Users/donjayamanne/miniconda3/pkgs/python-3.11.5-hb885b13_0", + "type": 1 + }, + "md5": "6f528bdf159139704ab578df329dee70", + "name": "python", + "package_tarball_full_path": "/Users/donjayamanne/miniconda3/pkgs/python-3.11.5-hb885b13_0.conda", + "paths_data": { + "paths": [ + { + "_path": "bin/2to3-3.11", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "0eb2a68730c6910e60374b6231605a8fe9e4b1ef889fe6bf6955f00607263096", + "sha256_in_prefix": "db867f95c7e5e3d486928ab316afc7ee322118eace698a5fd9c35dd62a7c77e0", + "size_in_bytes": 347 + }, + { + "_path": "bin/idle3.11", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "9e7c5708a61f7b75f0fa84106b3698fc81e0632eea511e9635cc012d95e8ccec", + "sha256_in_prefix": "2daba7590451fb1240f116ad6c50dfb3fe12ab0d0c90450453672dc5f7992345", + "size_in_bytes": 345 + }, + { + "_path": "bin/pydoc3.11", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "af4b3f428ef9f3708c93b8d6a9c9b211c3e531ad480bac0644e18be3d675de15", + "sha256_in_prefix": "29373357dfd57b431809af8ab17e111c47011f8ed325e4b74075551cfd728dc0", + "size_in_bytes": 330 + }, + { + "_path": "bin/python3.11", + "file_mode": "binary", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "ea6aacf75da0a6e048c0acc7d6f9e7e67f4af4af635965ab25aad7956ed07b40", + "sha256_in_prefix": "5309a862e537b7e20d382f479a016995d2b60e7382673e57a98a8644d62a011a", + "size_in_bytes": 6019216 + }, + { + "_path": "bin/python3.11-config", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "48e7f0c28858cd7dd610f089ebce9d090b15273d6f965b5a665418880b9ad017", + "sha256_in_prefix": "178fb9ee8ae853adc2840a51642fbdfe239d4c189e632be37552f83ee881a9d5", + "size_in_bytes": 2289 + }, + { + "_path": "lib/libpython3.11.dylib", + "file_mode": "binary", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "813d7657214af2a40d6f98ed5ad6cd25bdaf9e1b52299dcc22457b6431f46226", + "sha256_in_prefix": "690e286e2a59750500c44dd3eb0fcc3f607604fd1a24a20da1d5877d9ac09cd0", + "size_in_bytes": 6019152 + }, + { + "_path": "lib/pkgconfig/python-3.11-embed.pc", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "5ce92c1022c5d4af2383596197f518fc12687f8f32bf3f42b96c7ee22ac9dc8d", + "sha256_in_prefix": "2ccb5bf00ff727b7941ad8be49360b25f86860ae2f49931743f628dafc9caac1", + "size_in_bytes": 558 + }, + { + "_path": "lib/pkgconfig/python-3.11.pc", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "46ac102bbce0c0b1ff9cabf905c7d44f3e3ff2911127a08b620cd1231a8a70c4", + "sha256_in_prefix": "01f5747180571713792597c3a4b2278f2e2b0e46aaa926e95cc007a373b589aa", + "size_in_bytes": 531 + }, + { + "_path": "lib/python3.11/_sysconfigdata__darwin_darwin.py", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "49c03531794c8e17dbf3bc3b28b5c731c19647b8430e74a7f05967863a73cd89", + "sha256_in_prefix": "d1fed13472229dad30d35c5cd3e497e4cbb16e5aa2fb66abc1919d55f9fa415c", + "size_in_bytes": 85118 + }, + { + "_path": "lib/python3.11/_sysconfigdata__darwin_darwin.py.orig", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "4e1b965e2665c46a97f8df38da25dc3e2636e6e62a2b525d38bfd9304978f7c9", + "sha256_in_prefix": "dbc742fac6650f3e6159c08dc75d77bbe5704af80a671c3ca09aa3e061ddd992", + "size_in_bytes": 97066 + }, + { + "_path": "lib/python3.11/_sysconfigdata_arm64_apple_darwin20_0_0.py", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "810dab3b07b0633c5d5b180351daecb4d1ebf51ee2216019c5dc08afb5c54fd1", + "sha256_in_prefix": "44ad76b97a9bc58243271c310c497b085745bbe5451b4cbf60d6afb475b49465", + "size_in_bytes": 87139 + }, + { + "_path": "lib/python3.11/config-3.11-darwin/Makefile", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "2a78da281edcb631ddd844a43a4e30d166eb6b13651e43a1664f0e1aa9384d3b", + "sha256_in_prefix": "fee789b4cc5318f60fd6d1b4294c7789bf333b55d6c4f8afa1dd4476e7fa4d5b", + "size_in_bytes": 126865 + }, + { + "_path": "lib/python3.11/config-3.11-darwin/python-config.py", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "48e7f0c28858cd7dd610f089ebce9d090b15273d6f965b5a665418880b9ad017", + "sha256_in_prefix": "178fb9ee8ae853adc2840a51642fbdfe239d4c189e632be37552f83ee881a9d5", + "size_in_bytes": 2289 + } + ], + "paths_version": 1 + }, + "requested_spec": "defaults/osx-arm64::python==3.11.5=hb885b13_0[md5=6f528bdf159139704ab578df329dee70]", + "sha256": "e6ae393f2072f9857ffbd78c56ea28ca345beeba4f0ab2e0d5975e424f71b252", + "size": 16161485, + "subdir": "osx-arm64", + "timestamp": 1694439441000, + "track_features": "", + "url": "https://repo.anaconda.com/pkgs/main/osx-arm64/python-3.11.5-hb885b13_0.conda", + "version": "3.11.5" +} \ No newline at end of file diff --git a/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/mambaforge/conda-meta/python-slugify-5.0.2-pyhd3eb1b0_0.json b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/mambaforge/conda-meta/python-slugify-5.0.2-pyhd3eb1b0_0.json new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/mambaforge/envs/.conda_envs_dir_test b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/mambaforge/envs/.conda_envs_dir_test new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda-latest/conda-meta/conda-23.11.0-py311hca03da5_0.json b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda-latest/conda-meta/conda-23.11.0-py311hca03da5_0.json new file mode 100644 index 000000000000..3be01e80b809 --- /dev/null +++ b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda-latest/conda-meta/conda-23.11.0-py311hca03da5_0.json @@ -0,0 +1,632 @@ +{ + "build": "py311hca03da5_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/osx-arm64", + "constrains": [ + "conda-content-trust >=0.1.1", + "conda-build >=3.27", + "conda-env >=2.6" + ], + "depends": [ + "archspec", + "boltons >=23.0.0", + "charset-normalizer", + "conda-libmamba-solver >=23.11.0", + "conda-package-handling >=2.2.0", + "distro >=1.5.0", + "jsonpatch >=1.32", + "menuinst", + "packaging >=23.0", + "platformdirs >=3.10.0", + "pluggy >=1.0.0", + "pycosat >=0.6.3", + "python >=3.11,<3.12.0a0", + "requests >=2.28.0,<3", + "ruamel.yaml >=0.11.14,<0.19", + "setuptools >=60.0.0", + "tqdm >=4", + "truststore >=0.8.0" + ], + "extracted_package_dir": "/Users/donjayamanne/miniconda3/pkgs/conda-23.11.0-py311hca03da5_0", + "features": "", + "files": [ + "bin/activate", + "bin/conda", + "bin/conda-env", + "bin/deactivate", + "condabin/conda", + "etc/fish/conf.d/conda.fish", + "etc/profile.d/conda.csh", + "etc/profile.d/conda.sh", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/INSTALLER", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/METADATA", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/RECORD", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/REQUESTED", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/WHEEL", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/direct_url.json", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/entry_points.txt", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/licenses/AUTHORS.md", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/licenses/LICENSE", + "lib/python3.11/site-packages/conda/__init__.py", + "lib/python3.11/site-packages/conda/__main__.py", + "lib/python3.11/site-packages/conda/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/__version__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/activate.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/api.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/deprecations.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/exception_handler.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/exceptions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/exports.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/history.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/instructions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/misc.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/plan.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/resolve.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/utils.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__version__.py", + "lib/python3.11/site-packages/conda/_vendor/__init__.py", + "lib/python3.11/site-packages/conda/_vendor/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/__pycache__/appdirs.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/__pycache__/distro.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/appdirs.LICENSE.txt", + "lib/python3.11/site-packages/conda/_vendor/appdirs.py", + "lib/python3.11/site-packages/conda/_vendor/boltons/LICENSE", + "lib/python3.11/site-packages/conda/_vendor/boltons/__init__.py", + "lib/python3.11/site-packages/conda/_vendor/boltons/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/boltons/__pycache__/setutils.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/boltons/__pycache__/timeutils.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/boltons/setutils.py", + "lib/python3.11/site-packages/conda/_vendor/boltons/timeutils.py", + "lib/python3.11/site-packages/conda/_vendor/cpuinfo/__init__.py", + "lib/python3.11/site-packages/conda/_vendor/cpuinfo/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/cpuinfo/__pycache__/cpuinfo.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/cpuinfo/cpuinfo.py", + "lib/python3.11/site-packages/conda/_vendor/distro.LICENSE.txt", + "lib/python3.11/site-packages/conda/_vendor/distro.py", + "lib/python3.11/site-packages/conda/_vendor/frozendict/LICENSE.txt", + "lib/python3.11/site-packages/conda/_vendor/frozendict/__init__.py", + "lib/python3.11/site-packages/conda/_vendor/frozendict/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/py_cpuinfo.LICENSE", + "lib/python3.11/site-packages/conda/_vendor/vendor.txt", + "lib/python3.11/site-packages/conda/activate.py", + "lib/python3.11/site-packages/conda/api.py", + "lib/python3.11/site-packages/conda/auxlib/LICENSE", + "lib/python3.11/site-packages/conda/auxlib/__init__.py", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/collection.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/compat.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/decorators.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/entity.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/exceptions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/ish.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/logz.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/packaging.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/type_coercion.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/collection.py", + "lib/python3.11/site-packages/conda/auxlib/compat.py", + "lib/python3.11/site-packages/conda/auxlib/decorators.py", + "lib/python3.11/site-packages/conda/auxlib/entity.py", + "lib/python3.11/site-packages/conda/auxlib/exceptions.py", + "lib/python3.11/site-packages/conda/auxlib/ish.py", + "lib/python3.11/site-packages/conda/auxlib/logz.py", + "lib/python3.11/site-packages/conda/auxlib/packaging.py", + "lib/python3.11/site-packages/conda/auxlib/type_coercion.py", + "lib/python3.11/site-packages/conda/base/__init__.py", + "lib/python3.11/site-packages/conda/base/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/base/__pycache__/constants.cpython-311.pyc", + "lib/python3.11/site-packages/conda/base/__pycache__/context.cpython-311.pyc", + "lib/python3.11/site-packages/conda/base/__pycache__/exceptions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/base/constants.py", + "lib/python3.11/site-packages/conda/base/context.py", + "lib/python3.11/site-packages/conda/base/exceptions.py", + "lib/python3.11/site-packages/conda/cli/__init__.py", + "lib/python3.11/site-packages/conda/cli/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/actions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/common.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/conda_argparse.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/find_commands.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/helpers.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/install.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_clean.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_compare.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_config.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_create.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_info.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_init.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_install.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_list.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_mock_activate.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_mock_deactivate.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_notices.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_package.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_pip.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_remove.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_rename.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_run.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_search.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_update.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/python_api.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/actions.py", + "lib/python3.11/site-packages/conda/cli/common.py", + "lib/python3.11/site-packages/conda/cli/conda_argparse.py", + "lib/python3.11/site-packages/conda/cli/find_commands.py", + "lib/python3.11/site-packages/conda/cli/helpers.py", + "lib/python3.11/site-packages/conda/cli/install.py", + "lib/python3.11/site-packages/conda/cli/main.py", + "lib/python3.11/site-packages/conda/cli/main_clean.py", + "lib/python3.11/site-packages/conda/cli/main_compare.py", + "lib/python3.11/site-packages/conda/cli/main_config.py", + "lib/python3.11/site-packages/conda/cli/main_create.py", + "lib/python3.11/site-packages/conda/cli/main_info.py", + "lib/python3.11/site-packages/conda/cli/main_init.py", + "lib/python3.11/site-packages/conda/cli/main_install.py", + "lib/python3.11/site-packages/conda/cli/main_list.py", + "lib/python3.11/site-packages/conda/cli/main_mock_activate.py", + "lib/python3.11/site-packages/conda/cli/main_mock_deactivate.py", + "lib/python3.11/site-packages/conda/cli/main_notices.py", + "lib/python3.11/site-packages/conda/cli/main_package.py", + "lib/python3.11/site-packages/conda/cli/main_pip.py", + "lib/python3.11/site-packages/conda/cli/main_remove.py", + "lib/python3.11/site-packages/conda/cli/main_rename.py", + "lib/python3.11/site-packages/conda/cli/main_run.py", + "lib/python3.11/site-packages/conda/cli/main_search.py", + "lib/python3.11/site-packages/conda/cli/main_update.py", + "lib/python3.11/site-packages/conda/cli/python_api.py", + "lib/python3.11/site-packages/conda/common/__init__.py", + "lib/python3.11/site-packages/conda/common/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/_logic.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/compat.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/configuration.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/constants.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/decorators.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/disk.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/io.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/iterators.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/logic.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/path.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/serialize.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/signals.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/toposort.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/url.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/_logic.py", + "lib/python3.11/site-packages/conda/common/_os/__init__.py", + "lib/python3.11/site-packages/conda/common/_os/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/_os/__pycache__/linux.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/_os/__pycache__/unix.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/_os/__pycache__/windows.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/_os/linux.py", + "lib/python3.11/site-packages/conda/common/_os/unix.py", + "lib/python3.11/site-packages/conda/common/_os/windows.py", + "lib/python3.11/site-packages/conda/common/compat.py", + "lib/python3.11/site-packages/conda/common/configuration.py", + "lib/python3.11/site-packages/conda/common/constants.py", + "lib/python3.11/site-packages/conda/common/decorators.py", + "lib/python3.11/site-packages/conda/common/disk.py", + "lib/python3.11/site-packages/conda/common/io.py", + "lib/python3.11/site-packages/conda/common/iterators.py", + "lib/python3.11/site-packages/conda/common/logic.py", + "lib/python3.11/site-packages/conda/common/path.py", + "lib/python3.11/site-packages/conda/common/pkg_formats/__init__.py", + "lib/python3.11/site-packages/conda/common/pkg_formats/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/pkg_formats/__pycache__/python.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/pkg_formats/python.py", + "lib/python3.11/site-packages/conda/common/serialize.py", + "lib/python3.11/site-packages/conda/common/signals.py", + "lib/python3.11/site-packages/conda/common/toposort.py", + "lib/python3.11/site-packages/conda/common/url.py", + "lib/python3.11/site-packages/conda/core/__init__.py", + "lib/python3.11/site-packages/conda/core/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/envs_manager.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/index.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/initialize.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/link.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/package_cache.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/package_cache_data.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/path_actions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/portability.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/prefix_data.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/solve.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/subdir_data.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/envs_manager.py", + "lib/python3.11/site-packages/conda/core/index.py", + "lib/python3.11/site-packages/conda/core/initialize.py", + "lib/python3.11/site-packages/conda/core/link.py", + "lib/python3.11/site-packages/conda/core/package_cache.py", + "lib/python3.11/site-packages/conda/core/package_cache_data.py", + "lib/python3.11/site-packages/conda/core/path_actions.py", + "lib/python3.11/site-packages/conda/core/portability.py", + "lib/python3.11/site-packages/conda/core/prefix_data.py", + "lib/python3.11/site-packages/conda/core/solve.py", + "lib/python3.11/site-packages/conda/core/subdir_data.py", + "lib/python3.11/site-packages/conda/deprecations.py", + "lib/python3.11/site-packages/conda/exception_handler.py", + "lib/python3.11/site-packages/conda/exceptions.py", + "lib/python3.11/site-packages/conda/exports.py", + "lib/python3.11/site-packages/conda/gateways/__init__.py", + "lib/python3.11/site-packages/conda/gateways/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/__pycache__/anaconda_client.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/__pycache__/logging.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/__pycache__/subprocess.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/anaconda_client.py", + "lib/python3.11/site-packages/conda/gateways/connection/__init__.py", + "lib/python3.11/site-packages/conda/gateways/connection/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/__pycache__/download.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/__pycache__/session.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/__init__.py", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/__pycache__/ftp.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/__pycache__/http.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/__pycache__/localfs.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/__pycache__/s3.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/ftp.py", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/http.py", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/localfs.py", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/s3.py", + "lib/python3.11/site-packages/conda/gateways/connection/download.py", + "lib/python3.11/site-packages/conda/gateways/connection/session.py", + "lib/python3.11/site-packages/conda/gateways/disk/__init__.py", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/create.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/delete.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/link.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/lock.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/permissions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/read.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/test.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/update.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/create.py", + "lib/python3.11/site-packages/conda/gateways/disk/delete.py", + "lib/python3.11/site-packages/conda/gateways/disk/link.py", + "lib/python3.11/site-packages/conda/gateways/disk/lock.py", + "lib/python3.11/site-packages/conda/gateways/disk/permissions.py", + "lib/python3.11/site-packages/conda/gateways/disk/read.py", + "lib/python3.11/site-packages/conda/gateways/disk/test.py", + "lib/python3.11/site-packages/conda/gateways/disk/update.py", + "lib/python3.11/site-packages/conda/gateways/logging.py", + "lib/python3.11/site-packages/conda/gateways/repodata/__init__.py", + "lib/python3.11/site-packages/conda/gateways/repodata/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/repodata/__pycache__/lock.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/__init__.py", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/__pycache__/core.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/__pycache__/fetch.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/__pycache__/interface.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/core.py", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/fetch.py", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/interface.py", + "lib/python3.11/site-packages/conda/gateways/repodata/lock.py", + "lib/python3.11/site-packages/conda/gateways/subprocess.py", + "lib/python3.11/site-packages/conda/history.py", + "lib/python3.11/site-packages/conda/instructions.py", + "lib/python3.11/site-packages/conda/misc.py", + "lib/python3.11/site-packages/conda/models/__init__.py", + "lib/python3.11/site-packages/conda/models/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/channel.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/dist.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/enums.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/leased_path_entry.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/match_spec.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/package_info.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/prefix_graph.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/records.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/version.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/channel.py", + "lib/python3.11/site-packages/conda/models/dist.py", + "lib/python3.11/site-packages/conda/models/enums.py", + "lib/python3.11/site-packages/conda/models/leased_path_entry.py", + "lib/python3.11/site-packages/conda/models/match_spec.py", + "lib/python3.11/site-packages/conda/models/package_info.py", + "lib/python3.11/site-packages/conda/models/prefix_graph.py", + "lib/python3.11/site-packages/conda/models/records.py", + "lib/python3.11/site-packages/conda/models/version.py", + "lib/python3.11/site-packages/conda/notices/__init__.py", + "lib/python3.11/site-packages/conda/notices/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/notices/__pycache__/cache.cpython-311.pyc", + "lib/python3.11/site-packages/conda/notices/__pycache__/core.cpython-311.pyc", + "lib/python3.11/site-packages/conda/notices/__pycache__/fetch.cpython-311.pyc", + "lib/python3.11/site-packages/conda/notices/__pycache__/types.cpython-311.pyc", + "lib/python3.11/site-packages/conda/notices/__pycache__/views.cpython-311.pyc", + "lib/python3.11/site-packages/conda/notices/cache.py", + "lib/python3.11/site-packages/conda/notices/core.py", + "lib/python3.11/site-packages/conda/notices/fetch.py", + "lib/python3.11/site-packages/conda/notices/types.py", + "lib/python3.11/site-packages/conda/notices/views.py", + "lib/python3.11/site-packages/conda/plan.py", + "lib/python3.11/site-packages/conda/plugins/__init__.py", + "lib/python3.11/site-packages/conda/plugins/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/__pycache__/hookspec.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/__pycache__/manager.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/__pycache__/solvers.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/__pycache__/types.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/hookspec.py", + "lib/python3.11/site-packages/conda/plugins/manager.py", + "lib/python3.11/site-packages/conda/plugins/solvers.py", + "lib/python3.11/site-packages/conda/plugins/subcommands/__init__.py", + "lib/python3.11/site-packages/conda/plugins/subcommands/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/subcommands/doctor/__init__.py", + "lib/python3.11/site-packages/conda/plugins/subcommands/doctor/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/subcommands/doctor/__pycache__/health_checks.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/subcommands/doctor/health_checks.py", + "lib/python3.11/site-packages/conda/plugins/types.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__init__.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/archspec.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/conda.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/cuda.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/freebsd.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/linux.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/osx.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/windows.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/archspec.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/conda.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/cuda.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/freebsd.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/linux.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/osx.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/windows.py", + "lib/python3.11/site-packages/conda/py.typed", + "lib/python3.11/site-packages/conda/resolve.py", + "lib/python3.11/site-packages/conda/shell/Library/bin/conda.bat", + "lib/python3.11/site-packages/conda/shell/Scripts/activate.bat", + "lib/python3.11/site-packages/conda/shell/bin/activate", + "lib/python3.11/site-packages/conda/shell/bin/conda", + "lib/python3.11/site-packages/conda/shell/bin/deactivate", + "lib/python3.11/site-packages/conda/shell/cli-32.exe", + "lib/python3.11/site-packages/conda/shell/cli-64.exe", + "lib/python3.11/site-packages/conda/shell/conda.xsh", + "lib/python3.11/site-packages/conda/shell/conda_icon.ico", + "lib/python3.11/site-packages/conda/shell/condabin/Conda.psm1", + "lib/python3.11/site-packages/conda/shell/condabin/_conda_activate.bat", + "lib/python3.11/site-packages/conda/shell/condabin/activate.bat", + "lib/python3.11/site-packages/conda/shell/condabin/conda-hook.ps1", + "lib/python3.11/site-packages/conda/shell/condabin/conda.bat", + "lib/python3.11/site-packages/conda/shell/condabin/conda_auto_activate.bat", + "lib/python3.11/site-packages/conda/shell/condabin/conda_hook.bat", + "lib/python3.11/site-packages/conda/shell/condabin/deactivate.bat", + "lib/python3.11/site-packages/conda/shell/condabin/rename_tmp.bat", + "lib/python3.11/site-packages/conda/shell/etc/fish/conf.d/conda.fish", + "lib/python3.11/site-packages/conda/shell/etc/profile.d/conda.csh", + "lib/python3.11/site-packages/conda/shell/etc/profile.d/conda.sh", + "lib/python3.11/site-packages/conda/testing/__init__.py", + "lib/python3.11/site-packages/conda/testing/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/__pycache__/cases.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/__pycache__/fixtures.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/__pycache__/helpers.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/__pycache__/integration.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/__pycache__/solver_helpers.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/cases.py", + "lib/python3.11/site-packages/conda/testing/fixtures.py", + "lib/python3.11/site-packages/conda/testing/gateways/__init__.py", + "lib/python3.11/site-packages/conda/testing/gateways/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/gateways/__pycache__/fixtures.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/gateways/fixtures.py", + "lib/python3.11/site-packages/conda/testing/helpers.py", + "lib/python3.11/site-packages/conda/testing/integration.py", + "lib/python3.11/site-packages/conda/testing/notices/__init__.py", + "lib/python3.11/site-packages/conda/testing/notices/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/notices/__pycache__/fixtures.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/notices/__pycache__/helpers.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/notices/fixtures.py", + "lib/python3.11/site-packages/conda/testing/notices/helpers.py", + "lib/python3.11/site-packages/conda/testing/solver_helpers.py", + "lib/python3.11/site-packages/conda/trust/__init__.py", + "lib/python3.11/site-packages/conda/trust/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/trust/__pycache__/constants.cpython-311.pyc", + "lib/python3.11/site-packages/conda/trust/__pycache__/signature_verification.cpython-311.pyc", + "lib/python3.11/site-packages/conda/trust/constants.py", + "lib/python3.11/site-packages/conda/trust/signature_verification.py", + "lib/python3.11/site-packages/conda/utils.py", + "lib/python3.11/site-packages/conda_env/README.md", + "lib/python3.11/site-packages/conda_env/__init__.py", + "lib/python3.11/site-packages/conda_env/__main__.py", + "lib/python3.11/site-packages/conda_env/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/__pycache__/env.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/__pycache__/pip_util.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__init__.py", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/common.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_config.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_create.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_export.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_list.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_remove.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_update.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_vars.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/common.py", + "lib/python3.11/site-packages/conda_env/cli/main.py", + "lib/python3.11/site-packages/conda_env/cli/main_config.py", + "lib/python3.11/site-packages/conda_env/cli/main_create.py", + "lib/python3.11/site-packages/conda_env/cli/main_export.py", + "lib/python3.11/site-packages/conda_env/cli/main_list.py", + "lib/python3.11/site-packages/conda_env/cli/main_remove.py", + "lib/python3.11/site-packages/conda_env/cli/main_update.py", + "lib/python3.11/site-packages/conda_env/cli/main_vars.py", + "lib/python3.11/site-packages/conda_env/env.py", + "lib/python3.11/site-packages/conda_env/installers/__init__.py", + "lib/python3.11/site-packages/conda_env/installers/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/installers/__pycache__/base.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/installers/__pycache__/conda.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/installers/__pycache__/pip.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/installers/base.py", + "lib/python3.11/site-packages/conda_env/installers/conda.py", + "lib/python3.11/site-packages/conda_env/installers/pip.py", + "lib/python3.11/site-packages/conda_env/pip_util.py", + "lib/python3.11/site-packages/conda_env/specs/__init__.py", + "lib/python3.11/site-packages/conda_env/specs/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/specs/__pycache__/binstar.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/specs/__pycache__/requirements.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/specs/__pycache__/yaml_file.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/specs/binstar.py", + "lib/python3.11/site-packages/conda_env/specs/requirements.py", + "lib/python3.11/site-packages/conda_env/specs/yaml_file.py", + "lib/python3.11/site-packages/tests/conda_env/__init__.py", + "lib/python3.11/site-packages/tests/conda_env/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/__pycache__/test_cli.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/__pycache__/test_create.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/__pycache__/test_env.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/__pycache__/test_pip_util.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/__pycache__/utils.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/specs/__init__.py", + "lib/python3.11/site-packages/tests/conda_env/specs/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/specs/__pycache__/test_binstar.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/specs/__pycache__/test_requirements.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/specs/__pycache__/test_yaml_file.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/specs/test_binstar.py", + "lib/python3.11/site-packages/tests/conda_env/specs/test_requirements.py", + "lib/python3.11/site-packages/tests/conda_env/specs/test_yaml_file.py", + "lib/python3.11/site-packages/tests/conda_env/support/add-pip.yml", + "lib/python3.11/site-packages/tests/conda_env/support/advanced-pip/.gitignore", + "lib/python3.11/site-packages/tests/conda_env/support/advanced-pip/another-project-requirements.txt", + "lib/python3.11/site-packages/tests/conda_env/support/advanced-pip/environment.yml", + "lib/python3.11/site-packages/tests/conda_env/support/advanced-pip/module_to_install_in_editable_mode/__pycache__/setup.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/support/advanced-pip/module_to_install_in_editable_mode/setup.py", + "lib/python3.11/site-packages/tests/conda_env/support/channels_with_envvars.yml", + "lib/python3.11/site-packages/tests/conda_env/support/empty_env.yml", + "lib/python3.11/site-packages/tests/conda_env/support/env_with_dependencies.yml", + "lib/python3.11/site-packages/tests/conda_env/support/example-yaml/environment.yaml", + "lib/python3.11/site-packages/tests/conda_env/support/example/environment.yml", + "lib/python3.11/site-packages/tests/conda_env/support/example/environment_host_port.yml", + "lib/python3.11/site-packages/tests/conda_env/support/example/environment_pinned.yml", + "lib/python3.11/site-packages/tests/conda_env/support/example/environment_pinned_updated.yml", + "lib/python3.11/site-packages/tests/conda_env/support/foo/bar/baz/readme", + "lib/python3.11/site-packages/tests/conda_env/support/foo/bar/readme", + "lib/python3.11/site-packages/tests/conda_env/support/foo/environment.yml", + "lib/python3.11/site-packages/tests/conda_env/support/invalid_keys.yml", + "lib/python3.11/site-packages/tests/conda_env/support/notebook.ipynb", + "lib/python3.11/site-packages/tests/conda_env/support/notebook_with_env.ipynb", + "lib/python3.11/site-packages/tests/conda_env/support/pip_argh.yml", + "lib/python3.11/site-packages/tests/conda_env/support/requirements.txt", + "lib/python3.11/site-packages/tests/conda_env/support/saved-env/environment.yml", + "lib/python3.11/site-packages/tests/conda_env/support/simple.yml", + "lib/python3.11/site-packages/tests/conda_env/support/valid_keys.yml", + "lib/python3.11/site-packages/tests/conda_env/support/with-pip.yml", + "lib/python3.11/site-packages/tests/conda_env/test_cli.py", + "lib/python3.11/site-packages/tests/conda_env/test_create.py", + "lib/python3.11/site-packages/tests/conda_env/test_env.py", + "lib/python3.11/site-packages/tests/conda_env/test_pip_util.py", + "lib/python3.11/site-packages/tests/conda_env/utils.py", + "lib/python3.11/site-packages/tests/test-recipes/activate_deactivate_package/src/etc/conda/activate.d/activate.bat", + "lib/python3.11/site-packages/tests/test-recipes/activate_deactivate_package/src/etc/conda/activate.d/activate.sh", + "lib/python3.11/site-packages/tests/test-recipes/activate_deactivate_package/src/etc/conda/deactivate.d/deactivate.bat", + "lib/python3.11/site-packages/tests/test-recipes/activate_deactivate_package/src/etc/conda/deactivate.d/deactivate.sh", + "lib/python3.11/site-packages/xontrib/conda.xsh", + "shell/condabin/Conda.psm1", + "shell/condabin/conda-hook.ps1" + ], + "fn": "conda-23.11.0-py311hca03da5_0.conda", + "license": "BSD-3-Clause", + "link": { + "source": "/Users/donjayamanne/miniconda3/pkgs/conda-23.11.0-py311hca03da5_0", + "type": 1 + }, + "md5": "d40f56a649df2d05c5468713732e005e", + "name": "conda", + "package_tarball_full_path": "/Users/donjayamanne/miniconda3/pkgs/conda-23.11.0-py311hca03da5_0.conda", + "paths_data": { + "paths": [ + { + "_path": "bin/activate", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "92dd3f5997c70939665a9000ba114ba13f28c5ce1341fa75060f48dcb808a127", + "sha256_in_prefix": "4270a26a4429c0dd5a4c35900f8b2211b35c7447367b6f2b8470bdedc1f240ca", + "size_in_bytes": 429 + }, + { + "_path": "bin/conda", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "c6380d731f573d898f146d5580e0447dd44d068d619bda7aff326095f8bc4f88", + "sha256_in_prefix": "b5dd14921f011aa934757f31b62e0fa2be17a1a9f99ccb2d26a1f12a864d64e8", + "size_in_bytes": 756 + }, + { + "_path": "bin/conda-env", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "c7e6fa37766fe556ef4f95c0860a0eb7f7817c6f057ba9369e248bcdd7f37c9d", + "sha256_in_prefix": "88be67a0d6c47edbd65fa3d860a3514daed6b6bac830ec93800cf43fd778379c", + "size_in_bytes": 393 + }, + { + "_path": "bin/deactivate", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "a69da038fee96660c3f47c2c393c05b54986ba0c929aada61cd410df6e09746e", + "sha256_in_prefix": "2af9834dc0f7c2fb9db2f9e67829700c6828774d9ad7996602324c5a5387a89c", + "size_in_bytes": 517 + }, + { + "_path": "condabin/conda", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "c6380d731f573d898f146d5580e0447dd44d068d619bda7aff326095f8bc4f88", + "sha256_in_prefix": "b5dd14921f011aa934757f31b62e0fa2be17a1a9f99ccb2d26a1f12a864d64e8", + "size_in_bytes": 756 + }, + { + "_path": "etc/fish/conf.d/conda.fish", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "85caec3d76f3239e105f88cbafc6acbe04cd97fd4c1db4da4e0dcf4d357a631e", + "sha256_in_prefix": "a1ab61539200ab52ec85d9bf7de9b1cfe4a7fbdd4da2f6a7882d417ea8c7d3e1", + "size_in_bytes": 4880 + }, + { + "_path": "etc/profile.d/conda.csh", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "966581001ffd439152bf4432c7c436e25014aa2386668a00145b4087aa354604", + "sha256_in_prefix": "85a53ef7d70dcb1c16695b970bbc3880b74eaa23fff43dde57796e34fcb2ead7", + "size_in_bytes": 3163 + }, + { + "_path": "etc/profile.d/conda.sh", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "a147ccd49f1579e69c49cb12114421d95b84a1e02ef1df7c4f8c51d44cd026d1", + "sha256_in_prefix": "920d3be6a977141273da05e8d0a1867352013f1e2702a313fea15a101432f344", + "size_in_bytes": 2552 + }, + { + "_path": "lib/python3.11/site-packages/xontrib/conda.xsh", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "e0e9fb9f5d108c70434802b45e51910671b409a3cddd7b4ec887af2b07e2ce05", + "sha256_in_prefix": "c0650607c2cf90f2ce94f3b7370349922fdac5901e3316fa9f065d8773b3f944", + "size_in_bytes": 7565 + }, + { + "_path": "shell/condabin/conda-hook.ps1", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "94f9a90527bf021292a113a9e546e3f5dd042ae3afc0ed2a7a5763ef312ac756", + "sha256_in_prefix": "4edd554f34b2aa567876996da1be4cbc89d866e0e3d958f42d7889ccff8f617f", + "size_in_bytes": 1047 + } + ], + "paths_version": 1 + }, + "requested_spec": "defaults/osx-arm64::conda==23.11.0=py311hca03da5_0[md5=d40f56a649df2d05c5468713732e005e]", + "sha256": "63ade392153a88ba334593059bfce7ab3b6df1dbbd6622655c8a7db587f70a78", + "size": 1317120, + "subdir": "osx-arm64", + "timestamp": 1701719702000, + "track_features": "", + "url": "https://repo.anaconda.com/pkgs/main/osx-arm64/conda-23.11.0-py311hca03da5_0.conda", + "version": "23.11.0" +} \ No newline at end of file diff --git a/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda-latest/conda-meta/history b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda-latest/conda-meta/history new file mode 100644 index 000000000000..b196a3e5922b --- /dev/null +++ b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda-latest/conda-meta/history @@ -0,0 +1,72 @@ +==> 2024-02-14 17:04:16 <== +# cmd: /Users/donjayamanne/miniconda3/conda.exe install --offline --file /Users/donjayamanne/miniconda3/pkgs/env.txt -yp /Users/donjayamanne/miniconda3 +# conda version: 23.10.0 ++defaults/noarch::archspec-0.2.1-pyhd3eb1b0_0 ++defaults/noarch::charset-normalizer-2.0.4-pyhd3eb1b0_0 ++defaults/noarch::conda-libmamba-solver-23.12.0-pyhd3eb1b0_1 ++defaults/noarch::jsonpatch-1.32-pyhd3eb1b0_0 ++defaults/noarch::jsonpointer-2.1-pyhd3eb1b0_0 ++defaults/noarch::pybind11-abi-4-hd3eb1b0_1 ++defaults/noarch::pycparser-2.21-pyhd3eb1b0_0 ++defaults/noarch::tzdata-2023c-h04d1e81_0 ++defaults/osx-arm64::boltons-23.0.0-py311hca03da5_0 ++defaults/osx-arm64::brotli-python-1.0.9-py311h313beb8_7 ++defaults/osx-arm64::bzip2-1.0.8-h620ffc9_4 ++defaults/osx-arm64::c-ares-1.19.1-h80987f9_0 ++defaults/osx-arm64::ca-certificates-2023.12.12-hca03da5_0 ++defaults/osx-arm64::certifi-2023.11.17-py311hca03da5_0 ++defaults/osx-arm64::cffi-1.16.0-py311h80987f9_0 ++defaults/osx-arm64::conda-23.11.0-py311hca03da5_0 ++defaults/osx-arm64::conda-content-trust-0.2.0-py311hca03da5_0 ++defaults/osx-arm64::conda-package-handling-2.2.0-py311hca03da5_0 ++defaults/osx-arm64::conda-package-streaming-0.9.0-py311hca03da5_0 ++defaults/osx-arm64::cryptography-41.0.7-py311hd4332d6_0 ++defaults/osx-arm64::distro-1.8.0-py311hca03da5_0 ++defaults/osx-arm64::fmt-9.1.0-h48ca7d4_0 ++defaults/osx-arm64::icu-73.1-h313beb8_0 ++defaults/osx-arm64::idna-3.4-py311hca03da5_0 ++defaults/osx-arm64::krb5-1.20.1-hf3e1bf2_1 ++defaults/osx-arm64::libarchive-3.6.2-h62fee54_2 ++defaults/osx-arm64::libcurl-8.4.0-h3e2b118_1 ++defaults/osx-arm64::libcxx-14.0.6-h848a8c0_0 ++defaults/osx-arm64::libedit-3.1.20230828-h80987f9_0 ++defaults/osx-arm64::libev-4.33-h1a28f6b_1 ++defaults/osx-arm64::libffi-3.4.4-hca03da5_0 ++defaults/osx-arm64::libiconv-1.16-h1a28f6b_2 ++defaults/osx-arm64::libmamba-1.5.3-h15e39b3_0 ++defaults/osx-arm64::libmambapy-1.5.3-py311h1c5506f_0 ++defaults/osx-arm64::libnghttp2-1.57.0-h62f6fdd_0 ++defaults/osx-arm64::libsolv-0.7.24-h514c7bf_0 ++defaults/osx-arm64::libssh2-1.10.0-h02f6b3c_2 ++defaults/osx-arm64::libxml2-2.10.4-h0dcf63f_1 ++defaults/osx-arm64::lz4-c-1.9.4-h313beb8_0 ++defaults/osx-arm64::menuinst-2.0.1-py311hca03da5_1 ++defaults/osx-arm64::ncurses-6.4-h313beb8_0 ++defaults/osx-arm64::openssl-3.0.12-h1a28f6b_0 ++defaults/osx-arm64::packaging-23.1-py311hca03da5_0 ++defaults/osx-arm64::pcre2-10.42-hb066dcc_0 ++defaults/osx-arm64::pip-23.3.1-py311hca03da5_0 ++defaults/osx-arm64::platformdirs-3.10.0-py311hca03da5_0 ++defaults/osx-arm64::pluggy-1.0.0-py311hca03da5_1 ++defaults/osx-arm64::pycosat-0.6.6-py311h80987f9_0 ++defaults/osx-arm64::pyopenssl-23.2.0-py311hca03da5_0 ++defaults/osx-arm64::pysocks-1.7.1-py311hca03da5_0 ++defaults/osx-arm64::python-3.11.5-hb885b13_0 ++defaults/osx-arm64::python.app-3-py311h80987f9_0 ++defaults/osx-arm64::readline-8.2-h1a28f6b_0 ++defaults/osx-arm64::reproc-14.2.4-hc377ac9_1 ++defaults/osx-arm64::reproc-cpp-14.2.4-hc377ac9_1 ++defaults/osx-arm64::requests-2.31.0-py311hca03da5_0 ++defaults/osx-arm64::ruamel.yaml-0.17.21-py311h80987f9_0 ++defaults/osx-arm64::setuptools-68.2.2-py311hca03da5_0 ++defaults/osx-arm64::sqlite-3.41.2-h80987f9_0 ++defaults/osx-arm64::tk-8.6.12-hb8d0fd4_0 ++defaults/osx-arm64::tqdm-4.65.0-py311hb6e6a13_0 ++defaults/osx-arm64::truststore-0.8.0-py311hca03da5_0 ++defaults/osx-arm64::urllib3-1.26.18-py311hca03da5_0 ++defaults/osx-arm64::wheel-0.41.2-py311hca03da5_0 ++defaults/osx-arm64::xz-5.4.5-h80987f9_0 ++defaults/osx-arm64::yaml-cpp-0.8.0-h313beb8_0 ++defaults/osx-arm64::zlib-1.2.13-h5a0b063_0 ++defaults/osx-arm64::zstandard-0.19.0-py311h80987f9_0 ++defaults/osx-arm64::zstd-1.5.5-hd90d995_0 diff --git a/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda-latest/conda-meta/python-3.11.5-hb885b13_0.json b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda-latest/conda-meta/python-3.11.5-hb885b13_0.json new file mode 100644 index 000000000000..90b9af01a4e0 --- /dev/null +++ b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda-latest/conda-meta/python-3.11.5-hb885b13_0.json @@ -0,0 +1,2280 @@ +{ + "build": "hb885b13_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/osx-arm64", + "constrains": [], + "depends": [ + "bzip2 >=1.0.8,<2.0a0", + "libffi >=3.4,<3.5", + "libffi >=3.4,<4.0a0", + "ncurses >=6.4,<7.0a0", + "openssl >=3.0.10,<4.0a0", + "readline >=8.1.2,<9.0a0", + "sqlite >=3.41.2,<4.0a0", + "tk >=8.6.12,<8.7.0a0", + "tzdata", + "xz >=5.4.2,<6.0a0", + "zlib >=1.2.13,<1.3.0a0", + "pip" + ], + "extracted_package_dir": "/Users/donjayamanne/miniconda3/pkgs/python-3.11.5-hb885b13_0", + "features": "", + "files": [ + "bin/2to3", + "bin/2to3-3.11", + "bin/idle3", + "bin/idle3.11", + "bin/pydoc", + "bin/pydoc3", + "bin/pydoc3.11", + "bin/python", + "bin/python3", + "bin/python3-config", + "bin/python3.1", + "bin/python3.11", + "bin/python3.11-config", + "include/python3.11/Python.h", + "include/python3.11/abstract.h", + "include/python3.11/bltinmodule.h", + "include/python3.11/boolobject.h", + "include/python3.11/bytearrayobject.h", + "include/python3.11/bytesobject.h", + "include/python3.11/ceval.h", + "include/python3.11/codecs.h", + "include/python3.11/compile.h", + "include/python3.11/complexobject.h", + "include/python3.11/cpython/abstract.h", + "include/python3.11/cpython/bytearrayobject.h", + "include/python3.11/cpython/bytesobject.h", + "include/python3.11/cpython/cellobject.h", + "include/python3.11/cpython/ceval.h", + "include/python3.11/cpython/classobject.h", + "include/python3.11/cpython/code.h", + "include/python3.11/cpython/compile.h", + "include/python3.11/cpython/complexobject.h", + "include/python3.11/cpython/context.h", + "include/python3.11/cpython/descrobject.h", + "include/python3.11/cpython/dictobject.h", + "include/python3.11/cpython/fileobject.h", + "include/python3.11/cpython/fileutils.h", + "include/python3.11/cpython/floatobject.h", + "include/python3.11/cpython/frameobject.h", + "include/python3.11/cpython/funcobject.h", + "include/python3.11/cpython/genobject.h", + "include/python3.11/cpython/import.h", + "include/python3.11/cpython/initconfig.h", + "include/python3.11/cpython/listobject.h", + "include/python3.11/cpython/longintrepr.h", + "include/python3.11/cpython/longobject.h", + "include/python3.11/cpython/methodobject.h", + "include/python3.11/cpython/modsupport.h", + "include/python3.11/cpython/object.h", + "include/python3.11/cpython/objimpl.h", + "include/python3.11/cpython/odictobject.h", + "include/python3.11/cpython/picklebufobject.h", + "include/python3.11/cpython/pthread_stubs.h", + "include/python3.11/cpython/pyctype.h", + "include/python3.11/cpython/pydebug.h", + "include/python3.11/cpython/pyerrors.h", + "include/python3.11/cpython/pyfpe.h", + "include/python3.11/cpython/pyframe.h", + "include/python3.11/cpython/pylifecycle.h", + "include/python3.11/cpython/pymem.h", + "include/python3.11/cpython/pystate.h", + "include/python3.11/cpython/pythonrun.h", + "include/python3.11/cpython/pythread.h", + "include/python3.11/cpython/pytime.h", + "include/python3.11/cpython/setobject.h", + "include/python3.11/cpython/sysmodule.h", + "include/python3.11/cpython/traceback.h", + "include/python3.11/cpython/tupleobject.h", + "include/python3.11/cpython/unicodeobject.h", + "include/python3.11/cpython/warnings.h", + "include/python3.11/cpython/weakrefobject.h", + "include/python3.11/datetime.h", + "include/python3.11/descrobject.h", + "include/python3.11/dictobject.h", + "include/python3.11/dynamic_annotations.h", + "include/python3.11/enumobject.h", + "include/python3.11/errcode.h", + "include/python3.11/exports.h", + "include/python3.11/fileobject.h", + "include/python3.11/fileutils.h", + "include/python3.11/floatobject.h", + "include/python3.11/frameobject.h", + "include/python3.11/genericaliasobject.h", + "include/python3.11/import.h", + "include/python3.11/internal/pycore_abstract.h", + "include/python3.11/internal/pycore_accu.h", + "include/python3.11/internal/pycore_asdl.h", + "include/python3.11/internal/pycore_ast.h", + "include/python3.11/internal/pycore_ast_state.h", + "include/python3.11/internal/pycore_atomic.h", + "include/python3.11/internal/pycore_atomic_funcs.h", + "include/python3.11/internal/pycore_bitutils.h", + "include/python3.11/internal/pycore_blocks_output_buffer.h", + "include/python3.11/internal/pycore_bytes_methods.h", + "include/python3.11/internal/pycore_bytesobject.h", + "include/python3.11/internal/pycore_call.h", + "include/python3.11/internal/pycore_ceval.h", + "include/python3.11/internal/pycore_code.h", + "include/python3.11/internal/pycore_compile.h", + "include/python3.11/internal/pycore_condvar.h", + "include/python3.11/internal/pycore_context.h", + "include/python3.11/internal/pycore_dict.h", + "include/python3.11/internal/pycore_dtoa.h", + "include/python3.11/internal/pycore_emscripten_signal.h", + "include/python3.11/internal/pycore_exceptions.h", + "include/python3.11/internal/pycore_fileutils.h", + "include/python3.11/internal/pycore_floatobject.h", + "include/python3.11/internal/pycore_format.h", + "include/python3.11/internal/pycore_frame.h", + "include/python3.11/internal/pycore_function.h", + "include/python3.11/internal/pycore_gc.h", + "include/python3.11/internal/pycore_genobject.h", + "include/python3.11/internal/pycore_getopt.h", + "include/python3.11/internal/pycore_gil.h", + "include/python3.11/internal/pycore_global_objects.h", + "include/python3.11/internal/pycore_global_strings.h", + "include/python3.11/internal/pycore_hamt.h", + "include/python3.11/internal/pycore_hashtable.h", + "include/python3.11/internal/pycore_import.h", + "include/python3.11/internal/pycore_initconfig.h", + "include/python3.11/internal/pycore_interp.h", + "include/python3.11/internal/pycore_interpreteridobject.h", + "include/python3.11/internal/pycore_list.h", + "include/python3.11/internal/pycore_long.h", + "include/python3.11/internal/pycore_moduleobject.h", + "include/python3.11/internal/pycore_namespace.h", + "include/python3.11/internal/pycore_object.h", + "include/python3.11/internal/pycore_opcode.h", + "include/python3.11/internal/pycore_parser.h", + "include/python3.11/internal/pycore_pathconfig.h", + "include/python3.11/internal/pycore_pyarena.h", + "include/python3.11/internal/pycore_pyerrors.h", + "include/python3.11/internal/pycore_pyhash.h", + "include/python3.11/internal/pycore_pylifecycle.h", + "include/python3.11/internal/pycore_pymath.h", + "include/python3.11/internal/pycore_pymem.h", + "include/python3.11/internal/pycore_pystate.h", + "include/python3.11/internal/pycore_runtime.h", + "include/python3.11/internal/pycore_runtime_init.h", + "include/python3.11/internal/pycore_signal.h", + "include/python3.11/internal/pycore_sliceobject.h", + "include/python3.11/internal/pycore_strhex.h", + "include/python3.11/internal/pycore_structseq.h", + "include/python3.11/internal/pycore_symtable.h", + "include/python3.11/internal/pycore_sysmodule.h", + "include/python3.11/internal/pycore_traceback.h", + "include/python3.11/internal/pycore_tuple.h", + "include/python3.11/internal/pycore_typeobject.h", + "include/python3.11/internal/pycore_ucnhash.h", + "include/python3.11/internal/pycore_unicodeobject.h", + "include/python3.11/internal/pycore_unionobject.h", + "include/python3.11/internal/pycore_warnings.h", + "include/python3.11/intrcheck.h", + "include/python3.11/iterobject.h", + "include/python3.11/listobject.h", + "include/python3.11/longobject.h", + "include/python3.11/marshal.h", + "include/python3.11/memoryobject.h", + "include/python3.11/methodobject.h", + "include/python3.11/modsupport.h", + "include/python3.11/moduleobject.h", + "include/python3.11/object.h", + "include/python3.11/objimpl.h", + "include/python3.11/opcode.h", + "include/python3.11/osdefs.h", + "include/python3.11/osmodule.h", + "include/python3.11/patchlevel.h", + "include/python3.11/py_curses.h", + "include/python3.11/pybuffer.h", + "include/python3.11/pycapsule.h", + "include/python3.11/pyconfig.h", + "include/python3.11/pydtrace.h", + "include/python3.11/pyerrors.h", + "include/python3.11/pyexpat.h", + "include/python3.11/pyframe.h", + "include/python3.11/pyhash.h", + "include/python3.11/pylifecycle.h", + "include/python3.11/pymacconfig.h", + "include/python3.11/pymacro.h", + "include/python3.11/pymath.h", + "include/python3.11/pymem.h", + "include/python3.11/pyport.h", + "include/python3.11/pystate.h", + "include/python3.11/pystrcmp.h", + "include/python3.11/pystrtod.h", + "include/python3.11/pythonrun.h", + "include/python3.11/pythread.h", + "include/python3.11/pytypedefs.h", + "include/python3.11/rangeobject.h", + "include/python3.11/setobject.h", + "include/python3.11/sliceobject.h", + "include/python3.11/structmember.h", + "include/python3.11/structseq.h", + "include/python3.11/sysmodule.h", + "include/python3.11/token.h", + "include/python3.11/traceback.h", + "include/python3.11/tracemalloc.h", + "include/python3.11/tupleobject.h", + "include/python3.11/typeslots.h", + "include/python3.11/unicodeobject.h", + "include/python3.11/warnings.h", + "include/python3.11/weakrefobject.h", + "lib/libpython3.11.dylib", + "lib/pkgconfig/python-3.11-embed.pc", + "lib/pkgconfig/python-3.11.pc", + "lib/pkgconfig/python3-embed.pc", + "lib/pkgconfig/python3.pc", + "lib/python3.1", + "lib/python3.11/LICENSE.txt", + "lib/python3.11/__future__.py", + "lib/python3.11/__hello__.py", + "lib/python3.11/__phello__/__init__.py", + "lib/python3.11/__phello__/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/__phello__/__pycache__/spam.cpython-311.pyc", + "lib/python3.11/__phello__/spam.py", + "lib/python3.11/__pycache__/__future__.cpython-311.pyc", + "lib/python3.11/__pycache__/__hello__.cpython-311.pyc", + "lib/python3.11/__pycache__/_aix_support.cpython-311.pyc", + "lib/python3.11/__pycache__/_bootsubprocess.cpython-311.pyc", + "lib/python3.11/__pycache__/_collections_abc.cpython-311.pyc", + "lib/python3.11/__pycache__/_compat_pickle.cpython-311.pyc", + "lib/python3.11/__pycache__/_compression.cpython-311.pyc", + "lib/python3.11/__pycache__/_markupbase.cpython-311.pyc", + "lib/python3.11/__pycache__/_osx_support.cpython-311.pyc", + "lib/python3.11/__pycache__/_py_abc.cpython-311.pyc", + "lib/python3.11/__pycache__/_pydecimal.cpython-311.pyc", + "lib/python3.11/__pycache__/_pyio.cpython-311.pyc", + "lib/python3.11/__pycache__/_sitebuiltins.cpython-311.pyc", + "lib/python3.11/__pycache__/_strptime.cpython-311.pyc", + "lib/python3.11/__pycache__/_sysconfigdata__darwin_darwin.cpython-311.pyc", + "lib/python3.11/__pycache__/_sysconfigdata_arm64_apple_darwin20_0_0.cpython-311.pyc", + "lib/python3.11/__pycache__/_threading_local.cpython-311.pyc", + "lib/python3.11/__pycache__/_weakrefset.cpython-311.pyc", + "lib/python3.11/__pycache__/abc.cpython-311.pyc", + "lib/python3.11/__pycache__/aifc.cpython-311.pyc", + "lib/python3.11/__pycache__/antigravity.cpython-311.pyc", + "lib/python3.11/__pycache__/argparse.cpython-311.pyc", + "lib/python3.11/__pycache__/ast.cpython-311.pyc", + "lib/python3.11/__pycache__/asynchat.cpython-311.pyc", + "lib/python3.11/__pycache__/asyncore.cpython-311.pyc", + "lib/python3.11/__pycache__/base64.cpython-311.pyc", + "lib/python3.11/__pycache__/bdb.cpython-311.pyc", + "lib/python3.11/__pycache__/bisect.cpython-311.pyc", + "lib/python3.11/__pycache__/bz2.cpython-311.pyc", + "lib/python3.11/__pycache__/cProfile.cpython-311.pyc", + "lib/python3.11/__pycache__/calendar.cpython-311.pyc", + "lib/python3.11/__pycache__/cgi.cpython-311.pyc", + "lib/python3.11/__pycache__/cgitb.cpython-311.pyc", + "lib/python3.11/__pycache__/chunk.cpython-311.pyc", + "lib/python3.11/__pycache__/cmd.cpython-311.pyc", + "lib/python3.11/__pycache__/code.cpython-311.pyc", + "lib/python3.11/__pycache__/codecs.cpython-311.pyc", + "lib/python3.11/__pycache__/codeop.cpython-311.pyc", + "lib/python3.11/__pycache__/colorsys.cpython-311.pyc", + "lib/python3.11/__pycache__/compileall.cpython-311.pyc", + "lib/python3.11/__pycache__/configparser.cpython-311.pyc", + "lib/python3.11/__pycache__/contextlib.cpython-311.pyc", + "lib/python3.11/__pycache__/contextvars.cpython-311.pyc", + "lib/python3.11/__pycache__/copy.cpython-311.pyc", + "lib/python3.11/__pycache__/copyreg.cpython-311.pyc", + "lib/python3.11/__pycache__/crypt.cpython-311.pyc", + "lib/python3.11/__pycache__/csv.cpython-311.pyc", + "lib/python3.11/__pycache__/dataclasses.cpython-311.pyc", + "lib/python3.11/__pycache__/datetime.cpython-311.pyc", + "lib/python3.11/__pycache__/decimal.cpython-311.pyc", + "lib/python3.11/__pycache__/difflib.cpython-311.pyc", + "lib/python3.11/__pycache__/dis.cpython-311.pyc", + "lib/python3.11/__pycache__/doctest.cpython-311.pyc", + "lib/python3.11/__pycache__/enum.cpython-311.pyc", + "lib/python3.11/__pycache__/filecmp.cpython-311.pyc", + "lib/python3.11/__pycache__/fileinput.cpython-311.pyc", + "lib/python3.11/__pycache__/fnmatch.cpython-311.pyc", + "lib/python3.11/__pycache__/fractions.cpython-311.pyc", + "lib/python3.11/__pycache__/ftplib.cpython-311.pyc", + "lib/python3.11/__pycache__/functools.cpython-311.pyc", + "lib/python3.11/__pycache__/genericpath.cpython-311.pyc", + "lib/python3.11/__pycache__/getopt.cpython-311.pyc", + "lib/python3.11/__pycache__/getpass.cpython-311.pyc", + "lib/python3.11/__pycache__/gettext.cpython-311.pyc", + "lib/python3.11/__pycache__/glob.cpython-311.pyc", + "lib/python3.11/__pycache__/graphlib.cpython-311.pyc", + "lib/python3.11/__pycache__/gzip.cpython-311.pyc", + "lib/python3.11/__pycache__/hashlib.cpython-311.pyc", + "lib/python3.11/__pycache__/heapq.cpython-311.pyc", + "lib/python3.11/__pycache__/hmac.cpython-311.pyc", + "lib/python3.11/__pycache__/imaplib.cpython-311.pyc", + "lib/python3.11/__pycache__/imghdr.cpython-311.pyc", + "lib/python3.11/__pycache__/imp.cpython-311.pyc", + "lib/python3.11/__pycache__/inspect.cpython-311.pyc", + "lib/python3.11/__pycache__/io.cpython-311.pyc", + "lib/python3.11/__pycache__/ipaddress.cpython-311.pyc", + "lib/python3.11/__pycache__/keyword.cpython-311.pyc", + "lib/python3.11/__pycache__/linecache.cpython-311.pyc", + "lib/python3.11/__pycache__/locale.cpython-311.pyc", + "lib/python3.11/__pycache__/lzma.cpython-311.pyc", + "lib/python3.11/__pycache__/mailbox.cpython-311.pyc", + "lib/python3.11/__pycache__/mailcap.cpython-311.pyc", + "lib/python3.11/__pycache__/mimetypes.cpython-311.pyc", + "lib/python3.11/__pycache__/modulefinder.cpython-311.pyc", + "lib/python3.11/__pycache__/netrc.cpython-311.pyc", + "lib/python3.11/__pycache__/nntplib.cpython-311.pyc", + "lib/python3.11/__pycache__/ntpath.cpython-311.pyc", + "lib/python3.11/__pycache__/nturl2path.cpython-311.pyc", + "lib/python3.11/__pycache__/numbers.cpython-311.pyc", + "lib/python3.11/__pycache__/opcode.cpython-311.pyc", + "lib/python3.11/__pycache__/operator.cpython-311.pyc", + "lib/python3.11/__pycache__/optparse.cpython-311.pyc", + "lib/python3.11/__pycache__/os.cpython-311.pyc", + "lib/python3.11/__pycache__/pathlib.cpython-311.pyc", + "lib/python3.11/__pycache__/pdb.cpython-311.pyc", + "lib/python3.11/__pycache__/pickle.cpython-311.pyc", + "lib/python3.11/__pycache__/pickletools.cpython-311.pyc", + "lib/python3.11/__pycache__/pipes.cpython-311.pyc", + "lib/python3.11/__pycache__/pkgutil.cpython-311.pyc", + "lib/python3.11/__pycache__/platform.cpython-311.pyc", + "lib/python3.11/__pycache__/plistlib.cpython-311.pyc", + "lib/python3.11/__pycache__/poplib.cpython-311.pyc", + "lib/python3.11/__pycache__/posixpath.cpython-311.pyc", + "lib/python3.11/__pycache__/pprint.cpython-311.pyc", + "lib/python3.11/__pycache__/profile.cpython-311.pyc", + "lib/python3.11/__pycache__/pstats.cpython-311.pyc", + "lib/python3.11/__pycache__/pty.cpython-311.pyc", + "lib/python3.11/__pycache__/py_compile.cpython-311.pyc", + "lib/python3.11/__pycache__/pyclbr.cpython-311.pyc", + "lib/python3.11/__pycache__/pydoc.cpython-311.pyc", + "lib/python3.11/__pycache__/queue.cpython-311.pyc", + "lib/python3.11/__pycache__/quopri.cpython-311.pyc", + "lib/python3.11/__pycache__/random.cpython-311.pyc", + "lib/python3.11/__pycache__/reprlib.cpython-311.pyc", + "lib/python3.11/__pycache__/rlcompleter.cpython-311.pyc", + "lib/python3.11/__pycache__/runpy.cpython-311.pyc", + "lib/python3.11/__pycache__/sched.cpython-311.pyc", + "lib/python3.11/__pycache__/secrets.cpython-311.pyc", + "lib/python3.11/__pycache__/selectors.cpython-311.pyc", + "lib/python3.11/__pycache__/shelve.cpython-311.pyc", + "lib/python3.11/__pycache__/shlex.cpython-311.pyc", + "lib/python3.11/__pycache__/shutil.cpython-311.pyc", + "lib/python3.11/__pycache__/signal.cpython-311.pyc", + "lib/python3.11/__pycache__/site.cpython-311.pyc", + "lib/python3.11/__pycache__/smtpd.cpython-311.pyc", + "lib/python3.11/__pycache__/smtplib.cpython-311.pyc", + "lib/python3.11/__pycache__/sndhdr.cpython-311.pyc", + "lib/python3.11/__pycache__/socket.cpython-311.pyc", + "lib/python3.11/__pycache__/socketserver.cpython-311.pyc", + "lib/python3.11/__pycache__/sre_compile.cpython-311.pyc", + "lib/python3.11/__pycache__/sre_constants.cpython-311.pyc", + "lib/python3.11/__pycache__/sre_parse.cpython-311.pyc", + "lib/python3.11/__pycache__/ssl.cpython-311.pyc", + "lib/python3.11/__pycache__/stat.cpython-311.pyc", + "lib/python3.11/__pycache__/statistics.cpython-311.pyc", + "lib/python3.11/__pycache__/string.cpython-311.pyc", + "lib/python3.11/__pycache__/stringprep.cpython-311.pyc", + "lib/python3.11/__pycache__/struct.cpython-311.pyc", + "lib/python3.11/__pycache__/subprocess.cpython-311.pyc", + "lib/python3.11/__pycache__/sunau.cpython-311.pyc", + "lib/python3.11/__pycache__/symtable.cpython-311.pyc", + "lib/python3.11/__pycache__/sysconfig.cpython-311.pyc", + "lib/python3.11/__pycache__/tabnanny.cpython-311.pyc", + "lib/python3.11/__pycache__/tarfile.cpython-311.pyc", + "lib/python3.11/__pycache__/telnetlib.cpython-311.pyc", + "lib/python3.11/__pycache__/tempfile.cpython-311.pyc", + "lib/python3.11/__pycache__/textwrap.cpython-311.pyc", + "lib/python3.11/__pycache__/this.cpython-311.pyc", + "lib/python3.11/__pycache__/threading.cpython-311.pyc", + "lib/python3.11/__pycache__/timeit.cpython-311.pyc", + "lib/python3.11/__pycache__/token.cpython-311.pyc", + "lib/python3.11/__pycache__/tokenize.cpython-311.pyc", + "lib/python3.11/__pycache__/trace.cpython-311.pyc", + "lib/python3.11/__pycache__/traceback.cpython-311.pyc", + "lib/python3.11/__pycache__/tracemalloc.cpython-311.pyc", + "lib/python3.11/__pycache__/tty.cpython-311.pyc", + "lib/python3.11/__pycache__/turtle.cpython-311.pyc", + "lib/python3.11/__pycache__/types.cpython-311.pyc", + "lib/python3.11/__pycache__/typing.cpython-311.pyc", + "lib/python3.11/__pycache__/uu.cpython-311.pyc", + "lib/python3.11/__pycache__/uuid.cpython-311.pyc", + "lib/python3.11/__pycache__/warnings.cpython-311.pyc", + "lib/python3.11/__pycache__/wave.cpython-311.pyc", + "lib/python3.11/__pycache__/weakref.cpython-311.pyc", + "lib/python3.11/__pycache__/webbrowser.cpython-311.pyc", + "lib/python3.11/__pycache__/xdrlib.cpython-311.pyc", + "lib/python3.11/__pycache__/zipapp.cpython-311.pyc", + "lib/python3.11/__pycache__/zipfile.cpython-311.pyc", + "lib/python3.11/__pycache__/zipimport.cpython-311.pyc", + "lib/python3.11/_aix_support.py", + "lib/python3.11/_bootsubprocess.py", + "lib/python3.11/_collections_abc.py", + "lib/python3.11/_compat_pickle.py", + "lib/python3.11/_compression.py", + "lib/python3.11/_markupbase.py", + "lib/python3.11/_osx_support.py", + "lib/python3.11/_py_abc.py", + "lib/python3.11/_pydecimal.py", + "lib/python3.11/_pyio.py", + "lib/python3.11/_sitebuiltins.py", + "lib/python3.11/_strptime.py", + "lib/python3.11/_sysconfigdata__darwin_darwin.py", + "lib/python3.11/_sysconfigdata__darwin_darwin.py.orig", + "lib/python3.11/_sysconfigdata_arm64_apple_darwin20_0_0.py", + "lib/python3.11/_threading_local.py", + "lib/python3.11/_weakrefset.py", + "lib/python3.11/abc.py", + "lib/python3.11/aifc.py", + "lib/python3.11/antigravity.py", + "lib/python3.11/argparse.py", + "lib/python3.11/ast.py", + "lib/python3.11/asynchat.py", + "lib/python3.11/asyncio/__init__.py", + "lib/python3.11/asyncio/__main__.py", + "lib/python3.11/asyncio/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/base_events.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/base_futures.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/base_subprocess.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/base_tasks.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/constants.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/coroutines.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/events.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/exceptions.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/format_helpers.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/futures.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/locks.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/log.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/mixins.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/proactor_events.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/protocols.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/queues.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/runners.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/selector_events.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/sslproto.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/staggered.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/streams.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/subprocess.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/taskgroups.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/tasks.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/threads.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/timeouts.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/transports.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/trsock.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/unix_events.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/windows_events.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/windows_utils.cpython-311.pyc", + "lib/python3.11/asyncio/base_events.py", + "lib/python3.11/asyncio/base_futures.py", + "lib/python3.11/asyncio/base_subprocess.py", + "lib/python3.11/asyncio/base_tasks.py", + "lib/python3.11/asyncio/constants.py", + "lib/python3.11/asyncio/coroutines.py", + "lib/python3.11/asyncio/events.py", + "lib/python3.11/asyncio/exceptions.py", + "lib/python3.11/asyncio/format_helpers.py", + "lib/python3.11/asyncio/futures.py", + "lib/python3.11/asyncio/locks.py", + "lib/python3.11/asyncio/log.py", + "lib/python3.11/asyncio/mixins.py", + "lib/python3.11/asyncio/proactor_events.py", + "lib/python3.11/asyncio/protocols.py", + "lib/python3.11/asyncio/queues.py", + "lib/python3.11/asyncio/runners.py", + "lib/python3.11/asyncio/selector_events.py", + "lib/python3.11/asyncio/sslproto.py", + "lib/python3.11/asyncio/staggered.py", + "lib/python3.11/asyncio/streams.py", + "lib/python3.11/asyncio/subprocess.py", + "lib/python3.11/asyncio/taskgroups.py", + "lib/python3.11/asyncio/tasks.py", + "lib/python3.11/asyncio/threads.py", + "lib/python3.11/asyncio/timeouts.py", + "lib/python3.11/asyncio/transports.py", + "lib/python3.11/asyncio/trsock.py", + "lib/python3.11/asyncio/unix_events.py", + "lib/python3.11/asyncio/windows_events.py", + "lib/python3.11/asyncio/windows_utils.py", + "lib/python3.11/asyncore.py", + "lib/python3.11/base64.py", + "lib/python3.11/bdb.py", + "lib/python3.11/bisect.py", + "lib/python3.11/bz2.py", + "lib/python3.11/cProfile.py", + "lib/python3.11/calendar.py", + "lib/python3.11/cgi.py", + "lib/python3.11/cgitb.py", + "lib/python3.11/chunk.py", + "lib/python3.11/cmd.py", + "lib/python3.11/code.py", + "lib/python3.11/codecs.py", + "lib/python3.11/codeop.py", + "lib/python3.11/collections/__init__.py", + "lib/python3.11/collections/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/collections/__pycache__/abc.cpython-311.pyc", + "lib/python3.11/collections/abc.py", + "lib/python3.11/colorsys.py", + "lib/python3.11/compileall.py", + "lib/python3.11/concurrent/__init__.py", + "lib/python3.11/concurrent/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/concurrent/futures/__init__.py", + "lib/python3.11/concurrent/futures/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/concurrent/futures/__pycache__/_base.cpython-311.pyc", + "lib/python3.11/concurrent/futures/__pycache__/process.cpython-311.pyc", + "lib/python3.11/concurrent/futures/__pycache__/thread.cpython-311.pyc", + "lib/python3.11/concurrent/futures/_base.py", + "lib/python3.11/concurrent/futures/process.py", + "lib/python3.11/concurrent/futures/thread.py", + "lib/python3.11/config-3.11-darwin/Makefile", + "lib/python3.11/config-3.11-darwin/Setup", + "lib/python3.11/config-3.11-darwin/Setup.bootstrap", + "lib/python3.11/config-3.11-darwin/Setup.local", + "lib/python3.11/config-3.11-darwin/Setup.stdlib", + "lib/python3.11/config-3.11-darwin/__pycache__/python-config.cpython-311.pyc", + "lib/python3.11/config-3.11-darwin/config.c", + "lib/python3.11/config-3.11-darwin/config.c.in", + "lib/python3.11/config-3.11-darwin/install-sh", + "lib/python3.11/config-3.11-darwin/makesetup", + "lib/python3.11/config-3.11-darwin/python-config.py", + "lib/python3.11/config-3.11-darwin/python.o", + "lib/python3.11/configparser.py", + "lib/python3.11/contextlib.py", + "lib/python3.11/contextvars.py", + "lib/python3.11/copy.py", + "lib/python3.11/copyreg.py", + "lib/python3.11/crypt.py", + "lib/python3.11/csv.py", + "lib/python3.11/ctypes/__init__.py", + "lib/python3.11/ctypes/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/ctypes/__pycache__/_aix.cpython-311.pyc", + "lib/python3.11/ctypes/__pycache__/_endian.cpython-311.pyc", + "lib/python3.11/ctypes/__pycache__/util.cpython-311.pyc", + "lib/python3.11/ctypes/__pycache__/wintypes.cpython-311.pyc", + "lib/python3.11/ctypes/_aix.py", + "lib/python3.11/ctypes/_endian.py", + "lib/python3.11/ctypes/macholib/README.ctypes", + "lib/python3.11/ctypes/macholib/__init__.py", + "lib/python3.11/ctypes/macholib/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/ctypes/macholib/__pycache__/dyld.cpython-311.pyc", + "lib/python3.11/ctypes/macholib/__pycache__/dylib.cpython-311.pyc", + "lib/python3.11/ctypes/macholib/__pycache__/framework.cpython-311.pyc", + "lib/python3.11/ctypes/macholib/dyld.py", + "lib/python3.11/ctypes/macholib/dylib.py", + "lib/python3.11/ctypes/macholib/fetch_macholib", + "lib/python3.11/ctypes/macholib/fetch_macholib.bat", + "lib/python3.11/ctypes/macholib/framework.py", + "lib/python3.11/ctypes/util.py", + "lib/python3.11/ctypes/wintypes.py", + "lib/python3.11/curses/__init__.py", + "lib/python3.11/curses/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/curses/__pycache__/ascii.cpython-311.pyc", + "lib/python3.11/curses/__pycache__/has_key.cpython-311.pyc", + "lib/python3.11/curses/__pycache__/panel.cpython-311.pyc", + "lib/python3.11/curses/__pycache__/textpad.cpython-311.pyc", + "lib/python3.11/curses/ascii.py", + "lib/python3.11/curses/has_key.py", + "lib/python3.11/curses/panel.py", + "lib/python3.11/curses/textpad.py", + "lib/python3.11/dataclasses.py", + "lib/python3.11/datetime.py", + "lib/python3.11/dbm/__init__.py", + "lib/python3.11/dbm/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/dbm/__pycache__/dumb.cpython-311.pyc", + "lib/python3.11/dbm/__pycache__/gnu.cpython-311.pyc", + "lib/python3.11/dbm/__pycache__/ndbm.cpython-311.pyc", + "lib/python3.11/dbm/dumb.py", + "lib/python3.11/dbm/gnu.py", + "lib/python3.11/dbm/ndbm.py", + "lib/python3.11/decimal.py", + "lib/python3.11/difflib.py", + "lib/python3.11/dis.py", + "lib/python3.11/distutils/README", + "lib/python3.11/distutils/__init__.py", + "lib/python3.11/distutils/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/_msvccompiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/archive_util.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/bcppcompiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/ccompiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/cmd.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/config.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/core.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/cygwinccompiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/debug.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/dep_util.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/dir_util.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/dist.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/errors.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/extension.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/fancy_getopt.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/file_util.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/filelist.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/log.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/msvc9compiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/msvccompiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/spawn.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/sysconfig.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/text_file.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/unixccompiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/util.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/version.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/versionpredicate.cpython-311.pyc", + "lib/python3.11/distutils/_msvccompiler.py", + "lib/python3.11/distutils/archive_util.py", + "lib/python3.11/distutils/bcppcompiler.py", + "lib/python3.11/distutils/ccompiler.py", + "lib/python3.11/distutils/cmd.py", + "lib/python3.11/distutils/command/__init__.py", + "lib/python3.11/distutils/command/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/bdist.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/bdist_dumb.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/bdist_rpm.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/build.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/build_clib.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/build_ext.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/build_py.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/build_scripts.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/check.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/clean.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/config.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/install.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/install_data.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/install_egg_info.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/install_headers.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/install_lib.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/install_scripts.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/register.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/sdist.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/upload.cpython-311.pyc", + "lib/python3.11/distutils/command/bdist.py", + "lib/python3.11/distutils/command/bdist_dumb.py", + "lib/python3.11/distutils/command/bdist_rpm.py", + "lib/python3.11/distutils/command/build.py", + "lib/python3.11/distutils/command/build_clib.py", + "lib/python3.11/distutils/command/build_ext.py", + "lib/python3.11/distutils/command/build_py.py", + "lib/python3.11/distutils/command/build_scripts.py", + "lib/python3.11/distutils/command/check.py", + "lib/python3.11/distutils/command/clean.py", + "lib/python3.11/distutils/command/command_template", + "lib/python3.11/distutils/command/config.py", + "lib/python3.11/distutils/command/install.py", + "lib/python3.11/distutils/command/install_data.py", + "lib/python3.11/distutils/command/install_egg_info.py", + "lib/python3.11/distutils/command/install_headers.py", + "lib/python3.11/distutils/command/install_lib.py", + "lib/python3.11/distutils/command/install_scripts.py", + "lib/python3.11/distutils/command/register.py", + "lib/python3.11/distutils/command/sdist.py", + "lib/python3.11/distutils/command/upload.py", + "lib/python3.11/distutils/config.py", + "lib/python3.11/distutils/core.py", + "lib/python3.11/distutils/cygwinccompiler.py", + "lib/python3.11/distutils/debug.py", + "lib/python3.11/distutils/dep_util.py", + "lib/python3.11/distutils/dir_util.py", + "lib/python3.11/distutils/dist.py", + "lib/python3.11/distutils/errors.py", + "lib/python3.11/distutils/extension.py", + "lib/python3.11/distutils/fancy_getopt.py", + "lib/python3.11/distutils/file_util.py", + "lib/python3.11/distutils/filelist.py", + "lib/python3.11/distutils/log.py", + "lib/python3.11/distutils/msvc9compiler.py", + "lib/python3.11/distutils/msvccompiler.py", + "lib/python3.11/distutils/spawn.py", + "lib/python3.11/distutils/sysconfig.py", + "lib/python3.11/distutils/tests/Setup.sample", + "lib/python3.11/distutils/tests/__init__.py", + "lib/python3.11/distutils/tests/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/support.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_archive_util.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_bdist.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_bdist_dumb.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_bdist_rpm.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_build.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_build_clib.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_build_ext.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_build_py.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_build_scripts.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_check.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_clean.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_cmd.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_config.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_config_cmd.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_core.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_cygwinccompiler.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_dep_util.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_dir_util.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_dist.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_extension.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_file_util.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_filelist.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_install.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_install_data.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_install_headers.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_install_lib.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_install_scripts.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_log.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_msvc9compiler.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_msvccompiler.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_register.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_sdist.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_spawn.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_sysconfig.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_text_file.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_unixccompiler.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_upload.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_util.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_version.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_versionpredicate.cpython-311.pyc", + "lib/python3.11/distutils/tests/includetest.rst", + "lib/python3.11/distutils/tests/support.py", + "lib/python3.11/distutils/tests/test_archive_util.py", + "lib/python3.11/distutils/tests/test_bdist.py", + "lib/python3.11/distutils/tests/test_bdist_dumb.py", + "lib/python3.11/distutils/tests/test_bdist_rpm.py", + "lib/python3.11/distutils/tests/test_build.py", + "lib/python3.11/distutils/tests/test_build_clib.py", + "lib/python3.11/distutils/tests/test_build_ext.py", + "lib/python3.11/distutils/tests/test_build_py.py", + "lib/python3.11/distutils/tests/test_build_scripts.py", + "lib/python3.11/distutils/tests/test_check.py", + "lib/python3.11/distutils/tests/test_clean.py", + "lib/python3.11/distutils/tests/test_cmd.py", + "lib/python3.11/distutils/tests/test_config.py", + "lib/python3.11/distutils/tests/test_config_cmd.py", + "lib/python3.11/distutils/tests/test_core.py", + "lib/python3.11/distutils/tests/test_cygwinccompiler.py", + "lib/python3.11/distutils/tests/test_dep_util.py", + "lib/python3.11/distutils/tests/test_dir_util.py", + "lib/python3.11/distutils/tests/test_dist.py", + "lib/python3.11/distutils/tests/test_extension.py", + "lib/python3.11/distutils/tests/test_file_util.py", + "lib/python3.11/distutils/tests/test_filelist.py", + "lib/python3.11/distutils/tests/test_install.py", + "lib/python3.11/distutils/tests/test_install_data.py", + "lib/python3.11/distutils/tests/test_install_headers.py", + "lib/python3.11/distutils/tests/test_install_lib.py", + "lib/python3.11/distutils/tests/test_install_scripts.py", + "lib/python3.11/distutils/tests/test_log.py", + "lib/python3.11/distutils/tests/test_msvc9compiler.py", + "lib/python3.11/distutils/tests/test_msvccompiler.py", + "lib/python3.11/distutils/tests/test_register.py", + "lib/python3.11/distutils/tests/test_sdist.py", + "lib/python3.11/distutils/tests/test_spawn.py", + "lib/python3.11/distutils/tests/test_sysconfig.py", + "lib/python3.11/distutils/tests/test_text_file.py", + "lib/python3.11/distutils/tests/test_unixccompiler.py", + "lib/python3.11/distutils/tests/test_upload.py", + "lib/python3.11/distutils/tests/test_util.py", + "lib/python3.11/distutils/tests/test_version.py", + "lib/python3.11/distutils/tests/test_versionpredicate.py", + "lib/python3.11/distutils/tests/xxmodule.c", + "lib/python3.11/distutils/text_file.py", + "lib/python3.11/distutils/unixccompiler.py", + "lib/python3.11/distutils/util.py", + "lib/python3.11/distutils/version.py", + "lib/python3.11/distutils/versionpredicate.py", + "lib/python3.11/doctest.py", + "lib/python3.11/email/__init__.py", + "lib/python3.11/email/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/email/__pycache__/_encoded_words.cpython-311.pyc", + "lib/python3.11/email/__pycache__/_header_value_parser.cpython-311.pyc", + "lib/python3.11/email/__pycache__/_parseaddr.cpython-311.pyc", + "lib/python3.11/email/__pycache__/_policybase.cpython-311.pyc", + "lib/python3.11/email/__pycache__/base64mime.cpython-311.pyc", + "lib/python3.11/email/__pycache__/charset.cpython-311.pyc", + "lib/python3.11/email/__pycache__/contentmanager.cpython-311.pyc", + "lib/python3.11/email/__pycache__/encoders.cpython-311.pyc", + "lib/python3.11/email/__pycache__/errors.cpython-311.pyc", + "lib/python3.11/email/__pycache__/feedparser.cpython-311.pyc", + "lib/python3.11/email/__pycache__/generator.cpython-311.pyc", + "lib/python3.11/email/__pycache__/header.cpython-311.pyc", + "lib/python3.11/email/__pycache__/headerregistry.cpython-311.pyc", + "lib/python3.11/email/__pycache__/iterators.cpython-311.pyc", + "lib/python3.11/email/__pycache__/message.cpython-311.pyc", + "lib/python3.11/email/__pycache__/parser.cpython-311.pyc", + "lib/python3.11/email/__pycache__/policy.cpython-311.pyc", + "lib/python3.11/email/__pycache__/quoprimime.cpython-311.pyc", + "lib/python3.11/email/__pycache__/utils.cpython-311.pyc", + "lib/python3.11/email/_encoded_words.py", + "lib/python3.11/email/_header_value_parser.py", + "lib/python3.11/email/_parseaddr.py", + "lib/python3.11/email/_policybase.py", + "lib/python3.11/email/architecture.rst", + "lib/python3.11/email/base64mime.py", + "lib/python3.11/email/charset.py", + "lib/python3.11/email/contentmanager.py", + "lib/python3.11/email/encoders.py", + "lib/python3.11/email/errors.py", + "lib/python3.11/email/feedparser.py", + "lib/python3.11/email/generator.py", + "lib/python3.11/email/header.py", + "lib/python3.11/email/headerregistry.py", + "lib/python3.11/email/iterators.py", + "lib/python3.11/email/message.py", + "lib/python3.11/email/mime/__init__.py", + "lib/python3.11/email/mime/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/application.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/audio.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/base.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/image.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/message.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/multipart.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/nonmultipart.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/text.cpython-311.pyc", + "lib/python3.11/email/mime/application.py", + "lib/python3.11/email/mime/audio.py", + "lib/python3.11/email/mime/base.py", + "lib/python3.11/email/mime/image.py", + "lib/python3.11/email/mime/message.py", + "lib/python3.11/email/mime/multipart.py", + "lib/python3.11/email/mime/nonmultipart.py", + "lib/python3.11/email/mime/text.py", + "lib/python3.11/email/parser.py", + "lib/python3.11/email/policy.py", + "lib/python3.11/email/quoprimime.py", + "lib/python3.11/email/utils.py", + "lib/python3.11/encodings/__init__.py", + "lib/python3.11/encodings/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/aliases.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/ascii.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/base64_codec.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/big5.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/big5hkscs.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/bz2_codec.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/charmap.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp037.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1006.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1026.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1125.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1140.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1250.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1251.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1252.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1253.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1254.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1255.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1256.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1257.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1258.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp273.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp424.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp437.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp500.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp720.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp737.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp775.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp850.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp852.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp855.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp856.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp857.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp858.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp860.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp861.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp862.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp863.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp864.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp865.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp866.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp869.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp874.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp875.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp932.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp949.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp950.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/euc_jis_2004.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/euc_jisx0213.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/euc_jp.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/euc_kr.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/gb18030.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/gb2312.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/gbk.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/hex_codec.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/hp_roman8.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/hz.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/idna.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_jp.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_jp_1.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_jp_2.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_jp_2004.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_jp_3.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_jp_ext.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_kr.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_1.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_10.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_11.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_13.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_14.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_15.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_16.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_2.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_3.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_4.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_5.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_6.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_7.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_8.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_9.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/johab.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/koi8_r.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/koi8_t.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/koi8_u.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/kz1048.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/latin_1.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_arabic.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_croatian.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_cyrillic.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_farsi.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_greek.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_iceland.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_latin2.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_roman.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_romanian.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_turkish.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mbcs.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/oem.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/palmos.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/ptcp154.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/punycode.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/quopri_codec.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/raw_unicode_escape.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/rot_13.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/shift_jis.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/shift_jis_2004.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/shift_jisx0213.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/tis_620.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/undefined.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/unicode_escape.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_16.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_16_be.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_16_le.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_32.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_32_be.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_32_le.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_7.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_8.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_8_sig.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/uu_codec.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/zlib_codec.cpython-311.pyc", + "lib/python3.11/encodings/aliases.py", + "lib/python3.11/encodings/ascii.py", + "lib/python3.11/encodings/base64_codec.py", + "lib/python3.11/encodings/big5.py", + "lib/python3.11/encodings/big5hkscs.py", + "lib/python3.11/encodings/bz2_codec.py", + "lib/python3.11/encodings/charmap.py", + "lib/python3.11/encodings/cp037.py", + "lib/python3.11/encodings/cp1006.py", + "lib/python3.11/encodings/cp1026.py", + "lib/python3.11/encodings/cp1125.py", + "lib/python3.11/encodings/cp1140.py", + "lib/python3.11/encodings/cp1250.py", + "lib/python3.11/encodings/cp1251.py", + "lib/python3.11/encodings/cp1252.py", + "lib/python3.11/encodings/cp1253.py", + "lib/python3.11/encodings/cp1254.py", + "lib/python3.11/encodings/cp1255.py", + "lib/python3.11/encodings/cp1256.py", + "lib/python3.11/encodings/cp1257.py", + "lib/python3.11/encodings/cp1258.py", + "lib/python3.11/encodings/cp273.py", + "lib/python3.11/encodings/cp424.py", + "lib/python3.11/encodings/cp437.py", + "lib/python3.11/encodings/cp500.py", + "lib/python3.11/encodings/cp720.py", + "lib/python3.11/encodings/cp737.py", + "lib/python3.11/encodings/cp775.py", + "lib/python3.11/encodings/cp850.py", + "lib/python3.11/encodings/cp852.py", + "lib/python3.11/encodings/cp855.py", + "lib/python3.11/encodings/cp856.py", + "lib/python3.11/encodings/cp857.py", + "lib/python3.11/encodings/cp858.py", + "lib/python3.11/encodings/cp860.py", + "lib/python3.11/encodings/cp861.py", + "lib/python3.11/encodings/cp862.py", + "lib/python3.11/encodings/cp863.py", + "lib/python3.11/encodings/cp864.py", + "lib/python3.11/encodings/cp865.py", + "lib/python3.11/encodings/cp866.py", + "lib/python3.11/encodings/cp869.py", + "lib/python3.11/encodings/cp874.py", + "lib/python3.11/encodings/cp875.py", + "lib/python3.11/encodings/cp932.py", + "lib/python3.11/encodings/cp949.py", + "lib/python3.11/encodings/cp950.py", + "lib/python3.11/encodings/euc_jis_2004.py", + "lib/python3.11/encodings/euc_jisx0213.py", + "lib/python3.11/encodings/euc_jp.py", + "lib/python3.11/encodings/euc_kr.py", + "lib/python3.11/encodings/gb18030.py", + "lib/python3.11/encodings/gb2312.py", + "lib/python3.11/encodings/gbk.py", + "lib/python3.11/encodings/hex_codec.py", + "lib/python3.11/encodings/hp_roman8.py", + "lib/python3.11/encodings/hz.py", + "lib/python3.11/encodings/idna.py", + "lib/python3.11/encodings/iso2022_jp.py", + "lib/python3.11/encodings/iso2022_jp_1.py", + "lib/python3.11/encodings/iso2022_jp_2.py", + "lib/python3.11/encodings/iso2022_jp_2004.py", + "lib/python3.11/encodings/iso2022_jp_3.py", + "lib/python3.11/encodings/iso2022_jp_ext.py", + "lib/python3.11/encodings/iso2022_kr.py", + "lib/python3.11/encodings/iso8859_1.py", + "lib/python3.11/encodings/iso8859_10.py", + "lib/python3.11/encodings/iso8859_11.py", + "lib/python3.11/encodings/iso8859_13.py", + "lib/python3.11/encodings/iso8859_14.py", + "lib/python3.11/encodings/iso8859_15.py", + "lib/python3.11/encodings/iso8859_16.py", + "lib/python3.11/encodings/iso8859_2.py", + "lib/python3.11/encodings/iso8859_3.py", + "lib/python3.11/encodings/iso8859_4.py", + "lib/python3.11/encodings/iso8859_5.py", + "lib/python3.11/encodings/iso8859_6.py", + "lib/python3.11/encodings/iso8859_7.py", + "lib/python3.11/encodings/iso8859_8.py", + "lib/python3.11/encodings/iso8859_9.py", + "lib/python3.11/encodings/johab.py", + "lib/python3.11/encodings/koi8_r.py", + "lib/python3.11/encodings/koi8_t.py", + "lib/python3.11/encodings/koi8_u.py", + "lib/python3.11/encodings/kz1048.py", + "lib/python3.11/encodings/latin_1.py", + "lib/python3.11/encodings/mac_arabic.py", + "lib/python3.11/encodings/mac_croatian.py", + "lib/python3.11/encodings/mac_cyrillic.py", + "lib/python3.11/encodings/mac_farsi.py", + "lib/python3.11/encodings/mac_greek.py", + "lib/python3.11/encodings/mac_iceland.py", + "lib/python3.11/encodings/mac_latin2.py", + "lib/python3.11/encodings/mac_roman.py", + "lib/python3.11/encodings/mac_romanian.py", + "lib/python3.11/encodings/mac_turkish.py", + "lib/python3.11/encodings/mbcs.py", + "lib/python3.11/encodings/oem.py", + "lib/python3.11/encodings/palmos.py", + "lib/python3.11/encodings/ptcp154.py", + "lib/python3.11/encodings/punycode.py", + "lib/python3.11/encodings/quopri_codec.py", + "lib/python3.11/encodings/raw_unicode_escape.py", + "lib/python3.11/encodings/rot_13.py", + "lib/python3.11/encodings/shift_jis.py", + "lib/python3.11/encodings/shift_jis_2004.py", + "lib/python3.11/encodings/shift_jisx0213.py", + "lib/python3.11/encodings/tis_620.py", + "lib/python3.11/encodings/undefined.py", + "lib/python3.11/encodings/unicode_escape.py", + "lib/python3.11/encodings/utf_16.py", + "lib/python3.11/encodings/utf_16_be.py", + "lib/python3.11/encodings/utf_16_le.py", + "lib/python3.11/encodings/utf_32.py", + "lib/python3.11/encodings/utf_32_be.py", + "lib/python3.11/encodings/utf_32_le.py", + "lib/python3.11/encodings/utf_7.py", + "lib/python3.11/encodings/utf_8.py", + "lib/python3.11/encodings/utf_8_sig.py", + "lib/python3.11/encodings/uu_codec.py", + "lib/python3.11/encodings/zlib_codec.py", + "lib/python3.11/ensurepip/__init__.py", + "lib/python3.11/ensurepip/__main__.py", + "lib/python3.11/ensurepip/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/ensurepip/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/ensurepip/__pycache__/_uninstall.cpython-311.pyc", + "lib/python3.11/ensurepip/_bundled/pip-23.2.1-py3-none-any.whl", + "lib/python3.11/ensurepip/_bundled/setuptools-65.5.0-py3-none-any.whl", + "lib/python3.11/ensurepip/_uninstall.py", + "lib/python3.11/enum.py", + "lib/python3.11/filecmp.py", + "lib/python3.11/fileinput.py", + "lib/python3.11/fnmatch.py", + "lib/python3.11/fractions.py", + "lib/python3.11/ftplib.py", + "lib/python3.11/functools.py", + "lib/python3.11/genericpath.py", + "lib/python3.11/getopt.py", + "lib/python3.11/getpass.py", + "lib/python3.11/gettext.py", + "lib/python3.11/glob.py", + "lib/python3.11/graphlib.py", + "lib/python3.11/gzip.py", + "lib/python3.11/hashlib.py", + "lib/python3.11/heapq.py", + "lib/python3.11/hmac.py", + "lib/python3.11/html/__init__.py", + "lib/python3.11/html/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/html/__pycache__/entities.cpython-311.pyc", + "lib/python3.11/html/__pycache__/parser.cpython-311.pyc", + "lib/python3.11/html/entities.py", + "lib/python3.11/html/parser.py", + "lib/python3.11/http/__init__.py", + "lib/python3.11/http/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/http/__pycache__/client.cpython-311.pyc", + "lib/python3.11/http/__pycache__/cookiejar.cpython-311.pyc", + "lib/python3.11/http/__pycache__/cookies.cpython-311.pyc", + "lib/python3.11/http/__pycache__/server.cpython-311.pyc", + "lib/python3.11/http/client.py", + "lib/python3.11/http/cookiejar.py", + "lib/python3.11/http/cookies.py", + "lib/python3.11/http/server.py", + "lib/python3.11/idlelib/CREDITS.txt", + "lib/python3.11/idlelib/ChangeLog", + "lib/python3.11/idlelib/HISTORY.txt", + "lib/python3.11/idlelib/Icons/README.txt", + "lib/python3.11/idlelib/Icons/folder.gif", + "lib/python3.11/idlelib/Icons/idle.ico", + "lib/python3.11/idlelib/Icons/idle_16.gif", + "lib/python3.11/idlelib/Icons/idle_16.png", + "lib/python3.11/idlelib/Icons/idle_256.png", + "lib/python3.11/idlelib/Icons/idle_32.gif", + "lib/python3.11/idlelib/Icons/idle_32.png", + "lib/python3.11/idlelib/Icons/idle_48.gif", + "lib/python3.11/idlelib/Icons/idle_48.png", + "lib/python3.11/idlelib/Icons/minusnode.gif", + "lib/python3.11/idlelib/Icons/openfolder.gif", + "lib/python3.11/idlelib/Icons/plusnode.gif", + "lib/python3.11/idlelib/Icons/python.gif", + "lib/python3.11/idlelib/Icons/tk.gif", + "lib/python3.11/idlelib/NEWS.txt", + "lib/python3.11/idlelib/NEWS2x.txt", + "lib/python3.11/idlelib/README.txt", + "lib/python3.11/idlelib/TODO.txt", + "lib/python3.11/idlelib/__init__.py", + "lib/python3.11/idlelib/__main__.py", + "lib/python3.11/idlelib/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/autocomplete.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/autocomplete_w.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/autoexpand.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/browser.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/calltip.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/calltip_w.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/codecontext.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/colorizer.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/config.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/config_key.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/configdialog.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/debugger.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/debugger_r.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/debugobj.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/debugobj_r.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/delegator.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/dynoption.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/editor.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/filelist.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/format.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/grep.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/help.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/help_about.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/history.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/hyperparser.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/idle.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/iomenu.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/macosx.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/mainmenu.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/multicall.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/outwin.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/parenmatch.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/pathbrowser.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/percolator.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/pyparse.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/pyshell.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/query.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/redirector.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/replace.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/rpc.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/run.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/runscript.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/scrolledlist.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/search.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/searchbase.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/searchengine.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/sidebar.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/squeezer.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/stackviewer.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/statusbar.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/textview.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/tooltip.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/tree.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/undo.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/util.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/window.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/zoomheight.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/zzdummy.cpython-311.pyc", + "lib/python3.11/idlelib/autocomplete.py", + "lib/python3.11/idlelib/autocomplete_w.py", + "lib/python3.11/idlelib/autoexpand.py", + "lib/python3.11/idlelib/browser.py", + "lib/python3.11/idlelib/calltip.py", + "lib/python3.11/idlelib/calltip_w.py", + "lib/python3.11/idlelib/codecontext.py", + "lib/python3.11/idlelib/colorizer.py", + "lib/python3.11/idlelib/config-extensions.def", + "lib/python3.11/idlelib/config-highlight.def", + "lib/python3.11/idlelib/config-keys.def", + "lib/python3.11/idlelib/config-main.def", + "lib/python3.11/idlelib/config.py", + "lib/python3.11/idlelib/config_key.py", + "lib/python3.11/idlelib/configdialog.py", + "lib/python3.11/idlelib/debugger.py", + "lib/python3.11/idlelib/debugger_r.py", + "lib/python3.11/idlelib/debugobj.py", + "lib/python3.11/idlelib/debugobj_r.py", + "lib/python3.11/idlelib/delegator.py", + "lib/python3.11/idlelib/dynoption.py", + "lib/python3.11/idlelib/editor.py", + "lib/python3.11/idlelib/extend.txt", + "lib/python3.11/idlelib/filelist.py", + "lib/python3.11/idlelib/format.py", + "lib/python3.11/idlelib/grep.py", + "lib/python3.11/idlelib/help.html", + "lib/python3.11/idlelib/help.py", + "lib/python3.11/idlelib/help_about.py", + "lib/python3.11/idlelib/history.py", + "lib/python3.11/idlelib/hyperparser.py", + "lib/python3.11/idlelib/idle.bat", + "lib/python3.11/idlelib/idle.py", + "lib/python3.11/idlelib/idle.pyw", + "lib/python3.11/idlelib/idle_test/README.txt", + "lib/python3.11/idlelib/idle_test/__init__.py", + "lib/python3.11/idlelib/idle_test/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/htest.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/mock_idle.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/mock_tk.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/template.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_autocomplete.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_autocomplete_w.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_autoexpand.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_browser.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_calltip.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_calltip_w.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_codecontext.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_colorizer.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_config.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_config_key.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_configdialog.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_debugger.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_debugger_r.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_debugobj.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_debugobj_r.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_delegator.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_editmenu.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_editor.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_filelist.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_format.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_grep.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_help.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_help_about.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_history.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_hyperparser.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_iomenu.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_macosx.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_mainmenu.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_multicall.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_outwin.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_parenmatch.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_pathbrowser.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_percolator.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_pyparse.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_pyshell.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_query.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_redirector.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_replace.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_rpc.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_run.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_runscript.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_scrolledlist.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_search.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_searchbase.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_searchengine.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_sidebar.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_squeezer.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_stackviewer.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_statusbar.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_text.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_textview.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_tooltip.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_tree.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_undo.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_util.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_warning.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_window.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_zoomheight.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_zzdummy.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/tkinter_testing_utils.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/example_noext", + "lib/python3.11/idlelib/idle_test/example_stub.pyi", + "lib/python3.11/idlelib/idle_test/htest.py", + "lib/python3.11/idlelib/idle_test/mock_idle.py", + "lib/python3.11/idlelib/idle_test/mock_tk.py", + "lib/python3.11/idlelib/idle_test/template.py", + "lib/python3.11/idlelib/idle_test/test_autocomplete.py", + "lib/python3.11/idlelib/idle_test/test_autocomplete_w.py", + "lib/python3.11/idlelib/idle_test/test_autoexpand.py", + "lib/python3.11/idlelib/idle_test/test_browser.py", + "lib/python3.11/idlelib/idle_test/test_calltip.py", + "lib/python3.11/idlelib/idle_test/test_calltip_w.py", + "lib/python3.11/idlelib/idle_test/test_codecontext.py", + "lib/python3.11/idlelib/idle_test/test_colorizer.py", + "lib/python3.11/idlelib/idle_test/test_config.py", + "lib/python3.11/idlelib/idle_test/test_config_key.py", + "lib/python3.11/idlelib/idle_test/test_configdialog.py", + "lib/python3.11/idlelib/idle_test/test_debugger.py", + "lib/python3.11/idlelib/idle_test/test_debugger_r.py", + "lib/python3.11/idlelib/idle_test/test_debugobj.py", + "lib/python3.11/idlelib/idle_test/test_debugobj_r.py", + "lib/python3.11/idlelib/idle_test/test_delegator.py", + "lib/python3.11/idlelib/idle_test/test_editmenu.py", + "lib/python3.11/idlelib/idle_test/test_editor.py", + "lib/python3.11/idlelib/idle_test/test_filelist.py", + "lib/python3.11/idlelib/idle_test/test_format.py", + "lib/python3.11/idlelib/idle_test/test_grep.py", + "lib/python3.11/idlelib/idle_test/test_help.py", + "lib/python3.11/idlelib/idle_test/test_help_about.py", + "lib/python3.11/idlelib/idle_test/test_history.py", + "lib/python3.11/idlelib/idle_test/test_hyperparser.py", + "lib/python3.11/idlelib/idle_test/test_iomenu.py", + "lib/python3.11/idlelib/idle_test/test_macosx.py", + "lib/python3.11/idlelib/idle_test/test_mainmenu.py", + "lib/python3.11/idlelib/idle_test/test_multicall.py", + "lib/python3.11/idlelib/idle_test/test_outwin.py", + "lib/python3.11/idlelib/idle_test/test_parenmatch.py", + "lib/python3.11/idlelib/idle_test/test_pathbrowser.py", + "lib/python3.11/idlelib/idle_test/test_percolator.py", + "lib/python3.11/idlelib/idle_test/test_pyparse.py", + "lib/python3.11/idlelib/idle_test/test_pyshell.py", + "lib/python3.11/idlelib/idle_test/test_query.py", + "lib/python3.11/idlelib/idle_test/test_redirector.py", + "lib/python3.11/idlelib/idle_test/test_replace.py", + "lib/python3.11/idlelib/idle_test/test_rpc.py", + "lib/python3.11/idlelib/idle_test/test_run.py", + "lib/python3.11/idlelib/idle_test/test_runscript.py", + "lib/python3.11/idlelib/idle_test/test_scrolledlist.py", + "lib/python3.11/idlelib/idle_test/test_search.py", + "lib/python3.11/idlelib/idle_test/test_searchbase.py", + "lib/python3.11/idlelib/idle_test/test_searchengine.py", + "lib/python3.11/idlelib/idle_test/test_sidebar.py", + "lib/python3.11/idlelib/idle_test/test_squeezer.py", + "lib/python3.11/idlelib/idle_test/test_stackviewer.py", + "lib/python3.11/idlelib/idle_test/test_statusbar.py", + "lib/python3.11/idlelib/idle_test/test_text.py", + "lib/python3.11/idlelib/idle_test/test_textview.py", + "lib/python3.11/idlelib/idle_test/test_tooltip.py", + "lib/python3.11/idlelib/idle_test/test_tree.py", + "lib/python3.11/idlelib/idle_test/test_undo.py", + "lib/python3.11/idlelib/idle_test/test_util.py", + "lib/python3.11/idlelib/idle_test/test_warning.py", + "lib/python3.11/idlelib/idle_test/test_window.py", + "lib/python3.11/idlelib/idle_test/test_zoomheight.py", + "lib/python3.11/idlelib/idle_test/test_zzdummy.py", + "lib/python3.11/idlelib/idle_test/tkinter_testing_utils.py", + "lib/python3.11/idlelib/iomenu.py", + "lib/python3.11/idlelib/macosx.py", + "lib/python3.11/idlelib/mainmenu.py", + "lib/python3.11/idlelib/multicall.py", + "lib/python3.11/idlelib/outwin.py", + "lib/python3.11/idlelib/parenmatch.py", + "lib/python3.11/idlelib/pathbrowser.py", + "lib/python3.11/idlelib/percolator.py", + "lib/python3.11/idlelib/pyparse.py", + "lib/python3.11/idlelib/pyshell.py", + "lib/python3.11/idlelib/query.py", + "lib/python3.11/idlelib/redirector.py", + "lib/python3.11/idlelib/replace.py", + "lib/python3.11/idlelib/rpc.py", + "lib/python3.11/idlelib/run.py", + "lib/python3.11/idlelib/runscript.py", + "lib/python3.11/idlelib/scrolledlist.py", + "lib/python3.11/idlelib/search.py", + "lib/python3.11/idlelib/searchbase.py", + "lib/python3.11/idlelib/searchengine.py", + "lib/python3.11/idlelib/sidebar.py", + "lib/python3.11/idlelib/squeezer.py", + "lib/python3.11/idlelib/stackviewer.py", + "lib/python3.11/idlelib/statusbar.py", + "lib/python3.11/idlelib/textview.py", + "lib/python3.11/idlelib/tooltip.py", + "lib/python3.11/idlelib/tree.py", + "lib/python3.11/idlelib/undo.py", + "lib/python3.11/idlelib/util.py", + "lib/python3.11/idlelib/window.py", + "lib/python3.11/idlelib/zoomheight.py", + "lib/python3.11/idlelib/zzdummy.py", + "lib/python3.11/imaplib.py", + "lib/python3.11/imghdr.py", + "lib/python3.11/imp.py", + "lib/python3.11/importlib/__init__.py", + "lib/python3.11/importlib/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/_abc.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/_bootstrap.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/_bootstrap_external.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/abc.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/machinery.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/readers.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/simple.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/util.cpython-311.pyc", + "lib/python3.11/importlib/_abc.py", + "lib/python3.11/importlib/_bootstrap.py", + "lib/python3.11/importlib/_bootstrap_external.py", + "lib/python3.11/importlib/abc.py", + "lib/python3.11/importlib/machinery.py", + "lib/python3.11/importlib/metadata/__init__.py", + "lib/python3.11/importlib/metadata/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/importlib/metadata/__pycache__/_adapters.cpython-311.pyc", + "lib/python3.11/importlib/metadata/__pycache__/_collections.cpython-311.pyc", + "lib/python3.11/importlib/metadata/__pycache__/_functools.cpython-311.pyc", + "lib/python3.11/importlib/metadata/__pycache__/_itertools.cpython-311.pyc", + "lib/python3.11/importlib/metadata/__pycache__/_meta.cpython-311.pyc", + "lib/python3.11/importlib/metadata/__pycache__/_text.cpython-311.pyc", + "lib/python3.11/importlib/metadata/_adapters.py", + "lib/python3.11/importlib/metadata/_collections.py", + "lib/python3.11/importlib/metadata/_functools.py", + "lib/python3.11/importlib/metadata/_itertools.py", + "lib/python3.11/importlib/metadata/_meta.py", + "lib/python3.11/importlib/metadata/_text.py", + "lib/python3.11/importlib/readers.py", + "lib/python3.11/importlib/resources/__init__.py", + "lib/python3.11/importlib/resources/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/_adapters.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/_common.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/_itertools.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/_legacy.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/abc.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/readers.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/simple.cpython-311.pyc", + "lib/python3.11/importlib/resources/_adapters.py", + "lib/python3.11/importlib/resources/_common.py", + "lib/python3.11/importlib/resources/_itertools.py", + "lib/python3.11/importlib/resources/_legacy.py", + "lib/python3.11/importlib/resources/abc.py", + "lib/python3.11/importlib/resources/readers.py", + "lib/python3.11/importlib/resources/simple.py", + "lib/python3.11/importlib/simple.py", + "lib/python3.11/importlib/util.py", + "lib/python3.11/inspect.py", + "lib/python3.11/io.py", + "lib/python3.11/ipaddress.py", + "lib/python3.11/json/__init__.py", + "lib/python3.11/json/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/json/__pycache__/decoder.cpython-311.pyc", + "lib/python3.11/json/__pycache__/encoder.cpython-311.pyc", + "lib/python3.11/json/__pycache__/scanner.cpython-311.pyc", + "lib/python3.11/json/__pycache__/tool.cpython-311.pyc", + "lib/python3.11/json/decoder.py", + "lib/python3.11/json/encoder.py", + "lib/python3.11/json/scanner.py", + "lib/python3.11/json/tool.py", + "lib/python3.11/keyword.py", + "lib/python3.11/lib-dynload/_asyncio.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_bisect.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_blake2.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_bz2.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_codecs_cn.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_codecs_hk.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_codecs_iso2022.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_codecs_jp.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_codecs_kr.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_codecs_tw.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_contextvars.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_crypt.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_csv.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_ctypes.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_ctypes_test.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_curses.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_curses_panel.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_datetime.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_dbm.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_decimal.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_elementtree.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_hashlib.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_heapq.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_json.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_lsprof.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_lzma.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_md5.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_multibytecodec.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_multiprocessing.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_opcode.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_pickle.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_posixshmem.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_posixsubprocess.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_queue.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_random.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_scproxy.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_sha1.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_sha256.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_sha3.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_sha512.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_socket.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_sqlite3.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_ssl.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_statistics.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_struct.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_testbuffer.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_testcapi.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_testclinic.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_testimportmultiple.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_testinternalcapi.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_testmultiphase.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_tkinter.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_typing.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_uuid.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_xxsubinterpreters.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_xxtestfuzz.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_zoneinfo.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/array.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/audioop.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/binascii.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/cmath.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/fcntl.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/grp.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/math.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/mmap.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/nis.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/pyexpat.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/readline.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/resource.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/select.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/syslog.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/termios.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/unicodedata.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/xxlimited.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/xxlimited_35.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/zlib.cpython-311-darwin.so", + "lib/python3.11/lib2to3/Grammar.txt", + "lib/python3.11/lib2to3/Grammar3.11.5.final.0.pickle", + "lib/python3.11/lib2to3/PatternGrammar.txt", + "lib/python3.11/lib2to3/PatternGrammar3.11.5.final.0.pickle", + "lib/python3.11/lib2to3/__init__.py", + "lib/python3.11/lib2to3/__main__.py", + "lib/python3.11/lib2to3/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/btm_matcher.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/btm_utils.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/fixer_base.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/fixer_util.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/main.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/patcomp.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/pygram.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/pytree.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/refactor.cpython-311.pyc", + "lib/python3.11/lib2to3/btm_matcher.py", + "lib/python3.11/lib2to3/btm_utils.py", + "lib/python3.11/lib2to3/fixer_base.py", + "lib/python3.11/lib2to3/fixer_util.py", + "lib/python3.11/lib2to3/fixes/__init__.py", + "lib/python3.11/lib2to3/fixes/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_apply.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_asserts.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_basestring.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_buffer.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_dict.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_except.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_exec.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_execfile.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_exitfunc.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_filter.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_funcattrs.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_future.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_getcwdu.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_has_key.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_idioms.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_import.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_imports.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_imports2.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_input.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_intern.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_isinstance.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_itertools.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_itertools_imports.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_long.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_map.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_metaclass.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_methodattrs.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_ne.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_next.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_nonzero.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_numliterals.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_operator.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_paren.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_print.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_raise.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_raw_input.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_reduce.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_reload.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_renames.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_repr.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_set_literal.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_standarderror.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_sys_exc.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_throw.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_tuple_params.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_types.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_unicode.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_urllib.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_ws_comma.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_xrange.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_xreadlines.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_zip.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/fix_apply.py", + "lib/python3.11/lib2to3/fixes/fix_asserts.py", + "lib/python3.11/lib2to3/fixes/fix_basestring.py", + "lib/python3.11/lib2to3/fixes/fix_buffer.py", + "lib/python3.11/lib2to3/fixes/fix_dict.py", + "lib/python3.11/lib2to3/fixes/fix_except.py", + "lib/python3.11/lib2to3/fixes/fix_exec.py", + "lib/python3.11/lib2to3/fixes/fix_execfile.py", + "lib/python3.11/lib2to3/fixes/fix_exitfunc.py", + "lib/python3.11/lib2to3/fixes/fix_filter.py", + "lib/python3.11/lib2to3/fixes/fix_funcattrs.py", + "lib/python3.11/lib2to3/fixes/fix_future.py", + "lib/python3.11/lib2to3/fixes/fix_getcwdu.py", + "lib/python3.11/lib2to3/fixes/fix_has_key.py", + "lib/python3.11/lib2to3/fixes/fix_idioms.py", + "lib/python3.11/lib2to3/fixes/fix_import.py", + "lib/python3.11/lib2to3/fixes/fix_imports.py", + "lib/python3.11/lib2to3/fixes/fix_imports2.py", + "lib/python3.11/lib2to3/fixes/fix_input.py", + "lib/python3.11/lib2to3/fixes/fix_intern.py", + "lib/python3.11/lib2to3/fixes/fix_isinstance.py", + "lib/python3.11/lib2to3/fixes/fix_itertools.py", + "lib/python3.11/lib2to3/fixes/fix_itertools_imports.py", + "lib/python3.11/lib2to3/fixes/fix_long.py", + "lib/python3.11/lib2to3/fixes/fix_map.py", + "lib/python3.11/lib2to3/fixes/fix_metaclass.py", + "lib/python3.11/lib2to3/fixes/fix_methodattrs.py", + "lib/python3.11/lib2to3/fixes/fix_ne.py", + "lib/python3.11/lib2to3/fixes/fix_next.py", + "lib/python3.11/lib2to3/fixes/fix_nonzero.py", + "lib/python3.11/lib2to3/fixes/fix_numliterals.py", + "lib/python3.11/lib2to3/fixes/fix_operator.py", + "lib/python3.11/lib2to3/fixes/fix_paren.py", + "lib/python3.11/lib2to3/fixes/fix_print.py", + "lib/python3.11/lib2to3/fixes/fix_raise.py", + "lib/python3.11/lib2to3/fixes/fix_raw_input.py", + "lib/python3.11/lib2to3/fixes/fix_reduce.py", + "lib/python3.11/lib2to3/fixes/fix_reload.py", + "lib/python3.11/lib2to3/fixes/fix_renames.py", + "lib/python3.11/lib2to3/fixes/fix_repr.py", + "lib/python3.11/lib2to3/fixes/fix_set_literal.py", + "lib/python3.11/lib2to3/fixes/fix_standarderror.py", + "lib/python3.11/lib2to3/fixes/fix_sys_exc.py", + "lib/python3.11/lib2to3/fixes/fix_throw.py", + "lib/python3.11/lib2to3/fixes/fix_tuple_params.py", + "lib/python3.11/lib2to3/fixes/fix_types.py", + "lib/python3.11/lib2to3/fixes/fix_unicode.py", + "lib/python3.11/lib2to3/fixes/fix_urllib.py", + "lib/python3.11/lib2to3/fixes/fix_ws_comma.py", + "lib/python3.11/lib2to3/fixes/fix_xrange.py", + "lib/python3.11/lib2to3/fixes/fix_xreadlines.py", + "lib/python3.11/lib2to3/fixes/fix_zip.py", + "lib/python3.11/lib2to3/main.py", + "lib/python3.11/lib2to3/patcomp.py", + "lib/python3.11/lib2to3/pgen2/__init__.py", + "lib/python3.11/lib2to3/pgen2/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/conv.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/driver.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/grammar.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/literals.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/parse.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/pgen.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/token.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/tokenize.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/conv.py", + "lib/python3.11/lib2to3/pgen2/driver.py", + "lib/python3.11/lib2to3/pgen2/grammar.py", + "lib/python3.11/lib2to3/pgen2/literals.py", + "lib/python3.11/lib2to3/pgen2/parse.py", + "lib/python3.11/lib2to3/pgen2/pgen.py", + "lib/python3.11/lib2to3/pgen2/token.py", + "lib/python3.11/lib2to3/pgen2/tokenize.py", + "lib/python3.11/lib2to3/pygram.py", + "lib/python3.11/lib2to3/pytree.py", + "lib/python3.11/lib2to3/refactor.py", + "lib/python3.11/lib2to3/tests/__init__.py", + "lib/python3.11/lib2to3/tests/__main__.py", + "lib/python3.11/lib2to3/tests/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/pytree_idempotency.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/support.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_all_fixers.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_fixers.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_main.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_parser.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_pytree.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_refactor.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_util.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/README", + "lib/python3.11/lib2to3/tests/data/__pycache__/infinite_recursion.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/__pycache__/py3_test_grammar.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/bom.py", + "lib/python3.11/lib2to3/tests/data/crlf.py", + "lib/python3.11/lib2to3/tests/data/different_encoding.py", + "lib/python3.11/lib2to3/tests/data/false_encoding.py", + "lib/python3.11/lib2to3/tests/data/fixers/__pycache__/bad_order.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/__pycache__/no_fixer_cls.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/__pycache__/parrot_example.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/bad_order.py", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__init__.py", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__pycache__/fix_explicit.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__pycache__/fix_first.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__pycache__/fix_last.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__pycache__/fix_parrot.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__pycache__/fix_preorder.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/fix_explicit.py", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/fix_first.py", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/fix_last.py", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/fix_parrot.py", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/fix_preorder.py", + "lib/python3.11/lib2to3/tests/data/fixers/no_fixer_cls.py", + "lib/python3.11/lib2to3/tests/data/fixers/parrot_example.py", + "lib/python3.11/lib2to3/tests/data/infinite_recursion.py", + "lib/python3.11/lib2to3/tests/data/py2_test_grammar.py", + "lib/python3.11/lib2to3/tests/data/py3_test_grammar.py", + "lib/python3.11/lib2to3/tests/pytree_idempotency.py", + "lib/python3.11/lib2to3/tests/support.py", + "lib/python3.11/lib2to3/tests/test_all_fixers.py", + "lib/python3.11/lib2to3/tests/test_fixers.py", + "lib/python3.11/lib2to3/tests/test_main.py", + "lib/python3.11/lib2to3/tests/test_parser.py", + "lib/python3.11/lib2to3/tests/test_pytree.py", + "lib/python3.11/lib2to3/tests/test_refactor.py", + "lib/python3.11/lib2to3/tests/test_util.py", + "lib/python3.11/linecache.py", + "lib/python3.11/locale.py", + "lib/python3.11/logging/__init__.py", + "lib/python3.11/logging/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/logging/__pycache__/config.cpython-311.pyc", + "lib/python3.11/logging/__pycache__/handlers.cpython-311.pyc", + "lib/python3.11/logging/config.py", + "lib/python3.11/logging/handlers.py", + "lib/python3.11/lzma.py", + "lib/python3.11/mailbox.py", + "lib/python3.11/mailcap.py", + "lib/python3.11/mimetypes.py", + "lib/python3.11/modulefinder.py", + "lib/python3.11/multiprocessing/__init__.py", + "lib/python3.11/multiprocessing/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/connection.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/context.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/forkserver.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/heap.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/managers.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/pool.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/popen_fork.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/popen_forkserver.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/popen_spawn_posix.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/popen_spawn_win32.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/process.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/queues.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/reduction.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/resource_sharer.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/resource_tracker.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/shared_memory.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/sharedctypes.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/spawn.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/synchronize.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/util.cpython-311.pyc", + "lib/python3.11/multiprocessing/connection.py", + "lib/python3.11/multiprocessing/context.py", + "lib/python3.11/multiprocessing/dummy/__init__.py", + "lib/python3.11/multiprocessing/dummy/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/multiprocessing/dummy/__pycache__/connection.cpython-311.pyc", + "lib/python3.11/multiprocessing/dummy/connection.py", + "lib/python3.11/multiprocessing/forkserver.py", + "lib/python3.11/multiprocessing/heap.py", + "lib/python3.11/multiprocessing/managers.py", + "lib/python3.11/multiprocessing/pool.py", + "lib/python3.11/multiprocessing/popen_fork.py", + "lib/python3.11/multiprocessing/popen_forkserver.py", + "lib/python3.11/multiprocessing/popen_spawn_posix.py", + "lib/python3.11/multiprocessing/popen_spawn_win32.py", + "lib/python3.11/multiprocessing/process.py", + "lib/python3.11/multiprocessing/queues.py", + "lib/python3.11/multiprocessing/reduction.py", + "lib/python3.11/multiprocessing/resource_sharer.py", + "lib/python3.11/multiprocessing/resource_tracker.py", + "lib/python3.11/multiprocessing/shared_memory.py", + "lib/python3.11/multiprocessing/sharedctypes.py", + "lib/python3.11/multiprocessing/spawn.py", + "lib/python3.11/multiprocessing/synchronize.py", + "lib/python3.11/multiprocessing/util.py", + "lib/python3.11/netrc.py", + "lib/python3.11/nntplib.py", + "lib/python3.11/ntpath.py", + "lib/python3.11/nturl2path.py", + "lib/python3.11/numbers.py", + "lib/python3.11/opcode.py", + "lib/python3.11/operator.py", + "lib/python3.11/optparse.py", + "lib/python3.11/os.py", + "lib/python3.11/pathlib.py", + "lib/python3.11/pdb.py", + "lib/python3.11/pickle.py", + "lib/python3.11/pickletools.py", + "lib/python3.11/pipes.py", + "lib/python3.11/pkgutil.py", + "lib/python3.11/platform.py", + "lib/python3.11/plistlib.py", + "lib/python3.11/poplib.py", + "lib/python3.11/posixpath.py", + "lib/python3.11/pprint.py", + "lib/python3.11/profile.py", + "lib/python3.11/pstats.py", + "lib/python3.11/pty.py", + "lib/python3.11/py_compile.py", + "lib/python3.11/pyclbr.py", + "lib/python3.11/pydoc.py", + "lib/python3.11/pydoc_data/__init__.py", + "lib/python3.11/pydoc_data/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/pydoc_data/__pycache__/topics.cpython-311.pyc", + "lib/python3.11/pydoc_data/_pydoc.css", + "lib/python3.11/pydoc_data/topics.py", + "lib/python3.11/queue.py", + "lib/python3.11/quopri.py", + "lib/python3.11/random.py", + "lib/python3.11/re/__init__.py", + "lib/python3.11/re/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/re/__pycache__/_casefix.cpython-311.pyc", + "lib/python3.11/re/__pycache__/_compiler.cpython-311.pyc", + "lib/python3.11/re/__pycache__/_constants.cpython-311.pyc", + "lib/python3.11/re/__pycache__/_parser.cpython-311.pyc", + "lib/python3.11/re/_casefix.py", + "lib/python3.11/re/_compiler.py", + "lib/python3.11/re/_constants.py", + "lib/python3.11/re/_parser.py", + "lib/python3.11/reprlib.py", + "lib/python3.11/rlcompleter.py", + "lib/python3.11/runpy.py", + "lib/python3.11/sched.py", + "lib/python3.11/secrets.py", + "lib/python3.11/selectors.py", + "lib/python3.11/shelve.py", + "lib/python3.11/shlex.py", + "lib/python3.11/shutil.py", + "lib/python3.11/signal.py", + "lib/python3.11/site-packages/README.txt", + "lib/python3.11/site.py", + "lib/python3.11/smtpd.py", + "lib/python3.11/smtplib.py", + "lib/python3.11/sndhdr.py", + "lib/python3.11/socket.py", + "lib/python3.11/socketserver.py", + "lib/python3.11/sqlite3/__init__.py", + "lib/python3.11/sqlite3/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/sqlite3/__pycache__/dbapi2.cpython-311.pyc", + "lib/python3.11/sqlite3/__pycache__/dump.cpython-311.pyc", + "lib/python3.11/sqlite3/dbapi2.py", + "lib/python3.11/sqlite3/dump.py", + "lib/python3.11/sre_compile.py", + "lib/python3.11/sre_constants.py", + "lib/python3.11/sre_parse.py", + "lib/python3.11/ssl.py", + "lib/python3.11/stat.py", + "lib/python3.11/statistics.py", + "lib/python3.11/string.py", + "lib/python3.11/stringprep.py", + "lib/python3.11/struct.py", + "lib/python3.11/subprocess.py", + "lib/python3.11/sunau.py", + "lib/python3.11/symtable.py", + "lib/python3.11/sysconfig.py", + "lib/python3.11/tabnanny.py", + "lib/python3.11/tarfile.py", + "lib/python3.11/telnetlib.py", + "lib/python3.11/tempfile.py", + "lib/python3.11/test/__init__.py", + "lib/python3.11/test/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/test/__pycache__/test_script_helper.cpython-311.pyc", + "lib/python3.11/test/__pycache__/test_support.cpython-311.pyc", + "lib/python3.11/test/support/__init__.py", + "lib/python3.11/test/support/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/bytecode_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/hashlib_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/import_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/interpreters.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/logging_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/os_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/script_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/socket_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/testresult.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/threading_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/warnings_helper.cpython-311.pyc", + "lib/python3.11/test/support/bytecode_helper.py", + "lib/python3.11/test/support/hashlib_helper.py", + "lib/python3.11/test/support/import_helper.py", + "lib/python3.11/test/support/interpreters.py", + "lib/python3.11/test/support/logging_helper.py", + "lib/python3.11/test/support/os_helper.py", + "lib/python3.11/test/support/script_helper.py", + "lib/python3.11/test/support/socket_helper.py", + "lib/python3.11/test/support/testresult.py", + "lib/python3.11/test/support/threading_helper.py", + "lib/python3.11/test/support/warnings_helper.py", + "lib/python3.11/test/test_script_helper.py", + "lib/python3.11/test/test_support.py", + "lib/python3.11/textwrap.py", + "lib/python3.11/this.py", + "lib/python3.11/threading.py", + "lib/python3.11/timeit.py", + "lib/python3.11/tkinter/__init__.py", + "lib/python3.11/tkinter/__main__.py", + "lib/python3.11/tkinter/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/colorchooser.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/commondialog.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/constants.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/dialog.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/dnd.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/filedialog.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/font.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/messagebox.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/scrolledtext.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/simpledialog.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/tix.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/ttk.cpython-311.pyc", + "lib/python3.11/tkinter/colorchooser.py", + "lib/python3.11/tkinter/commondialog.py", + "lib/python3.11/tkinter/constants.py", + "lib/python3.11/tkinter/dialog.py", + "lib/python3.11/tkinter/dnd.py", + "lib/python3.11/tkinter/filedialog.py", + "lib/python3.11/tkinter/font.py", + "lib/python3.11/tkinter/messagebox.py", + "lib/python3.11/tkinter/scrolledtext.py", + "lib/python3.11/tkinter/simpledialog.py", + "lib/python3.11/tkinter/tix.py", + "lib/python3.11/tkinter/ttk.py", + "lib/python3.11/token.py", + "lib/python3.11/tokenize.py", + "lib/python3.11/tomllib/__init__.py", + "lib/python3.11/tomllib/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/tomllib/__pycache__/_parser.cpython-311.pyc", + "lib/python3.11/tomllib/__pycache__/_re.cpython-311.pyc", + "lib/python3.11/tomllib/__pycache__/_types.cpython-311.pyc", + "lib/python3.11/tomllib/_parser.py", + "lib/python3.11/tomllib/_re.py", + "lib/python3.11/tomllib/_types.py", + "lib/python3.11/trace.py", + "lib/python3.11/traceback.py", + "lib/python3.11/tracemalloc.py", + "lib/python3.11/tty.py", + "lib/python3.11/turtle.py", + "lib/python3.11/turtledemo/__init__.py", + "lib/python3.11/turtledemo/__main__.py", + "lib/python3.11/turtledemo/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/bytedesign.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/chaos.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/clock.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/colormixer.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/forest.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/fractalcurves.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/lindenmayer.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/minimal_hanoi.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/nim.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/paint.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/peace.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/penrose.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/planet_and_moon.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/rosette.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/round_dance.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/sorting_animate.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/tree.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/two_canvases.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/yinyang.cpython-311.pyc", + "lib/python3.11/turtledemo/bytedesign.py", + "lib/python3.11/turtledemo/chaos.py", + "lib/python3.11/turtledemo/clock.py", + "lib/python3.11/turtledemo/colormixer.py", + "lib/python3.11/turtledemo/forest.py", + "lib/python3.11/turtledemo/fractalcurves.py", + "lib/python3.11/turtledemo/lindenmayer.py", + "lib/python3.11/turtledemo/minimal_hanoi.py", + "lib/python3.11/turtledemo/nim.py", + "lib/python3.11/turtledemo/paint.py", + "lib/python3.11/turtledemo/peace.py", + "lib/python3.11/turtledemo/penrose.py", + "lib/python3.11/turtledemo/planet_and_moon.py", + "lib/python3.11/turtledemo/rosette.py", + "lib/python3.11/turtledemo/round_dance.py", + "lib/python3.11/turtledemo/sorting_animate.py", + "lib/python3.11/turtledemo/tree.py", + "lib/python3.11/turtledemo/turtle.cfg", + "lib/python3.11/turtledemo/two_canvases.py", + "lib/python3.11/turtledemo/yinyang.py", + "lib/python3.11/types.py", + "lib/python3.11/typing.py", + "lib/python3.11/unittest/__init__.py", + "lib/python3.11/unittest/__main__.py", + "lib/python3.11/unittest/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/_log.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/async_case.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/case.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/loader.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/main.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/mock.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/result.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/runner.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/signals.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/suite.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/util.cpython-311.pyc", + "lib/python3.11/unittest/_log.py", + "lib/python3.11/unittest/async_case.py", + "lib/python3.11/unittest/case.py", + "lib/python3.11/unittest/loader.py", + "lib/python3.11/unittest/main.py", + "lib/python3.11/unittest/mock.py", + "lib/python3.11/unittest/result.py", + "lib/python3.11/unittest/runner.py", + "lib/python3.11/unittest/signals.py", + "lib/python3.11/unittest/suite.py", + "lib/python3.11/unittest/util.py", + "lib/python3.11/urllib/__init__.py", + "lib/python3.11/urllib/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/urllib/__pycache__/error.cpython-311.pyc", + "lib/python3.11/urllib/__pycache__/parse.cpython-311.pyc", + "lib/python3.11/urllib/__pycache__/request.cpython-311.pyc", + "lib/python3.11/urllib/__pycache__/response.cpython-311.pyc", + "lib/python3.11/urllib/__pycache__/robotparser.cpython-311.pyc", + "lib/python3.11/urllib/error.py", + "lib/python3.11/urllib/parse.py", + "lib/python3.11/urllib/request.py", + "lib/python3.11/urllib/response.py", + "lib/python3.11/urllib/robotparser.py", + "lib/python3.11/uu.py", + "lib/python3.11/uuid.py", + "lib/python3.11/venv/__init__.py", + "lib/python3.11/venv/__main__.py", + "lib/python3.11/venv/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/venv/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/venv/scripts/common/Activate.ps1", + "lib/python3.11/venv/scripts/common/activate", + "lib/python3.11/venv/scripts/posix/activate.csh", + "lib/python3.11/venv/scripts/posix/activate.fish", + "lib/python3.11/warnings.py", + "lib/python3.11/wave.py", + "lib/python3.11/weakref.py", + "lib/python3.11/webbrowser.py", + "lib/python3.11/wsgiref/__init__.py", + "lib/python3.11/wsgiref/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/wsgiref/__pycache__/handlers.cpython-311.pyc", + "lib/python3.11/wsgiref/__pycache__/headers.cpython-311.pyc", + "lib/python3.11/wsgiref/__pycache__/simple_server.cpython-311.pyc", + "lib/python3.11/wsgiref/__pycache__/types.cpython-311.pyc", + "lib/python3.11/wsgiref/__pycache__/util.cpython-311.pyc", + "lib/python3.11/wsgiref/__pycache__/validate.cpython-311.pyc", + "lib/python3.11/wsgiref/handlers.py", + "lib/python3.11/wsgiref/headers.py", + "lib/python3.11/wsgiref/simple_server.py", + "lib/python3.11/wsgiref/types.py", + "lib/python3.11/wsgiref/util.py", + "lib/python3.11/wsgiref/validate.py", + "lib/python3.11/xdrlib.py", + "lib/python3.11/xml/__init__.py", + "lib/python3.11/xml/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/xml/dom/NodeFilter.py", + "lib/python3.11/xml/dom/__init__.py", + "lib/python3.11/xml/dom/__pycache__/NodeFilter.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/domreg.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/expatbuilder.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/minicompat.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/minidom.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/pulldom.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/xmlbuilder.cpython-311.pyc", + "lib/python3.11/xml/dom/domreg.py", + "lib/python3.11/xml/dom/expatbuilder.py", + "lib/python3.11/xml/dom/minicompat.py", + "lib/python3.11/xml/dom/minidom.py", + "lib/python3.11/xml/dom/pulldom.py", + "lib/python3.11/xml/dom/xmlbuilder.py", + "lib/python3.11/xml/etree/ElementInclude.py", + "lib/python3.11/xml/etree/ElementPath.py", + "lib/python3.11/xml/etree/ElementTree.py", + "lib/python3.11/xml/etree/__init__.py", + "lib/python3.11/xml/etree/__pycache__/ElementInclude.cpython-311.pyc", + "lib/python3.11/xml/etree/__pycache__/ElementPath.cpython-311.pyc", + "lib/python3.11/xml/etree/__pycache__/ElementTree.cpython-311.pyc", + "lib/python3.11/xml/etree/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/xml/etree/__pycache__/cElementTree.cpython-311.pyc", + "lib/python3.11/xml/etree/cElementTree.py", + "lib/python3.11/xml/parsers/__init__.py", + "lib/python3.11/xml/parsers/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/xml/parsers/__pycache__/expat.cpython-311.pyc", + "lib/python3.11/xml/parsers/expat.py", + "lib/python3.11/xml/sax/__init__.py", + "lib/python3.11/xml/sax/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/xml/sax/__pycache__/_exceptions.cpython-311.pyc", + "lib/python3.11/xml/sax/__pycache__/expatreader.cpython-311.pyc", + "lib/python3.11/xml/sax/__pycache__/handler.cpython-311.pyc", + "lib/python3.11/xml/sax/__pycache__/saxutils.cpython-311.pyc", + "lib/python3.11/xml/sax/__pycache__/xmlreader.cpython-311.pyc", + "lib/python3.11/xml/sax/_exceptions.py", + "lib/python3.11/xml/sax/expatreader.py", + "lib/python3.11/xml/sax/handler.py", + "lib/python3.11/xml/sax/saxutils.py", + "lib/python3.11/xml/sax/xmlreader.py", + "lib/python3.11/xmlrpc/__init__.py", + "lib/python3.11/xmlrpc/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/xmlrpc/__pycache__/client.cpython-311.pyc", + "lib/python3.11/xmlrpc/__pycache__/server.cpython-311.pyc", + "lib/python3.11/xmlrpc/client.py", + "lib/python3.11/xmlrpc/server.py", + "lib/python3.11/zipapp.py", + "lib/python3.11/zipfile.py", + "lib/python3.11/zipimport.py", + "lib/python3.11/zoneinfo/__init__.py", + "lib/python3.11/zoneinfo/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/zoneinfo/__pycache__/_common.cpython-311.pyc", + "lib/python3.11/zoneinfo/__pycache__/_tzpath.cpython-311.pyc", + "lib/python3.11/zoneinfo/__pycache__/_zoneinfo.cpython-311.pyc", + "lib/python3.11/zoneinfo/_common.py", + "lib/python3.11/zoneinfo/_tzpath.py", + "lib/python3.11/zoneinfo/_zoneinfo.py", + "share/man/man1/python3.1", + "share/man/man1/python3.11.1" + ], + "fn": "python-3.11.5-hb885b13_0.conda", + "license": "PSF-2.0", + "link": { + "source": "/Users/donjayamanne/miniconda3/pkgs/python-3.11.5-hb885b13_0", + "type": 1 + }, + "md5": "6f528bdf159139704ab578df329dee70", + "name": "python", + "package_tarball_full_path": "/Users/donjayamanne/miniconda3/pkgs/python-3.11.5-hb885b13_0.conda", + "paths_data": { + "paths": [ + { + "_path": "bin/2to3-3.11", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "0eb2a68730c6910e60374b6231605a8fe9e4b1ef889fe6bf6955f00607263096", + "sha256_in_prefix": "db867f95c7e5e3d486928ab316afc7ee322118eace698a5fd9c35dd62a7c77e0", + "size_in_bytes": 347 + }, + { + "_path": "bin/idle3.11", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "9e7c5708a61f7b75f0fa84106b3698fc81e0632eea511e9635cc012d95e8ccec", + "sha256_in_prefix": "2daba7590451fb1240f116ad6c50dfb3fe12ab0d0c90450453672dc5f7992345", + "size_in_bytes": 345 + }, + { + "_path": "bin/pydoc3.11", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "af4b3f428ef9f3708c93b8d6a9c9b211c3e531ad480bac0644e18be3d675de15", + "sha256_in_prefix": "29373357dfd57b431809af8ab17e111c47011f8ed325e4b74075551cfd728dc0", + "size_in_bytes": 330 + }, + { + "_path": "bin/python3.11", + "file_mode": "binary", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "ea6aacf75da0a6e048c0acc7d6f9e7e67f4af4af635965ab25aad7956ed07b40", + "sha256_in_prefix": "5309a862e537b7e20d382f479a016995d2b60e7382673e57a98a8644d62a011a", + "size_in_bytes": 6019216 + }, + { + "_path": "bin/python3.11-config", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "48e7f0c28858cd7dd610f089ebce9d090b15273d6f965b5a665418880b9ad017", + "sha256_in_prefix": "178fb9ee8ae853adc2840a51642fbdfe239d4c189e632be37552f83ee881a9d5", + "size_in_bytes": 2289 + }, + { + "_path": "lib/libpython3.11.dylib", + "file_mode": "binary", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "813d7657214af2a40d6f98ed5ad6cd25bdaf9e1b52299dcc22457b6431f46226", + "sha256_in_prefix": "690e286e2a59750500c44dd3eb0fcc3f607604fd1a24a20da1d5877d9ac09cd0", + "size_in_bytes": 6019152 + }, + { + "_path": "lib/pkgconfig/python-3.11-embed.pc", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "5ce92c1022c5d4af2383596197f518fc12687f8f32bf3f42b96c7ee22ac9dc8d", + "sha256_in_prefix": "2ccb5bf00ff727b7941ad8be49360b25f86860ae2f49931743f628dafc9caac1", + "size_in_bytes": 558 + }, + { + "_path": "lib/pkgconfig/python-3.11.pc", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "46ac102bbce0c0b1ff9cabf905c7d44f3e3ff2911127a08b620cd1231a8a70c4", + "sha256_in_prefix": "01f5747180571713792597c3a4b2278f2e2b0e46aaa926e95cc007a373b589aa", + "size_in_bytes": 531 + }, + { + "_path": "lib/python3.11/_sysconfigdata__darwin_darwin.py", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "49c03531794c8e17dbf3bc3b28b5c731c19647b8430e74a7f05967863a73cd89", + "sha256_in_prefix": "d1fed13472229dad30d35c5cd3e497e4cbb16e5aa2fb66abc1919d55f9fa415c", + "size_in_bytes": 85118 + }, + { + "_path": "lib/python3.11/_sysconfigdata__darwin_darwin.py.orig", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "4e1b965e2665c46a97f8df38da25dc3e2636e6e62a2b525d38bfd9304978f7c9", + "sha256_in_prefix": "dbc742fac6650f3e6159c08dc75d77bbe5704af80a671c3ca09aa3e061ddd992", + "size_in_bytes": 97066 + }, + { + "_path": "lib/python3.11/_sysconfigdata_arm64_apple_darwin20_0_0.py", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "810dab3b07b0633c5d5b180351daecb4d1ebf51ee2216019c5dc08afb5c54fd1", + "sha256_in_prefix": "44ad76b97a9bc58243271c310c497b085745bbe5451b4cbf60d6afb475b49465", + "size_in_bytes": 87139 + }, + { + "_path": "lib/python3.11/config-3.11-darwin/Makefile", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "2a78da281edcb631ddd844a43a4e30d166eb6b13651e43a1664f0e1aa9384d3b", + "sha256_in_prefix": "fee789b4cc5318f60fd6d1b4294c7789bf333b55d6c4f8afa1dd4476e7fa4d5b", + "size_in_bytes": 126865 + }, + { + "_path": "lib/python3.11/config-3.11-darwin/python-config.py", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "48e7f0c28858cd7dd610f089ebce9d090b15273d6f965b5a665418880b9ad017", + "sha256_in_prefix": "178fb9ee8ae853adc2840a51642fbdfe239d4c189e632be37552f83ee881a9d5", + "size_in_bytes": 2289 + } + ], + "paths_version": 1 + }, + "requested_spec": "defaults/osx-arm64::python==3.11.5=hb885b13_0[md5=6f528bdf159139704ab578df329dee70]", + "sha256": "e6ae393f2072f9857ffbd78c56ea28ca345beeba4f0ab2e0d5975e424f71b252", + "size": 16161485, + "subdir": "osx-arm64", + "timestamp": 1694439441000, + "track_features": "", + "url": "https://repo.anaconda.com/pkgs/main/osx-arm64/python-3.11.5-hb885b13_0.conda", + "version": "3.11.5" +} \ No newline at end of file diff --git a/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda-latest/conda-meta/python-slugify-5.0.2-pyhd3eb1b0_0.json b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda-latest/conda-meta/python-slugify-5.0.2-pyhd3eb1b0_0.json new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda-latest/envs/.conda_envs_dir_test b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda-latest/envs/.conda_envs_dir_test new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda3-3.10-22.11.1-1/conda-meta/conda-23.11.0-py311hca03da5_0.json b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda3-3.10-22.11.1-1/conda-meta/conda-23.11.0-py311hca03da5_0.json new file mode 100644 index 000000000000..3be01e80b809 --- /dev/null +++ b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda3-3.10-22.11.1-1/conda-meta/conda-23.11.0-py311hca03da5_0.json @@ -0,0 +1,632 @@ +{ + "build": "py311hca03da5_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/osx-arm64", + "constrains": [ + "conda-content-trust >=0.1.1", + "conda-build >=3.27", + "conda-env >=2.6" + ], + "depends": [ + "archspec", + "boltons >=23.0.0", + "charset-normalizer", + "conda-libmamba-solver >=23.11.0", + "conda-package-handling >=2.2.0", + "distro >=1.5.0", + "jsonpatch >=1.32", + "menuinst", + "packaging >=23.0", + "platformdirs >=3.10.0", + "pluggy >=1.0.0", + "pycosat >=0.6.3", + "python >=3.11,<3.12.0a0", + "requests >=2.28.0,<3", + "ruamel.yaml >=0.11.14,<0.19", + "setuptools >=60.0.0", + "tqdm >=4", + "truststore >=0.8.0" + ], + "extracted_package_dir": "/Users/donjayamanne/miniconda3/pkgs/conda-23.11.0-py311hca03da5_0", + "features": "", + "files": [ + "bin/activate", + "bin/conda", + "bin/conda-env", + "bin/deactivate", + "condabin/conda", + "etc/fish/conf.d/conda.fish", + "etc/profile.d/conda.csh", + "etc/profile.d/conda.sh", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/INSTALLER", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/METADATA", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/RECORD", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/REQUESTED", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/WHEEL", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/direct_url.json", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/entry_points.txt", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/licenses/AUTHORS.md", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/licenses/LICENSE", + "lib/python3.11/site-packages/conda/__init__.py", + "lib/python3.11/site-packages/conda/__main__.py", + "lib/python3.11/site-packages/conda/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/__version__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/activate.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/api.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/deprecations.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/exception_handler.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/exceptions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/exports.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/history.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/instructions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/misc.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/plan.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/resolve.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/utils.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__version__.py", + "lib/python3.11/site-packages/conda/_vendor/__init__.py", + "lib/python3.11/site-packages/conda/_vendor/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/__pycache__/appdirs.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/__pycache__/distro.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/appdirs.LICENSE.txt", + "lib/python3.11/site-packages/conda/_vendor/appdirs.py", + "lib/python3.11/site-packages/conda/_vendor/boltons/LICENSE", + "lib/python3.11/site-packages/conda/_vendor/boltons/__init__.py", + "lib/python3.11/site-packages/conda/_vendor/boltons/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/boltons/__pycache__/setutils.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/boltons/__pycache__/timeutils.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/boltons/setutils.py", + "lib/python3.11/site-packages/conda/_vendor/boltons/timeutils.py", + "lib/python3.11/site-packages/conda/_vendor/cpuinfo/__init__.py", + "lib/python3.11/site-packages/conda/_vendor/cpuinfo/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/cpuinfo/__pycache__/cpuinfo.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/cpuinfo/cpuinfo.py", + "lib/python3.11/site-packages/conda/_vendor/distro.LICENSE.txt", + "lib/python3.11/site-packages/conda/_vendor/distro.py", + "lib/python3.11/site-packages/conda/_vendor/frozendict/LICENSE.txt", + "lib/python3.11/site-packages/conda/_vendor/frozendict/__init__.py", + "lib/python3.11/site-packages/conda/_vendor/frozendict/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/py_cpuinfo.LICENSE", + "lib/python3.11/site-packages/conda/_vendor/vendor.txt", + "lib/python3.11/site-packages/conda/activate.py", + "lib/python3.11/site-packages/conda/api.py", + "lib/python3.11/site-packages/conda/auxlib/LICENSE", + "lib/python3.11/site-packages/conda/auxlib/__init__.py", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/collection.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/compat.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/decorators.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/entity.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/exceptions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/ish.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/logz.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/packaging.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/type_coercion.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/collection.py", + "lib/python3.11/site-packages/conda/auxlib/compat.py", + "lib/python3.11/site-packages/conda/auxlib/decorators.py", + "lib/python3.11/site-packages/conda/auxlib/entity.py", + "lib/python3.11/site-packages/conda/auxlib/exceptions.py", + "lib/python3.11/site-packages/conda/auxlib/ish.py", + "lib/python3.11/site-packages/conda/auxlib/logz.py", + "lib/python3.11/site-packages/conda/auxlib/packaging.py", + "lib/python3.11/site-packages/conda/auxlib/type_coercion.py", + "lib/python3.11/site-packages/conda/base/__init__.py", + "lib/python3.11/site-packages/conda/base/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/base/__pycache__/constants.cpython-311.pyc", + "lib/python3.11/site-packages/conda/base/__pycache__/context.cpython-311.pyc", + "lib/python3.11/site-packages/conda/base/__pycache__/exceptions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/base/constants.py", + "lib/python3.11/site-packages/conda/base/context.py", + "lib/python3.11/site-packages/conda/base/exceptions.py", + "lib/python3.11/site-packages/conda/cli/__init__.py", + "lib/python3.11/site-packages/conda/cli/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/actions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/common.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/conda_argparse.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/find_commands.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/helpers.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/install.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_clean.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_compare.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_config.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_create.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_info.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_init.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_install.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_list.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_mock_activate.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_mock_deactivate.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_notices.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_package.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_pip.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_remove.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_rename.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_run.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_search.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_update.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/python_api.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/actions.py", + "lib/python3.11/site-packages/conda/cli/common.py", + "lib/python3.11/site-packages/conda/cli/conda_argparse.py", + "lib/python3.11/site-packages/conda/cli/find_commands.py", + "lib/python3.11/site-packages/conda/cli/helpers.py", + "lib/python3.11/site-packages/conda/cli/install.py", + "lib/python3.11/site-packages/conda/cli/main.py", + "lib/python3.11/site-packages/conda/cli/main_clean.py", + "lib/python3.11/site-packages/conda/cli/main_compare.py", + "lib/python3.11/site-packages/conda/cli/main_config.py", + "lib/python3.11/site-packages/conda/cli/main_create.py", + "lib/python3.11/site-packages/conda/cli/main_info.py", + "lib/python3.11/site-packages/conda/cli/main_init.py", + "lib/python3.11/site-packages/conda/cli/main_install.py", + "lib/python3.11/site-packages/conda/cli/main_list.py", + "lib/python3.11/site-packages/conda/cli/main_mock_activate.py", + "lib/python3.11/site-packages/conda/cli/main_mock_deactivate.py", + "lib/python3.11/site-packages/conda/cli/main_notices.py", + "lib/python3.11/site-packages/conda/cli/main_package.py", + "lib/python3.11/site-packages/conda/cli/main_pip.py", + "lib/python3.11/site-packages/conda/cli/main_remove.py", + "lib/python3.11/site-packages/conda/cli/main_rename.py", + "lib/python3.11/site-packages/conda/cli/main_run.py", + "lib/python3.11/site-packages/conda/cli/main_search.py", + "lib/python3.11/site-packages/conda/cli/main_update.py", + "lib/python3.11/site-packages/conda/cli/python_api.py", + "lib/python3.11/site-packages/conda/common/__init__.py", + "lib/python3.11/site-packages/conda/common/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/_logic.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/compat.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/configuration.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/constants.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/decorators.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/disk.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/io.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/iterators.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/logic.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/path.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/serialize.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/signals.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/toposort.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/url.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/_logic.py", + "lib/python3.11/site-packages/conda/common/_os/__init__.py", + "lib/python3.11/site-packages/conda/common/_os/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/_os/__pycache__/linux.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/_os/__pycache__/unix.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/_os/__pycache__/windows.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/_os/linux.py", + "lib/python3.11/site-packages/conda/common/_os/unix.py", + "lib/python3.11/site-packages/conda/common/_os/windows.py", + "lib/python3.11/site-packages/conda/common/compat.py", + "lib/python3.11/site-packages/conda/common/configuration.py", + "lib/python3.11/site-packages/conda/common/constants.py", + "lib/python3.11/site-packages/conda/common/decorators.py", + "lib/python3.11/site-packages/conda/common/disk.py", + "lib/python3.11/site-packages/conda/common/io.py", + "lib/python3.11/site-packages/conda/common/iterators.py", + "lib/python3.11/site-packages/conda/common/logic.py", + "lib/python3.11/site-packages/conda/common/path.py", + "lib/python3.11/site-packages/conda/common/pkg_formats/__init__.py", + "lib/python3.11/site-packages/conda/common/pkg_formats/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/pkg_formats/__pycache__/python.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/pkg_formats/python.py", + "lib/python3.11/site-packages/conda/common/serialize.py", + "lib/python3.11/site-packages/conda/common/signals.py", + "lib/python3.11/site-packages/conda/common/toposort.py", + "lib/python3.11/site-packages/conda/common/url.py", + "lib/python3.11/site-packages/conda/core/__init__.py", + "lib/python3.11/site-packages/conda/core/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/envs_manager.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/index.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/initialize.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/link.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/package_cache.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/package_cache_data.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/path_actions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/portability.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/prefix_data.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/solve.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/subdir_data.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/envs_manager.py", + "lib/python3.11/site-packages/conda/core/index.py", + "lib/python3.11/site-packages/conda/core/initialize.py", + "lib/python3.11/site-packages/conda/core/link.py", + "lib/python3.11/site-packages/conda/core/package_cache.py", + "lib/python3.11/site-packages/conda/core/package_cache_data.py", + "lib/python3.11/site-packages/conda/core/path_actions.py", + "lib/python3.11/site-packages/conda/core/portability.py", + "lib/python3.11/site-packages/conda/core/prefix_data.py", + "lib/python3.11/site-packages/conda/core/solve.py", + "lib/python3.11/site-packages/conda/core/subdir_data.py", + "lib/python3.11/site-packages/conda/deprecations.py", + "lib/python3.11/site-packages/conda/exception_handler.py", + "lib/python3.11/site-packages/conda/exceptions.py", + "lib/python3.11/site-packages/conda/exports.py", + "lib/python3.11/site-packages/conda/gateways/__init__.py", + "lib/python3.11/site-packages/conda/gateways/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/__pycache__/anaconda_client.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/__pycache__/logging.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/__pycache__/subprocess.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/anaconda_client.py", + "lib/python3.11/site-packages/conda/gateways/connection/__init__.py", + "lib/python3.11/site-packages/conda/gateways/connection/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/__pycache__/download.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/__pycache__/session.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/__init__.py", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/__pycache__/ftp.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/__pycache__/http.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/__pycache__/localfs.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/__pycache__/s3.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/ftp.py", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/http.py", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/localfs.py", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/s3.py", + "lib/python3.11/site-packages/conda/gateways/connection/download.py", + "lib/python3.11/site-packages/conda/gateways/connection/session.py", + "lib/python3.11/site-packages/conda/gateways/disk/__init__.py", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/create.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/delete.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/link.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/lock.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/permissions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/read.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/test.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/update.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/create.py", + "lib/python3.11/site-packages/conda/gateways/disk/delete.py", + "lib/python3.11/site-packages/conda/gateways/disk/link.py", + "lib/python3.11/site-packages/conda/gateways/disk/lock.py", + "lib/python3.11/site-packages/conda/gateways/disk/permissions.py", + "lib/python3.11/site-packages/conda/gateways/disk/read.py", + "lib/python3.11/site-packages/conda/gateways/disk/test.py", + "lib/python3.11/site-packages/conda/gateways/disk/update.py", + "lib/python3.11/site-packages/conda/gateways/logging.py", + "lib/python3.11/site-packages/conda/gateways/repodata/__init__.py", + "lib/python3.11/site-packages/conda/gateways/repodata/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/repodata/__pycache__/lock.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/__init__.py", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/__pycache__/core.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/__pycache__/fetch.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/__pycache__/interface.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/core.py", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/fetch.py", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/interface.py", + "lib/python3.11/site-packages/conda/gateways/repodata/lock.py", + "lib/python3.11/site-packages/conda/gateways/subprocess.py", + "lib/python3.11/site-packages/conda/history.py", + "lib/python3.11/site-packages/conda/instructions.py", + "lib/python3.11/site-packages/conda/misc.py", + "lib/python3.11/site-packages/conda/models/__init__.py", + "lib/python3.11/site-packages/conda/models/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/channel.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/dist.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/enums.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/leased_path_entry.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/match_spec.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/package_info.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/prefix_graph.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/records.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/version.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/channel.py", + "lib/python3.11/site-packages/conda/models/dist.py", + "lib/python3.11/site-packages/conda/models/enums.py", + "lib/python3.11/site-packages/conda/models/leased_path_entry.py", + "lib/python3.11/site-packages/conda/models/match_spec.py", + "lib/python3.11/site-packages/conda/models/package_info.py", + "lib/python3.11/site-packages/conda/models/prefix_graph.py", + "lib/python3.11/site-packages/conda/models/records.py", + "lib/python3.11/site-packages/conda/models/version.py", + "lib/python3.11/site-packages/conda/notices/__init__.py", + "lib/python3.11/site-packages/conda/notices/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/notices/__pycache__/cache.cpython-311.pyc", + "lib/python3.11/site-packages/conda/notices/__pycache__/core.cpython-311.pyc", + "lib/python3.11/site-packages/conda/notices/__pycache__/fetch.cpython-311.pyc", + "lib/python3.11/site-packages/conda/notices/__pycache__/types.cpython-311.pyc", + "lib/python3.11/site-packages/conda/notices/__pycache__/views.cpython-311.pyc", + "lib/python3.11/site-packages/conda/notices/cache.py", + "lib/python3.11/site-packages/conda/notices/core.py", + "lib/python3.11/site-packages/conda/notices/fetch.py", + "lib/python3.11/site-packages/conda/notices/types.py", + "lib/python3.11/site-packages/conda/notices/views.py", + "lib/python3.11/site-packages/conda/plan.py", + "lib/python3.11/site-packages/conda/plugins/__init__.py", + "lib/python3.11/site-packages/conda/plugins/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/__pycache__/hookspec.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/__pycache__/manager.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/__pycache__/solvers.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/__pycache__/types.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/hookspec.py", + "lib/python3.11/site-packages/conda/plugins/manager.py", + "lib/python3.11/site-packages/conda/plugins/solvers.py", + "lib/python3.11/site-packages/conda/plugins/subcommands/__init__.py", + "lib/python3.11/site-packages/conda/plugins/subcommands/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/subcommands/doctor/__init__.py", + "lib/python3.11/site-packages/conda/plugins/subcommands/doctor/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/subcommands/doctor/__pycache__/health_checks.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/subcommands/doctor/health_checks.py", + "lib/python3.11/site-packages/conda/plugins/types.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__init__.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/archspec.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/conda.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/cuda.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/freebsd.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/linux.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/osx.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/windows.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/archspec.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/conda.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/cuda.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/freebsd.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/linux.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/osx.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/windows.py", + "lib/python3.11/site-packages/conda/py.typed", + "lib/python3.11/site-packages/conda/resolve.py", + "lib/python3.11/site-packages/conda/shell/Library/bin/conda.bat", + "lib/python3.11/site-packages/conda/shell/Scripts/activate.bat", + "lib/python3.11/site-packages/conda/shell/bin/activate", + "lib/python3.11/site-packages/conda/shell/bin/conda", + "lib/python3.11/site-packages/conda/shell/bin/deactivate", + "lib/python3.11/site-packages/conda/shell/cli-32.exe", + "lib/python3.11/site-packages/conda/shell/cli-64.exe", + "lib/python3.11/site-packages/conda/shell/conda.xsh", + "lib/python3.11/site-packages/conda/shell/conda_icon.ico", + "lib/python3.11/site-packages/conda/shell/condabin/Conda.psm1", + "lib/python3.11/site-packages/conda/shell/condabin/_conda_activate.bat", + "lib/python3.11/site-packages/conda/shell/condabin/activate.bat", + "lib/python3.11/site-packages/conda/shell/condabin/conda-hook.ps1", + "lib/python3.11/site-packages/conda/shell/condabin/conda.bat", + "lib/python3.11/site-packages/conda/shell/condabin/conda_auto_activate.bat", + "lib/python3.11/site-packages/conda/shell/condabin/conda_hook.bat", + "lib/python3.11/site-packages/conda/shell/condabin/deactivate.bat", + "lib/python3.11/site-packages/conda/shell/condabin/rename_tmp.bat", + "lib/python3.11/site-packages/conda/shell/etc/fish/conf.d/conda.fish", + "lib/python3.11/site-packages/conda/shell/etc/profile.d/conda.csh", + "lib/python3.11/site-packages/conda/shell/etc/profile.d/conda.sh", + "lib/python3.11/site-packages/conda/testing/__init__.py", + "lib/python3.11/site-packages/conda/testing/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/__pycache__/cases.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/__pycache__/fixtures.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/__pycache__/helpers.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/__pycache__/integration.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/__pycache__/solver_helpers.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/cases.py", + "lib/python3.11/site-packages/conda/testing/fixtures.py", + "lib/python3.11/site-packages/conda/testing/gateways/__init__.py", + "lib/python3.11/site-packages/conda/testing/gateways/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/gateways/__pycache__/fixtures.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/gateways/fixtures.py", + "lib/python3.11/site-packages/conda/testing/helpers.py", + "lib/python3.11/site-packages/conda/testing/integration.py", + "lib/python3.11/site-packages/conda/testing/notices/__init__.py", + "lib/python3.11/site-packages/conda/testing/notices/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/notices/__pycache__/fixtures.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/notices/__pycache__/helpers.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/notices/fixtures.py", + "lib/python3.11/site-packages/conda/testing/notices/helpers.py", + "lib/python3.11/site-packages/conda/testing/solver_helpers.py", + "lib/python3.11/site-packages/conda/trust/__init__.py", + "lib/python3.11/site-packages/conda/trust/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/trust/__pycache__/constants.cpython-311.pyc", + "lib/python3.11/site-packages/conda/trust/__pycache__/signature_verification.cpython-311.pyc", + "lib/python3.11/site-packages/conda/trust/constants.py", + "lib/python3.11/site-packages/conda/trust/signature_verification.py", + "lib/python3.11/site-packages/conda/utils.py", + "lib/python3.11/site-packages/conda_env/README.md", + "lib/python3.11/site-packages/conda_env/__init__.py", + "lib/python3.11/site-packages/conda_env/__main__.py", + "lib/python3.11/site-packages/conda_env/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/__pycache__/env.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/__pycache__/pip_util.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__init__.py", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/common.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_config.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_create.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_export.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_list.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_remove.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_update.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_vars.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/common.py", + "lib/python3.11/site-packages/conda_env/cli/main.py", + "lib/python3.11/site-packages/conda_env/cli/main_config.py", + "lib/python3.11/site-packages/conda_env/cli/main_create.py", + "lib/python3.11/site-packages/conda_env/cli/main_export.py", + "lib/python3.11/site-packages/conda_env/cli/main_list.py", + "lib/python3.11/site-packages/conda_env/cli/main_remove.py", + "lib/python3.11/site-packages/conda_env/cli/main_update.py", + "lib/python3.11/site-packages/conda_env/cli/main_vars.py", + "lib/python3.11/site-packages/conda_env/env.py", + "lib/python3.11/site-packages/conda_env/installers/__init__.py", + "lib/python3.11/site-packages/conda_env/installers/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/installers/__pycache__/base.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/installers/__pycache__/conda.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/installers/__pycache__/pip.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/installers/base.py", + "lib/python3.11/site-packages/conda_env/installers/conda.py", + "lib/python3.11/site-packages/conda_env/installers/pip.py", + "lib/python3.11/site-packages/conda_env/pip_util.py", + "lib/python3.11/site-packages/conda_env/specs/__init__.py", + "lib/python3.11/site-packages/conda_env/specs/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/specs/__pycache__/binstar.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/specs/__pycache__/requirements.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/specs/__pycache__/yaml_file.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/specs/binstar.py", + "lib/python3.11/site-packages/conda_env/specs/requirements.py", + "lib/python3.11/site-packages/conda_env/specs/yaml_file.py", + "lib/python3.11/site-packages/tests/conda_env/__init__.py", + "lib/python3.11/site-packages/tests/conda_env/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/__pycache__/test_cli.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/__pycache__/test_create.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/__pycache__/test_env.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/__pycache__/test_pip_util.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/__pycache__/utils.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/specs/__init__.py", + "lib/python3.11/site-packages/tests/conda_env/specs/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/specs/__pycache__/test_binstar.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/specs/__pycache__/test_requirements.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/specs/__pycache__/test_yaml_file.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/specs/test_binstar.py", + "lib/python3.11/site-packages/tests/conda_env/specs/test_requirements.py", + "lib/python3.11/site-packages/tests/conda_env/specs/test_yaml_file.py", + "lib/python3.11/site-packages/tests/conda_env/support/add-pip.yml", + "lib/python3.11/site-packages/tests/conda_env/support/advanced-pip/.gitignore", + "lib/python3.11/site-packages/tests/conda_env/support/advanced-pip/another-project-requirements.txt", + "lib/python3.11/site-packages/tests/conda_env/support/advanced-pip/environment.yml", + "lib/python3.11/site-packages/tests/conda_env/support/advanced-pip/module_to_install_in_editable_mode/__pycache__/setup.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/support/advanced-pip/module_to_install_in_editable_mode/setup.py", + "lib/python3.11/site-packages/tests/conda_env/support/channels_with_envvars.yml", + "lib/python3.11/site-packages/tests/conda_env/support/empty_env.yml", + "lib/python3.11/site-packages/tests/conda_env/support/env_with_dependencies.yml", + "lib/python3.11/site-packages/tests/conda_env/support/example-yaml/environment.yaml", + "lib/python3.11/site-packages/tests/conda_env/support/example/environment.yml", + "lib/python3.11/site-packages/tests/conda_env/support/example/environment_host_port.yml", + "lib/python3.11/site-packages/tests/conda_env/support/example/environment_pinned.yml", + "lib/python3.11/site-packages/tests/conda_env/support/example/environment_pinned_updated.yml", + "lib/python3.11/site-packages/tests/conda_env/support/foo/bar/baz/readme", + "lib/python3.11/site-packages/tests/conda_env/support/foo/bar/readme", + "lib/python3.11/site-packages/tests/conda_env/support/foo/environment.yml", + "lib/python3.11/site-packages/tests/conda_env/support/invalid_keys.yml", + "lib/python3.11/site-packages/tests/conda_env/support/notebook.ipynb", + "lib/python3.11/site-packages/tests/conda_env/support/notebook_with_env.ipynb", + "lib/python3.11/site-packages/tests/conda_env/support/pip_argh.yml", + "lib/python3.11/site-packages/tests/conda_env/support/requirements.txt", + "lib/python3.11/site-packages/tests/conda_env/support/saved-env/environment.yml", + "lib/python3.11/site-packages/tests/conda_env/support/simple.yml", + "lib/python3.11/site-packages/tests/conda_env/support/valid_keys.yml", + "lib/python3.11/site-packages/tests/conda_env/support/with-pip.yml", + "lib/python3.11/site-packages/tests/conda_env/test_cli.py", + "lib/python3.11/site-packages/tests/conda_env/test_create.py", + "lib/python3.11/site-packages/tests/conda_env/test_env.py", + "lib/python3.11/site-packages/tests/conda_env/test_pip_util.py", + "lib/python3.11/site-packages/tests/conda_env/utils.py", + "lib/python3.11/site-packages/tests/test-recipes/activate_deactivate_package/src/etc/conda/activate.d/activate.bat", + "lib/python3.11/site-packages/tests/test-recipes/activate_deactivate_package/src/etc/conda/activate.d/activate.sh", + "lib/python3.11/site-packages/tests/test-recipes/activate_deactivate_package/src/etc/conda/deactivate.d/deactivate.bat", + "lib/python3.11/site-packages/tests/test-recipes/activate_deactivate_package/src/etc/conda/deactivate.d/deactivate.sh", + "lib/python3.11/site-packages/xontrib/conda.xsh", + "shell/condabin/Conda.psm1", + "shell/condabin/conda-hook.ps1" + ], + "fn": "conda-23.11.0-py311hca03da5_0.conda", + "license": "BSD-3-Clause", + "link": { + "source": "/Users/donjayamanne/miniconda3/pkgs/conda-23.11.0-py311hca03da5_0", + "type": 1 + }, + "md5": "d40f56a649df2d05c5468713732e005e", + "name": "conda", + "package_tarball_full_path": "/Users/donjayamanne/miniconda3/pkgs/conda-23.11.0-py311hca03da5_0.conda", + "paths_data": { + "paths": [ + { + "_path": "bin/activate", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "92dd3f5997c70939665a9000ba114ba13f28c5ce1341fa75060f48dcb808a127", + "sha256_in_prefix": "4270a26a4429c0dd5a4c35900f8b2211b35c7447367b6f2b8470bdedc1f240ca", + "size_in_bytes": 429 + }, + { + "_path": "bin/conda", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "c6380d731f573d898f146d5580e0447dd44d068d619bda7aff326095f8bc4f88", + "sha256_in_prefix": "b5dd14921f011aa934757f31b62e0fa2be17a1a9f99ccb2d26a1f12a864d64e8", + "size_in_bytes": 756 + }, + { + "_path": "bin/conda-env", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "c7e6fa37766fe556ef4f95c0860a0eb7f7817c6f057ba9369e248bcdd7f37c9d", + "sha256_in_prefix": "88be67a0d6c47edbd65fa3d860a3514daed6b6bac830ec93800cf43fd778379c", + "size_in_bytes": 393 + }, + { + "_path": "bin/deactivate", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "a69da038fee96660c3f47c2c393c05b54986ba0c929aada61cd410df6e09746e", + "sha256_in_prefix": "2af9834dc0f7c2fb9db2f9e67829700c6828774d9ad7996602324c5a5387a89c", + "size_in_bytes": 517 + }, + { + "_path": "condabin/conda", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "c6380d731f573d898f146d5580e0447dd44d068d619bda7aff326095f8bc4f88", + "sha256_in_prefix": "b5dd14921f011aa934757f31b62e0fa2be17a1a9f99ccb2d26a1f12a864d64e8", + "size_in_bytes": 756 + }, + { + "_path": "etc/fish/conf.d/conda.fish", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "85caec3d76f3239e105f88cbafc6acbe04cd97fd4c1db4da4e0dcf4d357a631e", + "sha256_in_prefix": "a1ab61539200ab52ec85d9bf7de9b1cfe4a7fbdd4da2f6a7882d417ea8c7d3e1", + "size_in_bytes": 4880 + }, + { + "_path": "etc/profile.d/conda.csh", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "966581001ffd439152bf4432c7c436e25014aa2386668a00145b4087aa354604", + "sha256_in_prefix": "85a53ef7d70dcb1c16695b970bbc3880b74eaa23fff43dde57796e34fcb2ead7", + "size_in_bytes": 3163 + }, + { + "_path": "etc/profile.d/conda.sh", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "a147ccd49f1579e69c49cb12114421d95b84a1e02ef1df7c4f8c51d44cd026d1", + "sha256_in_prefix": "920d3be6a977141273da05e8d0a1867352013f1e2702a313fea15a101432f344", + "size_in_bytes": 2552 + }, + { + "_path": "lib/python3.11/site-packages/xontrib/conda.xsh", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "e0e9fb9f5d108c70434802b45e51910671b409a3cddd7b4ec887af2b07e2ce05", + "sha256_in_prefix": "c0650607c2cf90f2ce94f3b7370349922fdac5901e3316fa9f065d8773b3f944", + "size_in_bytes": 7565 + }, + { + "_path": "shell/condabin/conda-hook.ps1", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "94f9a90527bf021292a113a9e546e3f5dd042ae3afc0ed2a7a5763ef312ac756", + "sha256_in_prefix": "4edd554f34b2aa567876996da1be4cbc89d866e0e3d958f42d7889ccff8f617f", + "size_in_bytes": 1047 + } + ], + "paths_version": 1 + }, + "requested_spec": "defaults/osx-arm64::conda==23.11.0=py311hca03da5_0[md5=d40f56a649df2d05c5468713732e005e]", + "sha256": "63ade392153a88ba334593059bfce7ab3b6df1dbbd6622655c8a7db587f70a78", + "size": 1317120, + "subdir": "osx-arm64", + "timestamp": 1701719702000, + "track_features": "", + "url": "https://repo.anaconda.com/pkgs/main/osx-arm64/conda-23.11.0-py311hca03da5_0.conda", + "version": "23.11.0" +} \ No newline at end of file diff --git a/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda3-3.10-22.11.1-1/conda-meta/history b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda3-3.10-22.11.1-1/conda-meta/history new file mode 100644 index 000000000000..b196a3e5922b --- /dev/null +++ b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda3-3.10-22.11.1-1/conda-meta/history @@ -0,0 +1,72 @@ +==> 2024-02-14 17:04:16 <== +# cmd: /Users/donjayamanne/miniconda3/conda.exe install --offline --file /Users/donjayamanne/miniconda3/pkgs/env.txt -yp /Users/donjayamanne/miniconda3 +# conda version: 23.10.0 ++defaults/noarch::archspec-0.2.1-pyhd3eb1b0_0 ++defaults/noarch::charset-normalizer-2.0.4-pyhd3eb1b0_0 ++defaults/noarch::conda-libmamba-solver-23.12.0-pyhd3eb1b0_1 ++defaults/noarch::jsonpatch-1.32-pyhd3eb1b0_0 ++defaults/noarch::jsonpointer-2.1-pyhd3eb1b0_0 ++defaults/noarch::pybind11-abi-4-hd3eb1b0_1 ++defaults/noarch::pycparser-2.21-pyhd3eb1b0_0 ++defaults/noarch::tzdata-2023c-h04d1e81_0 ++defaults/osx-arm64::boltons-23.0.0-py311hca03da5_0 ++defaults/osx-arm64::brotli-python-1.0.9-py311h313beb8_7 ++defaults/osx-arm64::bzip2-1.0.8-h620ffc9_4 ++defaults/osx-arm64::c-ares-1.19.1-h80987f9_0 ++defaults/osx-arm64::ca-certificates-2023.12.12-hca03da5_0 ++defaults/osx-arm64::certifi-2023.11.17-py311hca03da5_0 ++defaults/osx-arm64::cffi-1.16.0-py311h80987f9_0 ++defaults/osx-arm64::conda-23.11.0-py311hca03da5_0 ++defaults/osx-arm64::conda-content-trust-0.2.0-py311hca03da5_0 ++defaults/osx-arm64::conda-package-handling-2.2.0-py311hca03da5_0 ++defaults/osx-arm64::conda-package-streaming-0.9.0-py311hca03da5_0 ++defaults/osx-arm64::cryptography-41.0.7-py311hd4332d6_0 ++defaults/osx-arm64::distro-1.8.0-py311hca03da5_0 ++defaults/osx-arm64::fmt-9.1.0-h48ca7d4_0 ++defaults/osx-arm64::icu-73.1-h313beb8_0 ++defaults/osx-arm64::idna-3.4-py311hca03da5_0 ++defaults/osx-arm64::krb5-1.20.1-hf3e1bf2_1 ++defaults/osx-arm64::libarchive-3.6.2-h62fee54_2 ++defaults/osx-arm64::libcurl-8.4.0-h3e2b118_1 ++defaults/osx-arm64::libcxx-14.0.6-h848a8c0_0 ++defaults/osx-arm64::libedit-3.1.20230828-h80987f9_0 ++defaults/osx-arm64::libev-4.33-h1a28f6b_1 ++defaults/osx-arm64::libffi-3.4.4-hca03da5_0 ++defaults/osx-arm64::libiconv-1.16-h1a28f6b_2 ++defaults/osx-arm64::libmamba-1.5.3-h15e39b3_0 ++defaults/osx-arm64::libmambapy-1.5.3-py311h1c5506f_0 ++defaults/osx-arm64::libnghttp2-1.57.0-h62f6fdd_0 ++defaults/osx-arm64::libsolv-0.7.24-h514c7bf_0 ++defaults/osx-arm64::libssh2-1.10.0-h02f6b3c_2 ++defaults/osx-arm64::libxml2-2.10.4-h0dcf63f_1 ++defaults/osx-arm64::lz4-c-1.9.4-h313beb8_0 ++defaults/osx-arm64::menuinst-2.0.1-py311hca03da5_1 ++defaults/osx-arm64::ncurses-6.4-h313beb8_0 ++defaults/osx-arm64::openssl-3.0.12-h1a28f6b_0 ++defaults/osx-arm64::packaging-23.1-py311hca03da5_0 ++defaults/osx-arm64::pcre2-10.42-hb066dcc_0 ++defaults/osx-arm64::pip-23.3.1-py311hca03da5_0 ++defaults/osx-arm64::platformdirs-3.10.0-py311hca03da5_0 ++defaults/osx-arm64::pluggy-1.0.0-py311hca03da5_1 ++defaults/osx-arm64::pycosat-0.6.6-py311h80987f9_0 ++defaults/osx-arm64::pyopenssl-23.2.0-py311hca03da5_0 ++defaults/osx-arm64::pysocks-1.7.1-py311hca03da5_0 ++defaults/osx-arm64::python-3.11.5-hb885b13_0 ++defaults/osx-arm64::python.app-3-py311h80987f9_0 ++defaults/osx-arm64::readline-8.2-h1a28f6b_0 ++defaults/osx-arm64::reproc-14.2.4-hc377ac9_1 ++defaults/osx-arm64::reproc-cpp-14.2.4-hc377ac9_1 ++defaults/osx-arm64::requests-2.31.0-py311hca03da5_0 ++defaults/osx-arm64::ruamel.yaml-0.17.21-py311h80987f9_0 ++defaults/osx-arm64::setuptools-68.2.2-py311hca03da5_0 ++defaults/osx-arm64::sqlite-3.41.2-h80987f9_0 ++defaults/osx-arm64::tk-8.6.12-hb8d0fd4_0 ++defaults/osx-arm64::tqdm-4.65.0-py311hb6e6a13_0 ++defaults/osx-arm64::truststore-0.8.0-py311hca03da5_0 ++defaults/osx-arm64::urllib3-1.26.18-py311hca03da5_0 ++defaults/osx-arm64::wheel-0.41.2-py311hca03da5_0 ++defaults/osx-arm64::xz-5.4.5-h80987f9_0 ++defaults/osx-arm64::yaml-cpp-0.8.0-h313beb8_0 ++defaults/osx-arm64::zlib-1.2.13-h5a0b063_0 ++defaults/osx-arm64::zstandard-0.19.0-py311h80987f9_0 ++defaults/osx-arm64::zstd-1.5.5-hd90d995_0 diff --git a/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda3-3.10-22.11.1-1/conda-meta/python-3.11.5-hb885b13_0.json b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda3-3.10-22.11.1-1/conda-meta/python-3.11.5-hb885b13_0.json new file mode 100644 index 000000000000..90b9af01a4e0 --- /dev/null +++ b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda3-3.10-22.11.1-1/conda-meta/python-3.11.5-hb885b13_0.json @@ -0,0 +1,2280 @@ +{ + "build": "hb885b13_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/osx-arm64", + "constrains": [], + "depends": [ + "bzip2 >=1.0.8,<2.0a0", + "libffi >=3.4,<3.5", + "libffi >=3.4,<4.0a0", + "ncurses >=6.4,<7.0a0", + "openssl >=3.0.10,<4.0a0", + "readline >=8.1.2,<9.0a0", + "sqlite >=3.41.2,<4.0a0", + "tk >=8.6.12,<8.7.0a0", + "tzdata", + "xz >=5.4.2,<6.0a0", + "zlib >=1.2.13,<1.3.0a0", + "pip" + ], + "extracted_package_dir": "/Users/donjayamanne/miniconda3/pkgs/python-3.11.5-hb885b13_0", + "features": "", + "files": [ + "bin/2to3", + "bin/2to3-3.11", + "bin/idle3", + "bin/idle3.11", + "bin/pydoc", + "bin/pydoc3", + "bin/pydoc3.11", + "bin/python", + "bin/python3", + "bin/python3-config", + "bin/python3.1", + "bin/python3.11", + "bin/python3.11-config", + "include/python3.11/Python.h", + "include/python3.11/abstract.h", + "include/python3.11/bltinmodule.h", + "include/python3.11/boolobject.h", + "include/python3.11/bytearrayobject.h", + "include/python3.11/bytesobject.h", + "include/python3.11/ceval.h", + "include/python3.11/codecs.h", + "include/python3.11/compile.h", + "include/python3.11/complexobject.h", + "include/python3.11/cpython/abstract.h", + "include/python3.11/cpython/bytearrayobject.h", + "include/python3.11/cpython/bytesobject.h", + "include/python3.11/cpython/cellobject.h", + "include/python3.11/cpython/ceval.h", + "include/python3.11/cpython/classobject.h", + "include/python3.11/cpython/code.h", + "include/python3.11/cpython/compile.h", + "include/python3.11/cpython/complexobject.h", + "include/python3.11/cpython/context.h", + "include/python3.11/cpython/descrobject.h", + "include/python3.11/cpython/dictobject.h", + "include/python3.11/cpython/fileobject.h", + "include/python3.11/cpython/fileutils.h", + "include/python3.11/cpython/floatobject.h", + "include/python3.11/cpython/frameobject.h", + "include/python3.11/cpython/funcobject.h", + "include/python3.11/cpython/genobject.h", + "include/python3.11/cpython/import.h", + "include/python3.11/cpython/initconfig.h", + "include/python3.11/cpython/listobject.h", + "include/python3.11/cpython/longintrepr.h", + "include/python3.11/cpython/longobject.h", + "include/python3.11/cpython/methodobject.h", + "include/python3.11/cpython/modsupport.h", + "include/python3.11/cpython/object.h", + "include/python3.11/cpython/objimpl.h", + "include/python3.11/cpython/odictobject.h", + "include/python3.11/cpython/picklebufobject.h", + "include/python3.11/cpython/pthread_stubs.h", + "include/python3.11/cpython/pyctype.h", + "include/python3.11/cpython/pydebug.h", + "include/python3.11/cpython/pyerrors.h", + "include/python3.11/cpython/pyfpe.h", + "include/python3.11/cpython/pyframe.h", + "include/python3.11/cpython/pylifecycle.h", + "include/python3.11/cpython/pymem.h", + "include/python3.11/cpython/pystate.h", + "include/python3.11/cpython/pythonrun.h", + "include/python3.11/cpython/pythread.h", + "include/python3.11/cpython/pytime.h", + "include/python3.11/cpython/setobject.h", + "include/python3.11/cpython/sysmodule.h", + "include/python3.11/cpython/traceback.h", + "include/python3.11/cpython/tupleobject.h", + "include/python3.11/cpython/unicodeobject.h", + "include/python3.11/cpython/warnings.h", + "include/python3.11/cpython/weakrefobject.h", + "include/python3.11/datetime.h", + "include/python3.11/descrobject.h", + "include/python3.11/dictobject.h", + "include/python3.11/dynamic_annotations.h", + "include/python3.11/enumobject.h", + "include/python3.11/errcode.h", + "include/python3.11/exports.h", + "include/python3.11/fileobject.h", + "include/python3.11/fileutils.h", + "include/python3.11/floatobject.h", + "include/python3.11/frameobject.h", + "include/python3.11/genericaliasobject.h", + "include/python3.11/import.h", + "include/python3.11/internal/pycore_abstract.h", + "include/python3.11/internal/pycore_accu.h", + "include/python3.11/internal/pycore_asdl.h", + "include/python3.11/internal/pycore_ast.h", + "include/python3.11/internal/pycore_ast_state.h", + "include/python3.11/internal/pycore_atomic.h", + "include/python3.11/internal/pycore_atomic_funcs.h", + "include/python3.11/internal/pycore_bitutils.h", + "include/python3.11/internal/pycore_blocks_output_buffer.h", + "include/python3.11/internal/pycore_bytes_methods.h", + "include/python3.11/internal/pycore_bytesobject.h", + "include/python3.11/internal/pycore_call.h", + "include/python3.11/internal/pycore_ceval.h", + "include/python3.11/internal/pycore_code.h", + "include/python3.11/internal/pycore_compile.h", + "include/python3.11/internal/pycore_condvar.h", + "include/python3.11/internal/pycore_context.h", + "include/python3.11/internal/pycore_dict.h", + "include/python3.11/internal/pycore_dtoa.h", + "include/python3.11/internal/pycore_emscripten_signal.h", + "include/python3.11/internal/pycore_exceptions.h", + "include/python3.11/internal/pycore_fileutils.h", + "include/python3.11/internal/pycore_floatobject.h", + "include/python3.11/internal/pycore_format.h", + "include/python3.11/internal/pycore_frame.h", + "include/python3.11/internal/pycore_function.h", + "include/python3.11/internal/pycore_gc.h", + "include/python3.11/internal/pycore_genobject.h", + "include/python3.11/internal/pycore_getopt.h", + "include/python3.11/internal/pycore_gil.h", + "include/python3.11/internal/pycore_global_objects.h", + "include/python3.11/internal/pycore_global_strings.h", + "include/python3.11/internal/pycore_hamt.h", + "include/python3.11/internal/pycore_hashtable.h", + "include/python3.11/internal/pycore_import.h", + "include/python3.11/internal/pycore_initconfig.h", + "include/python3.11/internal/pycore_interp.h", + "include/python3.11/internal/pycore_interpreteridobject.h", + "include/python3.11/internal/pycore_list.h", + "include/python3.11/internal/pycore_long.h", + "include/python3.11/internal/pycore_moduleobject.h", + "include/python3.11/internal/pycore_namespace.h", + "include/python3.11/internal/pycore_object.h", + "include/python3.11/internal/pycore_opcode.h", + "include/python3.11/internal/pycore_parser.h", + "include/python3.11/internal/pycore_pathconfig.h", + "include/python3.11/internal/pycore_pyarena.h", + "include/python3.11/internal/pycore_pyerrors.h", + "include/python3.11/internal/pycore_pyhash.h", + "include/python3.11/internal/pycore_pylifecycle.h", + "include/python3.11/internal/pycore_pymath.h", + "include/python3.11/internal/pycore_pymem.h", + "include/python3.11/internal/pycore_pystate.h", + "include/python3.11/internal/pycore_runtime.h", + "include/python3.11/internal/pycore_runtime_init.h", + "include/python3.11/internal/pycore_signal.h", + "include/python3.11/internal/pycore_sliceobject.h", + "include/python3.11/internal/pycore_strhex.h", + "include/python3.11/internal/pycore_structseq.h", + "include/python3.11/internal/pycore_symtable.h", + "include/python3.11/internal/pycore_sysmodule.h", + "include/python3.11/internal/pycore_traceback.h", + "include/python3.11/internal/pycore_tuple.h", + "include/python3.11/internal/pycore_typeobject.h", + "include/python3.11/internal/pycore_ucnhash.h", + "include/python3.11/internal/pycore_unicodeobject.h", + "include/python3.11/internal/pycore_unionobject.h", + "include/python3.11/internal/pycore_warnings.h", + "include/python3.11/intrcheck.h", + "include/python3.11/iterobject.h", + "include/python3.11/listobject.h", + "include/python3.11/longobject.h", + "include/python3.11/marshal.h", + "include/python3.11/memoryobject.h", + "include/python3.11/methodobject.h", + "include/python3.11/modsupport.h", + "include/python3.11/moduleobject.h", + "include/python3.11/object.h", + "include/python3.11/objimpl.h", + "include/python3.11/opcode.h", + "include/python3.11/osdefs.h", + "include/python3.11/osmodule.h", + "include/python3.11/patchlevel.h", + "include/python3.11/py_curses.h", + "include/python3.11/pybuffer.h", + "include/python3.11/pycapsule.h", + "include/python3.11/pyconfig.h", + "include/python3.11/pydtrace.h", + "include/python3.11/pyerrors.h", + "include/python3.11/pyexpat.h", + "include/python3.11/pyframe.h", + "include/python3.11/pyhash.h", + "include/python3.11/pylifecycle.h", + "include/python3.11/pymacconfig.h", + "include/python3.11/pymacro.h", + "include/python3.11/pymath.h", + "include/python3.11/pymem.h", + "include/python3.11/pyport.h", + "include/python3.11/pystate.h", + "include/python3.11/pystrcmp.h", + "include/python3.11/pystrtod.h", + "include/python3.11/pythonrun.h", + "include/python3.11/pythread.h", + "include/python3.11/pytypedefs.h", + "include/python3.11/rangeobject.h", + "include/python3.11/setobject.h", + "include/python3.11/sliceobject.h", + "include/python3.11/structmember.h", + "include/python3.11/structseq.h", + "include/python3.11/sysmodule.h", + "include/python3.11/token.h", + "include/python3.11/traceback.h", + "include/python3.11/tracemalloc.h", + "include/python3.11/tupleobject.h", + "include/python3.11/typeslots.h", + "include/python3.11/unicodeobject.h", + "include/python3.11/warnings.h", + "include/python3.11/weakrefobject.h", + "lib/libpython3.11.dylib", + "lib/pkgconfig/python-3.11-embed.pc", + "lib/pkgconfig/python-3.11.pc", + "lib/pkgconfig/python3-embed.pc", + "lib/pkgconfig/python3.pc", + "lib/python3.1", + "lib/python3.11/LICENSE.txt", + "lib/python3.11/__future__.py", + "lib/python3.11/__hello__.py", + "lib/python3.11/__phello__/__init__.py", + "lib/python3.11/__phello__/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/__phello__/__pycache__/spam.cpython-311.pyc", + "lib/python3.11/__phello__/spam.py", + "lib/python3.11/__pycache__/__future__.cpython-311.pyc", + "lib/python3.11/__pycache__/__hello__.cpython-311.pyc", + "lib/python3.11/__pycache__/_aix_support.cpython-311.pyc", + "lib/python3.11/__pycache__/_bootsubprocess.cpython-311.pyc", + "lib/python3.11/__pycache__/_collections_abc.cpython-311.pyc", + "lib/python3.11/__pycache__/_compat_pickle.cpython-311.pyc", + "lib/python3.11/__pycache__/_compression.cpython-311.pyc", + "lib/python3.11/__pycache__/_markupbase.cpython-311.pyc", + "lib/python3.11/__pycache__/_osx_support.cpython-311.pyc", + "lib/python3.11/__pycache__/_py_abc.cpython-311.pyc", + "lib/python3.11/__pycache__/_pydecimal.cpython-311.pyc", + "lib/python3.11/__pycache__/_pyio.cpython-311.pyc", + "lib/python3.11/__pycache__/_sitebuiltins.cpython-311.pyc", + "lib/python3.11/__pycache__/_strptime.cpython-311.pyc", + "lib/python3.11/__pycache__/_sysconfigdata__darwin_darwin.cpython-311.pyc", + "lib/python3.11/__pycache__/_sysconfigdata_arm64_apple_darwin20_0_0.cpython-311.pyc", + "lib/python3.11/__pycache__/_threading_local.cpython-311.pyc", + "lib/python3.11/__pycache__/_weakrefset.cpython-311.pyc", + "lib/python3.11/__pycache__/abc.cpython-311.pyc", + "lib/python3.11/__pycache__/aifc.cpython-311.pyc", + "lib/python3.11/__pycache__/antigravity.cpython-311.pyc", + "lib/python3.11/__pycache__/argparse.cpython-311.pyc", + "lib/python3.11/__pycache__/ast.cpython-311.pyc", + "lib/python3.11/__pycache__/asynchat.cpython-311.pyc", + "lib/python3.11/__pycache__/asyncore.cpython-311.pyc", + "lib/python3.11/__pycache__/base64.cpython-311.pyc", + "lib/python3.11/__pycache__/bdb.cpython-311.pyc", + "lib/python3.11/__pycache__/bisect.cpython-311.pyc", + "lib/python3.11/__pycache__/bz2.cpython-311.pyc", + "lib/python3.11/__pycache__/cProfile.cpython-311.pyc", + "lib/python3.11/__pycache__/calendar.cpython-311.pyc", + "lib/python3.11/__pycache__/cgi.cpython-311.pyc", + "lib/python3.11/__pycache__/cgitb.cpython-311.pyc", + "lib/python3.11/__pycache__/chunk.cpython-311.pyc", + "lib/python3.11/__pycache__/cmd.cpython-311.pyc", + "lib/python3.11/__pycache__/code.cpython-311.pyc", + "lib/python3.11/__pycache__/codecs.cpython-311.pyc", + "lib/python3.11/__pycache__/codeop.cpython-311.pyc", + "lib/python3.11/__pycache__/colorsys.cpython-311.pyc", + "lib/python3.11/__pycache__/compileall.cpython-311.pyc", + "lib/python3.11/__pycache__/configparser.cpython-311.pyc", + "lib/python3.11/__pycache__/contextlib.cpython-311.pyc", + "lib/python3.11/__pycache__/contextvars.cpython-311.pyc", + "lib/python3.11/__pycache__/copy.cpython-311.pyc", + "lib/python3.11/__pycache__/copyreg.cpython-311.pyc", + "lib/python3.11/__pycache__/crypt.cpython-311.pyc", + "lib/python3.11/__pycache__/csv.cpython-311.pyc", + "lib/python3.11/__pycache__/dataclasses.cpython-311.pyc", + "lib/python3.11/__pycache__/datetime.cpython-311.pyc", + "lib/python3.11/__pycache__/decimal.cpython-311.pyc", + "lib/python3.11/__pycache__/difflib.cpython-311.pyc", + "lib/python3.11/__pycache__/dis.cpython-311.pyc", + "lib/python3.11/__pycache__/doctest.cpython-311.pyc", + "lib/python3.11/__pycache__/enum.cpython-311.pyc", + "lib/python3.11/__pycache__/filecmp.cpython-311.pyc", + "lib/python3.11/__pycache__/fileinput.cpython-311.pyc", + "lib/python3.11/__pycache__/fnmatch.cpython-311.pyc", + "lib/python3.11/__pycache__/fractions.cpython-311.pyc", + "lib/python3.11/__pycache__/ftplib.cpython-311.pyc", + "lib/python3.11/__pycache__/functools.cpython-311.pyc", + "lib/python3.11/__pycache__/genericpath.cpython-311.pyc", + "lib/python3.11/__pycache__/getopt.cpython-311.pyc", + "lib/python3.11/__pycache__/getpass.cpython-311.pyc", + "lib/python3.11/__pycache__/gettext.cpython-311.pyc", + "lib/python3.11/__pycache__/glob.cpython-311.pyc", + "lib/python3.11/__pycache__/graphlib.cpython-311.pyc", + "lib/python3.11/__pycache__/gzip.cpython-311.pyc", + "lib/python3.11/__pycache__/hashlib.cpython-311.pyc", + "lib/python3.11/__pycache__/heapq.cpython-311.pyc", + "lib/python3.11/__pycache__/hmac.cpython-311.pyc", + "lib/python3.11/__pycache__/imaplib.cpython-311.pyc", + "lib/python3.11/__pycache__/imghdr.cpython-311.pyc", + "lib/python3.11/__pycache__/imp.cpython-311.pyc", + "lib/python3.11/__pycache__/inspect.cpython-311.pyc", + "lib/python3.11/__pycache__/io.cpython-311.pyc", + "lib/python3.11/__pycache__/ipaddress.cpython-311.pyc", + "lib/python3.11/__pycache__/keyword.cpython-311.pyc", + "lib/python3.11/__pycache__/linecache.cpython-311.pyc", + "lib/python3.11/__pycache__/locale.cpython-311.pyc", + "lib/python3.11/__pycache__/lzma.cpython-311.pyc", + "lib/python3.11/__pycache__/mailbox.cpython-311.pyc", + "lib/python3.11/__pycache__/mailcap.cpython-311.pyc", + "lib/python3.11/__pycache__/mimetypes.cpython-311.pyc", + "lib/python3.11/__pycache__/modulefinder.cpython-311.pyc", + "lib/python3.11/__pycache__/netrc.cpython-311.pyc", + "lib/python3.11/__pycache__/nntplib.cpython-311.pyc", + "lib/python3.11/__pycache__/ntpath.cpython-311.pyc", + "lib/python3.11/__pycache__/nturl2path.cpython-311.pyc", + "lib/python3.11/__pycache__/numbers.cpython-311.pyc", + "lib/python3.11/__pycache__/opcode.cpython-311.pyc", + "lib/python3.11/__pycache__/operator.cpython-311.pyc", + "lib/python3.11/__pycache__/optparse.cpython-311.pyc", + "lib/python3.11/__pycache__/os.cpython-311.pyc", + "lib/python3.11/__pycache__/pathlib.cpython-311.pyc", + "lib/python3.11/__pycache__/pdb.cpython-311.pyc", + "lib/python3.11/__pycache__/pickle.cpython-311.pyc", + "lib/python3.11/__pycache__/pickletools.cpython-311.pyc", + "lib/python3.11/__pycache__/pipes.cpython-311.pyc", + "lib/python3.11/__pycache__/pkgutil.cpython-311.pyc", + "lib/python3.11/__pycache__/platform.cpython-311.pyc", + "lib/python3.11/__pycache__/plistlib.cpython-311.pyc", + "lib/python3.11/__pycache__/poplib.cpython-311.pyc", + "lib/python3.11/__pycache__/posixpath.cpython-311.pyc", + "lib/python3.11/__pycache__/pprint.cpython-311.pyc", + "lib/python3.11/__pycache__/profile.cpython-311.pyc", + "lib/python3.11/__pycache__/pstats.cpython-311.pyc", + "lib/python3.11/__pycache__/pty.cpython-311.pyc", + "lib/python3.11/__pycache__/py_compile.cpython-311.pyc", + "lib/python3.11/__pycache__/pyclbr.cpython-311.pyc", + "lib/python3.11/__pycache__/pydoc.cpython-311.pyc", + "lib/python3.11/__pycache__/queue.cpython-311.pyc", + "lib/python3.11/__pycache__/quopri.cpython-311.pyc", + "lib/python3.11/__pycache__/random.cpython-311.pyc", + "lib/python3.11/__pycache__/reprlib.cpython-311.pyc", + "lib/python3.11/__pycache__/rlcompleter.cpython-311.pyc", + "lib/python3.11/__pycache__/runpy.cpython-311.pyc", + "lib/python3.11/__pycache__/sched.cpython-311.pyc", + "lib/python3.11/__pycache__/secrets.cpython-311.pyc", + "lib/python3.11/__pycache__/selectors.cpython-311.pyc", + "lib/python3.11/__pycache__/shelve.cpython-311.pyc", + "lib/python3.11/__pycache__/shlex.cpython-311.pyc", + "lib/python3.11/__pycache__/shutil.cpython-311.pyc", + "lib/python3.11/__pycache__/signal.cpython-311.pyc", + "lib/python3.11/__pycache__/site.cpython-311.pyc", + "lib/python3.11/__pycache__/smtpd.cpython-311.pyc", + "lib/python3.11/__pycache__/smtplib.cpython-311.pyc", + "lib/python3.11/__pycache__/sndhdr.cpython-311.pyc", + "lib/python3.11/__pycache__/socket.cpython-311.pyc", + "lib/python3.11/__pycache__/socketserver.cpython-311.pyc", + "lib/python3.11/__pycache__/sre_compile.cpython-311.pyc", + "lib/python3.11/__pycache__/sre_constants.cpython-311.pyc", + "lib/python3.11/__pycache__/sre_parse.cpython-311.pyc", + "lib/python3.11/__pycache__/ssl.cpython-311.pyc", + "lib/python3.11/__pycache__/stat.cpython-311.pyc", + "lib/python3.11/__pycache__/statistics.cpython-311.pyc", + "lib/python3.11/__pycache__/string.cpython-311.pyc", + "lib/python3.11/__pycache__/stringprep.cpython-311.pyc", + "lib/python3.11/__pycache__/struct.cpython-311.pyc", + "lib/python3.11/__pycache__/subprocess.cpython-311.pyc", + "lib/python3.11/__pycache__/sunau.cpython-311.pyc", + "lib/python3.11/__pycache__/symtable.cpython-311.pyc", + "lib/python3.11/__pycache__/sysconfig.cpython-311.pyc", + "lib/python3.11/__pycache__/tabnanny.cpython-311.pyc", + "lib/python3.11/__pycache__/tarfile.cpython-311.pyc", + "lib/python3.11/__pycache__/telnetlib.cpython-311.pyc", + "lib/python3.11/__pycache__/tempfile.cpython-311.pyc", + "lib/python3.11/__pycache__/textwrap.cpython-311.pyc", + "lib/python3.11/__pycache__/this.cpython-311.pyc", + "lib/python3.11/__pycache__/threading.cpython-311.pyc", + "lib/python3.11/__pycache__/timeit.cpython-311.pyc", + "lib/python3.11/__pycache__/token.cpython-311.pyc", + "lib/python3.11/__pycache__/tokenize.cpython-311.pyc", + "lib/python3.11/__pycache__/trace.cpython-311.pyc", + "lib/python3.11/__pycache__/traceback.cpython-311.pyc", + "lib/python3.11/__pycache__/tracemalloc.cpython-311.pyc", + "lib/python3.11/__pycache__/tty.cpython-311.pyc", + "lib/python3.11/__pycache__/turtle.cpython-311.pyc", + "lib/python3.11/__pycache__/types.cpython-311.pyc", + "lib/python3.11/__pycache__/typing.cpython-311.pyc", + "lib/python3.11/__pycache__/uu.cpython-311.pyc", + "lib/python3.11/__pycache__/uuid.cpython-311.pyc", + "lib/python3.11/__pycache__/warnings.cpython-311.pyc", + "lib/python3.11/__pycache__/wave.cpython-311.pyc", + "lib/python3.11/__pycache__/weakref.cpython-311.pyc", + "lib/python3.11/__pycache__/webbrowser.cpython-311.pyc", + "lib/python3.11/__pycache__/xdrlib.cpython-311.pyc", + "lib/python3.11/__pycache__/zipapp.cpython-311.pyc", + "lib/python3.11/__pycache__/zipfile.cpython-311.pyc", + "lib/python3.11/__pycache__/zipimport.cpython-311.pyc", + "lib/python3.11/_aix_support.py", + "lib/python3.11/_bootsubprocess.py", + "lib/python3.11/_collections_abc.py", + "lib/python3.11/_compat_pickle.py", + "lib/python3.11/_compression.py", + "lib/python3.11/_markupbase.py", + "lib/python3.11/_osx_support.py", + "lib/python3.11/_py_abc.py", + "lib/python3.11/_pydecimal.py", + "lib/python3.11/_pyio.py", + "lib/python3.11/_sitebuiltins.py", + "lib/python3.11/_strptime.py", + "lib/python3.11/_sysconfigdata__darwin_darwin.py", + "lib/python3.11/_sysconfigdata__darwin_darwin.py.orig", + "lib/python3.11/_sysconfigdata_arm64_apple_darwin20_0_0.py", + "lib/python3.11/_threading_local.py", + "lib/python3.11/_weakrefset.py", + "lib/python3.11/abc.py", + "lib/python3.11/aifc.py", + "lib/python3.11/antigravity.py", + "lib/python3.11/argparse.py", + "lib/python3.11/ast.py", + "lib/python3.11/asynchat.py", + "lib/python3.11/asyncio/__init__.py", + "lib/python3.11/asyncio/__main__.py", + "lib/python3.11/asyncio/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/base_events.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/base_futures.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/base_subprocess.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/base_tasks.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/constants.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/coroutines.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/events.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/exceptions.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/format_helpers.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/futures.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/locks.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/log.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/mixins.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/proactor_events.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/protocols.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/queues.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/runners.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/selector_events.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/sslproto.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/staggered.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/streams.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/subprocess.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/taskgroups.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/tasks.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/threads.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/timeouts.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/transports.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/trsock.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/unix_events.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/windows_events.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/windows_utils.cpython-311.pyc", + "lib/python3.11/asyncio/base_events.py", + "lib/python3.11/asyncio/base_futures.py", + "lib/python3.11/asyncio/base_subprocess.py", + "lib/python3.11/asyncio/base_tasks.py", + "lib/python3.11/asyncio/constants.py", + "lib/python3.11/asyncio/coroutines.py", + "lib/python3.11/asyncio/events.py", + "lib/python3.11/asyncio/exceptions.py", + "lib/python3.11/asyncio/format_helpers.py", + "lib/python3.11/asyncio/futures.py", + "lib/python3.11/asyncio/locks.py", + "lib/python3.11/asyncio/log.py", + "lib/python3.11/asyncio/mixins.py", + "lib/python3.11/asyncio/proactor_events.py", + "lib/python3.11/asyncio/protocols.py", + "lib/python3.11/asyncio/queues.py", + "lib/python3.11/asyncio/runners.py", + "lib/python3.11/asyncio/selector_events.py", + "lib/python3.11/asyncio/sslproto.py", + "lib/python3.11/asyncio/staggered.py", + "lib/python3.11/asyncio/streams.py", + "lib/python3.11/asyncio/subprocess.py", + "lib/python3.11/asyncio/taskgroups.py", + "lib/python3.11/asyncio/tasks.py", + "lib/python3.11/asyncio/threads.py", + "lib/python3.11/asyncio/timeouts.py", + "lib/python3.11/asyncio/transports.py", + "lib/python3.11/asyncio/trsock.py", + "lib/python3.11/asyncio/unix_events.py", + "lib/python3.11/asyncio/windows_events.py", + "lib/python3.11/asyncio/windows_utils.py", + "lib/python3.11/asyncore.py", + "lib/python3.11/base64.py", + "lib/python3.11/bdb.py", + "lib/python3.11/bisect.py", + "lib/python3.11/bz2.py", + "lib/python3.11/cProfile.py", + "lib/python3.11/calendar.py", + "lib/python3.11/cgi.py", + "lib/python3.11/cgitb.py", + "lib/python3.11/chunk.py", + "lib/python3.11/cmd.py", + "lib/python3.11/code.py", + "lib/python3.11/codecs.py", + "lib/python3.11/codeop.py", + "lib/python3.11/collections/__init__.py", + "lib/python3.11/collections/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/collections/__pycache__/abc.cpython-311.pyc", + "lib/python3.11/collections/abc.py", + "lib/python3.11/colorsys.py", + "lib/python3.11/compileall.py", + "lib/python3.11/concurrent/__init__.py", + "lib/python3.11/concurrent/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/concurrent/futures/__init__.py", + "lib/python3.11/concurrent/futures/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/concurrent/futures/__pycache__/_base.cpython-311.pyc", + "lib/python3.11/concurrent/futures/__pycache__/process.cpython-311.pyc", + "lib/python3.11/concurrent/futures/__pycache__/thread.cpython-311.pyc", + "lib/python3.11/concurrent/futures/_base.py", + "lib/python3.11/concurrent/futures/process.py", + "lib/python3.11/concurrent/futures/thread.py", + "lib/python3.11/config-3.11-darwin/Makefile", + "lib/python3.11/config-3.11-darwin/Setup", + "lib/python3.11/config-3.11-darwin/Setup.bootstrap", + "lib/python3.11/config-3.11-darwin/Setup.local", + "lib/python3.11/config-3.11-darwin/Setup.stdlib", + "lib/python3.11/config-3.11-darwin/__pycache__/python-config.cpython-311.pyc", + "lib/python3.11/config-3.11-darwin/config.c", + "lib/python3.11/config-3.11-darwin/config.c.in", + "lib/python3.11/config-3.11-darwin/install-sh", + "lib/python3.11/config-3.11-darwin/makesetup", + "lib/python3.11/config-3.11-darwin/python-config.py", + "lib/python3.11/config-3.11-darwin/python.o", + "lib/python3.11/configparser.py", + "lib/python3.11/contextlib.py", + "lib/python3.11/contextvars.py", + "lib/python3.11/copy.py", + "lib/python3.11/copyreg.py", + "lib/python3.11/crypt.py", + "lib/python3.11/csv.py", + "lib/python3.11/ctypes/__init__.py", + "lib/python3.11/ctypes/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/ctypes/__pycache__/_aix.cpython-311.pyc", + "lib/python3.11/ctypes/__pycache__/_endian.cpython-311.pyc", + "lib/python3.11/ctypes/__pycache__/util.cpython-311.pyc", + "lib/python3.11/ctypes/__pycache__/wintypes.cpython-311.pyc", + "lib/python3.11/ctypes/_aix.py", + "lib/python3.11/ctypes/_endian.py", + "lib/python3.11/ctypes/macholib/README.ctypes", + "lib/python3.11/ctypes/macholib/__init__.py", + "lib/python3.11/ctypes/macholib/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/ctypes/macholib/__pycache__/dyld.cpython-311.pyc", + "lib/python3.11/ctypes/macholib/__pycache__/dylib.cpython-311.pyc", + "lib/python3.11/ctypes/macholib/__pycache__/framework.cpython-311.pyc", + "lib/python3.11/ctypes/macholib/dyld.py", + "lib/python3.11/ctypes/macholib/dylib.py", + "lib/python3.11/ctypes/macholib/fetch_macholib", + "lib/python3.11/ctypes/macholib/fetch_macholib.bat", + "lib/python3.11/ctypes/macholib/framework.py", + "lib/python3.11/ctypes/util.py", + "lib/python3.11/ctypes/wintypes.py", + "lib/python3.11/curses/__init__.py", + "lib/python3.11/curses/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/curses/__pycache__/ascii.cpython-311.pyc", + "lib/python3.11/curses/__pycache__/has_key.cpython-311.pyc", + "lib/python3.11/curses/__pycache__/panel.cpython-311.pyc", + "lib/python3.11/curses/__pycache__/textpad.cpython-311.pyc", + "lib/python3.11/curses/ascii.py", + "lib/python3.11/curses/has_key.py", + "lib/python3.11/curses/panel.py", + "lib/python3.11/curses/textpad.py", + "lib/python3.11/dataclasses.py", + "lib/python3.11/datetime.py", + "lib/python3.11/dbm/__init__.py", + "lib/python3.11/dbm/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/dbm/__pycache__/dumb.cpython-311.pyc", + "lib/python3.11/dbm/__pycache__/gnu.cpython-311.pyc", + "lib/python3.11/dbm/__pycache__/ndbm.cpython-311.pyc", + "lib/python3.11/dbm/dumb.py", + "lib/python3.11/dbm/gnu.py", + "lib/python3.11/dbm/ndbm.py", + "lib/python3.11/decimal.py", + "lib/python3.11/difflib.py", + "lib/python3.11/dis.py", + "lib/python3.11/distutils/README", + "lib/python3.11/distutils/__init__.py", + "lib/python3.11/distutils/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/_msvccompiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/archive_util.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/bcppcompiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/ccompiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/cmd.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/config.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/core.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/cygwinccompiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/debug.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/dep_util.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/dir_util.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/dist.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/errors.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/extension.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/fancy_getopt.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/file_util.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/filelist.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/log.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/msvc9compiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/msvccompiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/spawn.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/sysconfig.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/text_file.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/unixccompiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/util.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/version.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/versionpredicate.cpython-311.pyc", + "lib/python3.11/distutils/_msvccompiler.py", + "lib/python3.11/distutils/archive_util.py", + "lib/python3.11/distutils/bcppcompiler.py", + "lib/python3.11/distutils/ccompiler.py", + "lib/python3.11/distutils/cmd.py", + "lib/python3.11/distutils/command/__init__.py", + "lib/python3.11/distutils/command/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/bdist.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/bdist_dumb.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/bdist_rpm.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/build.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/build_clib.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/build_ext.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/build_py.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/build_scripts.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/check.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/clean.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/config.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/install.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/install_data.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/install_egg_info.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/install_headers.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/install_lib.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/install_scripts.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/register.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/sdist.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/upload.cpython-311.pyc", + "lib/python3.11/distutils/command/bdist.py", + "lib/python3.11/distutils/command/bdist_dumb.py", + "lib/python3.11/distutils/command/bdist_rpm.py", + "lib/python3.11/distutils/command/build.py", + "lib/python3.11/distutils/command/build_clib.py", + "lib/python3.11/distutils/command/build_ext.py", + "lib/python3.11/distutils/command/build_py.py", + "lib/python3.11/distutils/command/build_scripts.py", + "lib/python3.11/distutils/command/check.py", + "lib/python3.11/distutils/command/clean.py", + "lib/python3.11/distutils/command/command_template", + "lib/python3.11/distutils/command/config.py", + "lib/python3.11/distutils/command/install.py", + "lib/python3.11/distutils/command/install_data.py", + "lib/python3.11/distutils/command/install_egg_info.py", + "lib/python3.11/distutils/command/install_headers.py", + "lib/python3.11/distutils/command/install_lib.py", + "lib/python3.11/distutils/command/install_scripts.py", + "lib/python3.11/distutils/command/register.py", + "lib/python3.11/distutils/command/sdist.py", + "lib/python3.11/distutils/command/upload.py", + "lib/python3.11/distutils/config.py", + "lib/python3.11/distutils/core.py", + "lib/python3.11/distutils/cygwinccompiler.py", + "lib/python3.11/distutils/debug.py", + "lib/python3.11/distutils/dep_util.py", + "lib/python3.11/distutils/dir_util.py", + "lib/python3.11/distutils/dist.py", + "lib/python3.11/distutils/errors.py", + "lib/python3.11/distutils/extension.py", + "lib/python3.11/distutils/fancy_getopt.py", + "lib/python3.11/distutils/file_util.py", + "lib/python3.11/distutils/filelist.py", + "lib/python3.11/distutils/log.py", + "lib/python3.11/distutils/msvc9compiler.py", + "lib/python3.11/distutils/msvccompiler.py", + "lib/python3.11/distutils/spawn.py", + "lib/python3.11/distutils/sysconfig.py", + "lib/python3.11/distutils/tests/Setup.sample", + "lib/python3.11/distutils/tests/__init__.py", + "lib/python3.11/distutils/tests/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/support.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_archive_util.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_bdist.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_bdist_dumb.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_bdist_rpm.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_build.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_build_clib.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_build_ext.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_build_py.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_build_scripts.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_check.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_clean.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_cmd.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_config.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_config_cmd.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_core.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_cygwinccompiler.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_dep_util.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_dir_util.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_dist.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_extension.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_file_util.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_filelist.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_install.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_install_data.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_install_headers.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_install_lib.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_install_scripts.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_log.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_msvc9compiler.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_msvccompiler.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_register.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_sdist.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_spawn.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_sysconfig.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_text_file.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_unixccompiler.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_upload.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_util.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_version.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_versionpredicate.cpython-311.pyc", + "lib/python3.11/distutils/tests/includetest.rst", + "lib/python3.11/distutils/tests/support.py", + "lib/python3.11/distutils/tests/test_archive_util.py", + "lib/python3.11/distutils/tests/test_bdist.py", + "lib/python3.11/distutils/tests/test_bdist_dumb.py", + "lib/python3.11/distutils/tests/test_bdist_rpm.py", + "lib/python3.11/distutils/tests/test_build.py", + "lib/python3.11/distutils/tests/test_build_clib.py", + "lib/python3.11/distutils/tests/test_build_ext.py", + "lib/python3.11/distutils/tests/test_build_py.py", + "lib/python3.11/distutils/tests/test_build_scripts.py", + "lib/python3.11/distutils/tests/test_check.py", + "lib/python3.11/distutils/tests/test_clean.py", + "lib/python3.11/distutils/tests/test_cmd.py", + "lib/python3.11/distutils/tests/test_config.py", + "lib/python3.11/distutils/tests/test_config_cmd.py", + "lib/python3.11/distutils/tests/test_core.py", + "lib/python3.11/distutils/tests/test_cygwinccompiler.py", + "lib/python3.11/distutils/tests/test_dep_util.py", + "lib/python3.11/distutils/tests/test_dir_util.py", + "lib/python3.11/distutils/tests/test_dist.py", + "lib/python3.11/distutils/tests/test_extension.py", + "lib/python3.11/distutils/tests/test_file_util.py", + "lib/python3.11/distutils/tests/test_filelist.py", + "lib/python3.11/distutils/tests/test_install.py", + "lib/python3.11/distutils/tests/test_install_data.py", + "lib/python3.11/distutils/tests/test_install_headers.py", + "lib/python3.11/distutils/tests/test_install_lib.py", + "lib/python3.11/distutils/tests/test_install_scripts.py", + "lib/python3.11/distutils/tests/test_log.py", + "lib/python3.11/distutils/tests/test_msvc9compiler.py", + "lib/python3.11/distutils/tests/test_msvccompiler.py", + "lib/python3.11/distutils/tests/test_register.py", + "lib/python3.11/distutils/tests/test_sdist.py", + "lib/python3.11/distutils/tests/test_spawn.py", + "lib/python3.11/distutils/tests/test_sysconfig.py", + "lib/python3.11/distutils/tests/test_text_file.py", + "lib/python3.11/distutils/tests/test_unixccompiler.py", + "lib/python3.11/distutils/tests/test_upload.py", + "lib/python3.11/distutils/tests/test_util.py", + "lib/python3.11/distutils/tests/test_version.py", + "lib/python3.11/distutils/tests/test_versionpredicate.py", + "lib/python3.11/distutils/tests/xxmodule.c", + "lib/python3.11/distutils/text_file.py", + "lib/python3.11/distutils/unixccompiler.py", + "lib/python3.11/distutils/util.py", + "lib/python3.11/distutils/version.py", + "lib/python3.11/distutils/versionpredicate.py", + "lib/python3.11/doctest.py", + "lib/python3.11/email/__init__.py", + "lib/python3.11/email/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/email/__pycache__/_encoded_words.cpython-311.pyc", + "lib/python3.11/email/__pycache__/_header_value_parser.cpython-311.pyc", + "lib/python3.11/email/__pycache__/_parseaddr.cpython-311.pyc", + "lib/python3.11/email/__pycache__/_policybase.cpython-311.pyc", + "lib/python3.11/email/__pycache__/base64mime.cpython-311.pyc", + "lib/python3.11/email/__pycache__/charset.cpython-311.pyc", + "lib/python3.11/email/__pycache__/contentmanager.cpython-311.pyc", + "lib/python3.11/email/__pycache__/encoders.cpython-311.pyc", + "lib/python3.11/email/__pycache__/errors.cpython-311.pyc", + "lib/python3.11/email/__pycache__/feedparser.cpython-311.pyc", + "lib/python3.11/email/__pycache__/generator.cpython-311.pyc", + "lib/python3.11/email/__pycache__/header.cpython-311.pyc", + "lib/python3.11/email/__pycache__/headerregistry.cpython-311.pyc", + "lib/python3.11/email/__pycache__/iterators.cpython-311.pyc", + "lib/python3.11/email/__pycache__/message.cpython-311.pyc", + "lib/python3.11/email/__pycache__/parser.cpython-311.pyc", + "lib/python3.11/email/__pycache__/policy.cpython-311.pyc", + "lib/python3.11/email/__pycache__/quoprimime.cpython-311.pyc", + "lib/python3.11/email/__pycache__/utils.cpython-311.pyc", + "lib/python3.11/email/_encoded_words.py", + "lib/python3.11/email/_header_value_parser.py", + "lib/python3.11/email/_parseaddr.py", + "lib/python3.11/email/_policybase.py", + "lib/python3.11/email/architecture.rst", + "lib/python3.11/email/base64mime.py", + "lib/python3.11/email/charset.py", + "lib/python3.11/email/contentmanager.py", + "lib/python3.11/email/encoders.py", + "lib/python3.11/email/errors.py", + "lib/python3.11/email/feedparser.py", + "lib/python3.11/email/generator.py", + "lib/python3.11/email/header.py", + "lib/python3.11/email/headerregistry.py", + "lib/python3.11/email/iterators.py", + "lib/python3.11/email/message.py", + "lib/python3.11/email/mime/__init__.py", + "lib/python3.11/email/mime/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/application.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/audio.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/base.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/image.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/message.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/multipart.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/nonmultipart.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/text.cpython-311.pyc", + "lib/python3.11/email/mime/application.py", + "lib/python3.11/email/mime/audio.py", + "lib/python3.11/email/mime/base.py", + "lib/python3.11/email/mime/image.py", + "lib/python3.11/email/mime/message.py", + "lib/python3.11/email/mime/multipart.py", + "lib/python3.11/email/mime/nonmultipart.py", + "lib/python3.11/email/mime/text.py", + "lib/python3.11/email/parser.py", + "lib/python3.11/email/policy.py", + "lib/python3.11/email/quoprimime.py", + "lib/python3.11/email/utils.py", + "lib/python3.11/encodings/__init__.py", + "lib/python3.11/encodings/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/aliases.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/ascii.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/base64_codec.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/big5.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/big5hkscs.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/bz2_codec.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/charmap.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp037.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1006.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1026.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1125.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1140.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1250.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1251.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1252.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1253.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1254.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1255.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1256.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1257.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1258.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp273.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp424.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp437.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp500.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp720.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp737.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp775.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp850.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp852.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp855.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp856.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp857.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp858.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp860.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp861.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp862.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp863.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp864.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp865.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp866.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp869.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp874.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp875.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp932.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp949.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp950.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/euc_jis_2004.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/euc_jisx0213.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/euc_jp.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/euc_kr.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/gb18030.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/gb2312.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/gbk.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/hex_codec.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/hp_roman8.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/hz.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/idna.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_jp.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_jp_1.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_jp_2.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_jp_2004.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_jp_3.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_jp_ext.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_kr.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_1.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_10.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_11.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_13.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_14.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_15.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_16.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_2.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_3.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_4.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_5.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_6.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_7.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_8.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_9.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/johab.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/koi8_r.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/koi8_t.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/koi8_u.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/kz1048.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/latin_1.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_arabic.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_croatian.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_cyrillic.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_farsi.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_greek.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_iceland.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_latin2.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_roman.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_romanian.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_turkish.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mbcs.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/oem.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/palmos.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/ptcp154.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/punycode.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/quopri_codec.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/raw_unicode_escape.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/rot_13.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/shift_jis.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/shift_jis_2004.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/shift_jisx0213.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/tis_620.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/undefined.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/unicode_escape.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_16.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_16_be.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_16_le.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_32.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_32_be.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_32_le.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_7.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_8.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_8_sig.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/uu_codec.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/zlib_codec.cpython-311.pyc", + "lib/python3.11/encodings/aliases.py", + "lib/python3.11/encodings/ascii.py", + "lib/python3.11/encodings/base64_codec.py", + "lib/python3.11/encodings/big5.py", + "lib/python3.11/encodings/big5hkscs.py", + "lib/python3.11/encodings/bz2_codec.py", + "lib/python3.11/encodings/charmap.py", + "lib/python3.11/encodings/cp037.py", + "lib/python3.11/encodings/cp1006.py", + "lib/python3.11/encodings/cp1026.py", + "lib/python3.11/encodings/cp1125.py", + "lib/python3.11/encodings/cp1140.py", + "lib/python3.11/encodings/cp1250.py", + "lib/python3.11/encodings/cp1251.py", + "lib/python3.11/encodings/cp1252.py", + "lib/python3.11/encodings/cp1253.py", + "lib/python3.11/encodings/cp1254.py", + "lib/python3.11/encodings/cp1255.py", + "lib/python3.11/encodings/cp1256.py", + "lib/python3.11/encodings/cp1257.py", + "lib/python3.11/encodings/cp1258.py", + "lib/python3.11/encodings/cp273.py", + "lib/python3.11/encodings/cp424.py", + "lib/python3.11/encodings/cp437.py", + "lib/python3.11/encodings/cp500.py", + "lib/python3.11/encodings/cp720.py", + "lib/python3.11/encodings/cp737.py", + "lib/python3.11/encodings/cp775.py", + "lib/python3.11/encodings/cp850.py", + "lib/python3.11/encodings/cp852.py", + "lib/python3.11/encodings/cp855.py", + "lib/python3.11/encodings/cp856.py", + "lib/python3.11/encodings/cp857.py", + "lib/python3.11/encodings/cp858.py", + "lib/python3.11/encodings/cp860.py", + "lib/python3.11/encodings/cp861.py", + "lib/python3.11/encodings/cp862.py", + "lib/python3.11/encodings/cp863.py", + "lib/python3.11/encodings/cp864.py", + "lib/python3.11/encodings/cp865.py", + "lib/python3.11/encodings/cp866.py", + "lib/python3.11/encodings/cp869.py", + "lib/python3.11/encodings/cp874.py", + "lib/python3.11/encodings/cp875.py", + "lib/python3.11/encodings/cp932.py", + "lib/python3.11/encodings/cp949.py", + "lib/python3.11/encodings/cp950.py", + "lib/python3.11/encodings/euc_jis_2004.py", + "lib/python3.11/encodings/euc_jisx0213.py", + "lib/python3.11/encodings/euc_jp.py", + "lib/python3.11/encodings/euc_kr.py", + "lib/python3.11/encodings/gb18030.py", + "lib/python3.11/encodings/gb2312.py", + "lib/python3.11/encodings/gbk.py", + "lib/python3.11/encodings/hex_codec.py", + "lib/python3.11/encodings/hp_roman8.py", + "lib/python3.11/encodings/hz.py", + "lib/python3.11/encodings/idna.py", + "lib/python3.11/encodings/iso2022_jp.py", + "lib/python3.11/encodings/iso2022_jp_1.py", + "lib/python3.11/encodings/iso2022_jp_2.py", + "lib/python3.11/encodings/iso2022_jp_2004.py", + "lib/python3.11/encodings/iso2022_jp_3.py", + "lib/python3.11/encodings/iso2022_jp_ext.py", + "lib/python3.11/encodings/iso2022_kr.py", + "lib/python3.11/encodings/iso8859_1.py", + "lib/python3.11/encodings/iso8859_10.py", + "lib/python3.11/encodings/iso8859_11.py", + "lib/python3.11/encodings/iso8859_13.py", + "lib/python3.11/encodings/iso8859_14.py", + "lib/python3.11/encodings/iso8859_15.py", + "lib/python3.11/encodings/iso8859_16.py", + "lib/python3.11/encodings/iso8859_2.py", + "lib/python3.11/encodings/iso8859_3.py", + "lib/python3.11/encodings/iso8859_4.py", + "lib/python3.11/encodings/iso8859_5.py", + "lib/python3.11/encodings/iso8859_6.py", + "lib/python3.11/encodings/iso8859_7.py", + "lib/python3.11/encodings/iso8859_8.py", + "lib/python3.11/encodings/iso8859_9.py", + "lib/python3.11/encodings/johab.py", + "lib/python3.11/encodings/koi8_r.py", + "lib/python3.11/encodings/koi8_t.py", + "lib/python3.11/encodings/koi8_u.py", + "lib/python3.11/encodings/kz1048.py", + "lib/python3.11/encodings/latin_1.py", + "lib/python3.11/encodings/mac_arabic.py", + "lib/python3.11/encodings/mac_croatian.py", + "lib/python3.11/encodings/mac_cyrillic.py", + "lib/python3.11/encodings/mac_farsi.py", + "lib/python3.11/encodings/mac_greek.py", + "lib/python3.11/encodings/mac_iceland.py", + "lib/python3.11/encodings/mac_latin2.py", + "lib/python3.11/encodings/mac_roman.py", + "lib/python3.11/encodings/mac_romanian.py", + "lib/python3.11/encodings/mac_turkish.py", + "lib/python3.11/encodings/mbcs.py", + "lib/python3.11/encodings/oem.py", + "lib/python3.11/encodings/palmos.py", + "lib/python3.11/encodings/ptcp154.py", + "lib/python3.11/encodings/punycode.py", + "lib/python3.11/encodings/quopri_codec.py", + "lib/python3.11/encodings/raw_unicode_escape.py", + "lib/python3.11/encodings/rot_13.py", + "lib/python3.11/encodings/shift_jis.py", + "lib/python3.11/encodings/shift_jis_2004.py", + "lib/python3.11/encodings/shift_jisx0213.py", + "lib/python3.11/encodings/tis_620.py", + "lib/python3.11/encodings/undefined.py", + "lib/python3.11/encodings/unicode_escape.py", + "lib/python3.11/encodings/utf_16.py", + "lib/python3.11/encodings/utf_16_be.py", + "lib/python3.11/encodings/utf_16_le.py", + "lib/python3.11/encodings/utf_32.py", + "lib/python3.11/encodings/utf_32_be.py", + "lib/python3.11/encodings/utf_32_le.py", + "lib/python3.11/encodings/utf_7.py", + "lib/python3.11/encodings/utf_8.py", + "lib/python3.11/encodings/utf_8_sig.py", + "lib/python3.11/encodings/uu_codec.py", + "lib/python3.11/encodings/zlib_codec.py", + "lib/python3.11/ensurepip/__init__.py", + "lib/python3.11/ensurepip/__main__.py", + "lib/python3.11/ensurepip/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/ensurepip/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/ensurepip/__pycache__/_uninstall.cpython-311.pyc", + "lib/python3.11/ensurepip/_bundled/pip-23.2.1-py3-none-any.whl", + "lib/python3.11/ensurepip/_bundled/setuptools-65.5.0-py3-none-any.whl", + "lib/python3.11/ensurepip/_uninstall.py", + "lib/python3.11/enum.py", + "lib/python3.11/filecmp.py", + "lib/python3.11/fileinput.py", + "lib/python3.11/fnmatch.py", + "lib/python3.11/fractions.py", + "lib/python3.11/ftplib.py", + "lib/python3.11/functools.py", + "lib/python3.11/genericpath.py", + "lib/python3.11/getopt.py", + "lib/python3.11/getpass.py", + "lib/python3.11/gettext.py", + "lib/python3.11/glob.py", + "lib/python3.11/graphlib.py", + "lib/python3.11/gzip.py", + "lib/python3.11/hashlib.py", + "lib/python3.11/heapq.py", + "lib/python3.11/hmac.py", + "lib/python3.11/html/__init__.py", + "lib/python3.11/html/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/html/__pycache__/entities.cpython-311.pyc", + "lib/python3.11/html/__pycache__/parser.cpython-311.pyc", + "lib/python3.11/html/entities.py", + "lib/python3.11/html/parser.py", + "lib/python3.11/http/__init__.py", + "lib/python3.11/http/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/http/__pycache__/client.cpython-311.pyc", + "lib/python3.11/http/__pycache__/cookiejar.cpython-311.pyc", + "lib/python3.11/http/__pycache__/cookies.cpython-311.pyc", + "lib/python3.11/http/__pycache__/server.cpython-311.pyc", + "lib/python3.11/http/client.py", + "lib/python3.11/http/cookiejar.py", + "lib/python3.11/http/cookies.py", + "lib/python3.11/http/server.py", + "lib/python3.11/idlelib/CREDITS.txt", + "lib/python3.11/idlelib/ChangeLog", + "lib/python3.11/idlelib/HISTORY.txt", + "lib/python3.11/idlelib/Icons/README.txt", + "lib/python3.11/idlelib/Icons/folder.gif", + "lib/python3.11/idlelib/Icons/idle.ico", + "lib/python3.11/idlelib/Icons/idle_16.gif", + "lib/python3.11/idlelib/Icons/idle_16.png", + "lib/python3.11/idlelib/Icons/idle_256.png", + "lib/python3.11/idlelib/Icons/idle_32.gif", + "lib/python3.11/idlelib/Icons/idle_32.png", + "lib/python3.11/idlelib/Icons/idle_48.gif", + "lib/python3.11/idlelib/Icons/idle_48.png", + "lib/python3.11/idlelib/Icons/minusnode.gif", + "lib/python3.11/idlelib/Icons/openfolder.gif", + "lib/python3.11/idlelib/Icons/plusnode.gif", + "lib/python3.11/idlelib/Icons/python.gif", + "lib/python3.11/idlelib/Icons/tk.gif", + "lib/python3.11/idlelib/NEWS.txt", + "lib/python3.11/idlelib/NEWS2x.txt", + "lib/python3.11/idlelib/README.txt", + "lib/python3.11/idlelib/TODO.txt", + "lib/python3.11/idlelib/__init__.py", + "lib/python3.11/idlelib/__main__.py", + "lib/python3.11/idlelib/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/autocomplete.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/autocomplete_w.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/autoexpand.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/browser.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/calltip.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/calltip_w.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/codecontext.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/colorizer.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/config.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/config_key.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/configdialog.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/debugger.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/debugger_r.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/debugobj.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/debugobj_r.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/delegator.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/dynoption.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/editor.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/filelist.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/format.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/grep.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/help.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/help_about.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/history.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/hyperparser.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/idle.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/iomenu.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/macosx.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/mainmenu.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/multicall.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/outwin.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/parenmatch.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/pathbrowser.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/percolator.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/pyparse.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/pyshell.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/query.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/redirector.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/replace.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/rpc.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/run.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/runscript.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/scrolledlist.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/search.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/searchbase.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/searchengine.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/sidebar.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/squeezer.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/stackviewer.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/statusbar.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/textview.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/tooltip.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/tree.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/undo.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/util.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/window.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/zoomheight.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/zzdummy.cpython-311.pyc", + "lib/python3.11/idlelib/autocomplete.py", + "lib/python3.11/idlelib/autocomplete_w.py", + "lib/python3.11/idlelib/autoexpand.py", + "lib/python3.11/idlelib/browser.py", + "lib/python3.11/idlelib/calltip.py", + "lib/python3.11/idlelib/calltip_w.py", + "lib/python3.11/idlelib/codecontext.py", + "lib/python3.11/idlelib/colorizer.py", + "lib/python3.11/idlelib/config-extensions.def", + "lib/python3.11/idlelib/config-highlight.def", + "lib/python3.11/idlelib/config-keys.def", + "lib/python3.11/idlelib/config-main.def", + "lib/python3.11/idlelib/config.py", + "lib/python3.11/idlelib/config_key.py", + "lib/python3.11/idlelib/configdialog.py", + "lib/python3.11/idlelib/debugger.py", + "lib/python3.11/idlelib/debugger_r.py", + "lib/python3.11/idlelib/debugobj.py", + "lib/python3.11/idlelib/debugobj_r.py", + "lib/python3.11/idlelib/delegator.py", + "lib/python3.11/idlelib/dynoption.py", + "lib/python3.11/idlelib/editor.py", + "lib/python3.11/idlelib/extend.txt", + "lib/python3.11/idlelib/filelist.py", + "lib/python3.11/idlelib/format.py", + "lib/python3.11/idlelib/grep.py", + "lib/python3.11/idlelib/help.html", + "lib/python3.11/idlelib/help.py", + "lib/python3.11/idlelib/help_about.py", + "lib/python3.11/idlelib/history.py", + "lib/python3.11/idlelib/hyperparser.py", + "lib/python3.11/idlelib/idle.bat", + "lib/python3.11/idlelib/idle.py", + "lib/python3.11/idlelib/idle.pyw", + "lib/python3.11/idlelib/idle_test/README.txt", + "lib/python3.11/idlelib/idle_test/__init__.py", + "lib/python3.11/idlelib/idle_test/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/htest.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/mock_idle.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/mock_tk.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/template.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_autocomplete.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_autocomplete_w.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_autoexpand.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_browser.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_calltip.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_calltip_w.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_codecontext.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_colorizer.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_config.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_config_key.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_configdialog.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_debugger.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_debugger_r.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_debugobj.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_debugobj_r.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_delegator.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_editmenu.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_editor.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_filelist.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_format.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_grep.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_help.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_help_about.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_history.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_hyperparser.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_iomenu.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_macosx.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_mainmenu.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_multicall.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_outwin.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_parenmatch.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_pathbrowser.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_percolator.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_pyparse.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_pyshell.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_query.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_redirector.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_replace.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_rpc.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_run.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_runscript.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_scrolledlist.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_search.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_searchbase.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_searchengine.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_sidebar.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_squeezer.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_stackviewer.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_statusbar.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_text.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_textview.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_tooltip.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_tree.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_undo.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_util.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_warning.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_window.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_zoomheight.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_zzdummy.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/tkinter_testing_utils.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/example_noext", + "lib/python3.11/idlelib/idle_test/example_stub.pyi", + "lib/python3.11/idlelib/idle_test/htest.py", + "lib/python3.11/idlelib/idle_test/mock_idle.py", + "lib/python3.11/idlelib/idle_test/mock_tk.py", + "lib/python3.11/idlelib/idle_test/template.py", + "lib/python3.11/idlelib/idle_test/test_autocomplete.py", + "lib/python3.11/idlelib/idle_test/test_autocomplete_w.py", + "lib/python3.11/idlelib/idle_test/test_autoexpand.py", + "lib/python3.11/idlelib/idle_test/test_browser.py", + "lib/python3.11/idlelib/idle_test/test_calltip.py", + "lib/python3.11/idlelib/idle_test/test_calltip_w.py", + "lib/python3.11/idlelib/idle_test/test_codecontext.py", + "lib/python3.11/idlelib/idle_test/test_colorizer.py", + "lib/python3.11/idlelib/idle_test/test_config.py", + "lib/python3.11/idlelib/idle_test/test_config_key.py", + "lib/python3.11/idlelib/idle_test/test_configdialog.py", + "lib/python3.11/idlelib/idle_test/test_debugger.py", + "lib/python3.11/idlelib/idle_test/test_debugger_r.py", + "lib/python3.11/idlelib/idle_test/test_debugobj.py", + "lib/python3.11/idlelib/idle_test/test_debugobj_r.py", + "lib/python3.11/idlelib/idle_test/test_delegator.py", + "lib/python3.11/idlelib/idle_test/test_editmenu.py", + "lib/python3.11/idlelib/idle_test/test_editor.py", + "lib/python3.11/idlelib/idle_test/test_filelist.py", + "lib/python3.11/idlelib/idle_test/test_format.py", + "lib/python3.11/idlelib/idle_test/test_grep.py", + "lib/python3.11/idlelib/idle_test/test_help.py", + "lib/python3.11/idlelib/idle_test/test_help_about.py", + "lib/python3.11/idlelib/idle_test/test_history.py", + "lib/python3.11/idlelib/idle_test/test_hyperparser.py", + "lib/python3.11/idlelib/idle_test/test_iomenu.py", + "lib/python3.11/idlelib/idle_test/test_macosx.py", + "lib/python3.11/idlelib/idle_test/test_mainmenu.py", + "lib/python3.11/idlelib/idle_test/test_multicall.py", + "lib/python3.11/idlelib/idle_test/test_outwin.py", + "lib/python3.11/idlelib/idle_test/test_parenmatch.py", + "lib/python3.11/idlelib/idle_test/test_pathbrowser.py", + "lib/python3.11/idlelib/idle_test/test_percolator.py", + "lib/python3.11/idlelib/idle_test/test_pyparse.py", + "lib/python3.11/idlelib/idle_test/test_pyshell.py", + "lib/python3.11/idlelib/idle_test/test_query.py", + "lib/python3.11/idlelib/idle_test/test_redirector.py", + "lib/python3.11/idlelib/idle_test/test_replace.py", + "lib/python3.11/idlelib/idle_test/test_rpc.py", + "lib/python3.11/idlelib/idle_test/test_run.py", + "lib/python3.11/idlelib/idle_test/test_runscript.py", + "lib/python3.11/idlelib/idle_test/test_scrolledlist.py", + "lib/python3.11/idlelib/idle_test/test_search.py", + "lib/python3.11/idlelib/idle_test/test_searchbase.py", + "lib/python3.11/idlelib/idle_test/test_searchengine.py", + "lib/python3.11/idlelib/idle_test/test_sidebar.py", + "lib/python3.11/idlelib/idle_test/test_squeezer.py", + "lib/python3.11/idlelib/idle_test/test_stackviewer.py", + "lib/python3.11/idlelib/idle_test/test_statusbar.py", + "lib/python3.11/idlelib/idle_test/test_text.py", + "lib/python3.11/idlelib/idle_test/test_textview.py", + "lib/python3.11/idlelib/idle_test/test_tooltip.py", + "lib/python3.11/idlelib/idle_test/test_tree.py", + "lib/python3.11/idlelib/idle_test/test_undo.py", + "lib/python3.11/idlelib/idle_test/test_util.py", + "lib/python3.11/idlelib/idle_test/test_warning.py", + "lib/python3.11/idlelib/idle_test/test_window.py", + "lib/python3.11/idlelib/idle_test/test_zoomheight.py", + "lib/python3.11/idlelib/idle_test/test_zzdummy.py", + "lib/python3.11/idlelib/idle_test/tkinter_testing_utils.py", + "lib/python3.11/idlelib/iomenu.py", + "lib/python3.11/idlelib/macosx.py", + "lib/python3.11/idlelib/mainmenu.py", + "lib/python3.11/idlelib/multicall.py", + "lib/python3.11/idlelib/outwin.py", + "lib/python3.11/idlelib/parenmatch.py", + "lib/python3.11/idlelib/pathbrowser.py", + "lib/python3.11/idlelib/percolator.py", + "lib/python3.11/idlelib/pyparse.py", + "lib/python3.11/idlelib/pyshell.py", + "lib/python3.11/idlelib/query.py", + "lib/python3.11/idlelib/redirector.py", + "lib/python3.11/idlelib/replace.py", + "lib/python3.11/idlelib/rpc.py", + "lib/python3.11/idlelib/run.py", + "lib/python3.11/idlelib/runscript.py", + "lib/python3.11/idlelib/scrolledlist.py", + "lib/python3.11/idlelib/search.py", + "lib/python3.11/idlelib/searchbase.py", + "lib/python3.11/idlelib/searchengine.py", + "lib/python3.11/idlelib/sidebar.py", + "lib/python3.11/idlelib/squeezer.py", + "lib/python3.11/idlelib/stackviewer.py", + "lib/python3.11/idlelib/statusbar.py", + "lib/python3.11/idlelib/textview.py", + "lib/python3.11/idlelib/tooltip.py", + "lib/python3.11/idlelib/tree.py", + "lib/python3.11/idlelib/undo.py", + "lib/python3.11/idlelib/util.py", + "lib/python3.11/idlelib/window.py", + "lib/python3.11/idlelib/zoomheight.py", + "lib/python3.11/idlelib/zzdummy.py", + "lib/python3.11/imaplib.py", + "lib/python3.11/imghdr.py", + "lib/python3.11/imp.py", + "lib/python3.11/importlib/__init__.py", + "lib/python3.11/importlib/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/_abc.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/_bootstrap.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/_bootstrap_external.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/abc.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/machinery.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/readers.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/simple.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/util.cpython-311.pyc", + "lib/python3.11/importlib/_abc.py", + "lib/python3.11/importlib/_bootstrap.py", + "lib/python3.11/importlib/_bootstrap_external.py", + "lib/python3.11/importlib/abc.py", + "lib/python3.11/importlib/machinery.py", + "lib/python3.11/importlib/metadata/__init__.py", + "lib/python3.11/importlib/metadata/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/importlib/metadata/__pycache__/_adapters.cpython-311.pyc", + "lib/python3.11/importlib/metadata/__pycache__/_collections.cpython-311.pyc", + "lib/python3.11/importlib/metadata/__pycache__/_functools.cpython-311.pyc", + "lib/python3.11/importlib/metadata/__pycache__/_itertools.cpython-311.pyc", + "lib/python3.11/importlib/metadata/__pycache__/_meta.cpython-311.pyc", + "lib/python3.11/importlib/metadata/__pycache__/_text.cpython-311.pyc", + "lib/python3.11/importlib/metadata/_adapters.py", + "lib/python3.11/importlib/metadata/_collections.py", + "lib/python3.11/importlib/metadata/_functools.py", + "lib/python3.11/importlib/metadata/_itertools.py", + "lib/python3.11/importlib/metadata/_meta.py", + "lib/python3.11/importlib/metadata/_text.py", + "lib/python3.11/importlib/readers.py", + "lib/python3.11/importlib/resources/__init__.py", + "lib/python3.11/importlib/resources/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/_adapters.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/_common.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/_itertools.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/_legacy.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/abc.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/readers.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/simple.cpython-311.pyc", + "lib/python3.11/importlib/resources/_adapters.py", + "lib/python3.11/importlib/resources/_common.py", + "lib/python3.11/importlib/resources/_itertools.py", + "lib/python3.11/importlib/resources/_legacy.py", + "lib/python3.11/importlib/resources/abc.py", + "lib/python3.11/importlib/resources/readers.py", + "lib/python3.11/importlib/resources/simple.py", + "lib/python3.11/importlib/simple.py", + "lib/python3.11/importlib/util.py", + "lib/python3.11/inspect.py", + "lib/python3.11/io.py", + "lib/python3.11/ipaddress.py", + "lib/python3.11/json/__init__.py", + "lib/python3.11/json/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/json/__pycache__/decoder.cpython-311.pyc", + "lib/python3.11/json/__pycache__/encoder.cpython-311.pyc", + "lib/python3.11/json/__pycache__/scanner.cpython-311.pyc", + "lib/python3.11/json/__pycache__/tool.cpython-311.pyc", + "lib/python3.11/json/decoder.py", + "lib/python3.11/json/encoder.py", + "lib/python3.11/json/scanner.py", + "lib/python3.11/json/tool.py", + "lib/python3.11/keyword.py", + "lib/python3.11/lib-dynload/_asyncio.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_bisect.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_blake2.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_bz2.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_codecs_cn.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_codecs_hk.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_codecs_iso2022.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_codecs_jp.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_codecs_kr.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_codecs_tw.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_contextvars.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_crypt.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_csv.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_ctypes.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_ctypes_test.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_curses.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_curses_panel.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_datetime.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_dbm.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_decimal.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_elementtree.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_hashlib.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_heapq.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_json.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_lsprof.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_lzma.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_md5.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_multibytecodec.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_multiprocessing.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_opcode.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_pickle.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_posixshmem.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_posixsubprocess.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_queue.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_random.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_scproxy.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_sha1.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_sha256.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_sha3.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_sha512.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_socket.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_sqlite3.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_ssl.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_statistics.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_struct.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_testbuffer.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_testcapi.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_testclinic.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_testimportmultiple.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_testinternalcapi.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_testmultiphase.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_tkinter.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_typing.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_uuid.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_xxsubinterpreters.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_xxtestfuzz.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_zoneinfo.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/array.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/audioop.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/binascii.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/cmath.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/fcntl.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/grp.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/math.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/mmap.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/nis.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/pyexpat.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/readline.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/resource.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/select.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/syslog.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/termios.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/unicodedata.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/xxlimited.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/xxlimited_35.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/zlib.cpython-311-darwin.so", + "lib/python3.11/lib2to3/Grammar.txt", + "lib/python3.11/lib2to3/Grammar3.11.5.final.0.pickle", + "lib/python3.11/lib2to3/PatternGrammar.txt", + "lib/python3.11/lib2to3/PatternGrammar3.11.5.final.0.pickle", + "lib/python3.11/lib2to3/__init__.py", + "lib/python3.11/lib2to3/__main__.py", + "lib/python3.11/lib2to3/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/btm_matcher.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/btm_utils.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/fixer_base.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/fixer_util.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/main.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/patcomp.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/pygram.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/pytree.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/refactor.cpython-311.pyc", + "lib/python3.11/lib2to3/btm_matcher.py", + "lib/python3.11/lib2to3/btm_utils.py", + "lib/python3.11/lib2to3/fixer_base.py", + "lib/python3.11/lib2to3/fixer_util.py", + "lib/python3.11/lib2to3/fixes/__init__.py", + "lib/python3.11/lib2to3/fixes/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_apply.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_asserts.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_basestring.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_buffer.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_dict.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_except.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_exec.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_execfile.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_exitfunc.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_filter.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_funcattrs.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_future.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_getcwdu.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_has_key.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_idioms.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_import.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_imports.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_imports2.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_input.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_intern.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_isinstance.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_itertools.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_itertools_imports.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_long.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_map.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_metaclass.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_methodattrs.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_ne.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_next.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_nonzero.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_numliterals.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_operator.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_paren.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_print.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_raise.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_raw_input.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_reduce.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_reload.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_renames.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_repr.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_set_literal.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_standarderror.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_sys_exc.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_throw.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_tuple_params.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_types.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_unicode.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_urllib.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_ws_comma.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_xrange.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_xreadlines.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_zip.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/fix_apply.py", + "lib/python3.11/lib2to3/fixes/fix_asserts.py", + "lib/python3.11/lib2to3/fixes/fix_basestring.py", + "lib/python3.11/lib2to3/fixes/fix_buffer.py", + "lib/python3.11/lib2to3/fixes/fix_dict.py", + "lib/python3.11/lib2to3/fixes/fix_except.py", + "lib/python3.11/lib2to3/fixes/fix_exec.py", + "lib/python3.11/lib2to3/fixes/fix_execfile.py", + "lib/python3.11/lib2to3/fixes/fix_exitfunc.py", + "lib/python3.11/lib2to3/fixes/fix_filter.py", + "lib/python3.11/lib2to3/fixes/fix_funcattrs.py", + "lib/python3.11/lib2to3/fixes/fix_future.py", + "lib/python3.11/lib2to3/fixes/fix_getcwdu.py", + "lib/python3.11/lib2to3/fixes/fix_has_key.py", + "lib/python3.11/lib2to3/fixes/fix_idioms.py", + "lib/python3.11/lib2to3/fixes/fix_import.py", + "lib/python3.11/lib2to3/fixes/fix_imports.py", + "lib/python3.11/lib2to3/fixes/fix_imports2.py", + "lib/python3.11/lib2to3/fixes/fix_input.py", + "lib/python3.11/lib2to3/fixes/fix_intern.py", + "lib/python3.11/lib2to3/fixes/fix_isinstance.py", + "lib/python3.11/lib2to3/fixes/fix_itertools.py", + "lib/python3.11/lib2to3/fixes/fix_itertools_imports.py", + "lib/python3.11/lib2to3/fixes/fix_long.py", + "lib/python3.11/lib2to3/fixes/fix_map.py", + "lib/python3.11/lib2to3/fixes/fix_metaclass.py", + "lib/python3.11/lib2to3/fixes/fix_methodattrs.py", + "lib/python3.11/lib2to3/fixes/fix_ne.py", + "lib/python3.11/lib2to3/fixes/fix_next.py", + "lib/python3.11/lib2to3/fixes/fix_nonzero.py", + "lib/python3.11/lib2to3/fixes/fix_numliterals.py", + "lib/python3.11/lib2to3/fixes/fix_operator.py", + "lib/python3.11/lib2to3/fixes/fix_paren.py", + "lib/python3.11/lib2to3/fixes/fix_print.py", + "lib/python3.11/lib2to3/fixes/fix_raise.py", + "lib/python3.11/lib2to3/fixes/fix_raw_input.py", + "lib/python3.11/lib2to3/fixes/fix_reduce.py", + "lib/python3.11/lib2to3/fixes/fix_reload.py", + "lib/python3.11/lib2to3/fixes/fix_renames.py", + "lib/python3.11/lib2to3/fixes/fix_repr.py", + "lib/python3.11/lib2to3/fixes/fix_set_literal.py", + "lib/python3.11/lib2to3/fixes/fix_standarderror.py", + "lib/python3.11/lib2to3/fixes/fix_sys_exc.py", + "lib/python3.11/lib2to3/fixes/fix_throw.py", + "lib/python3.11/lib2to3/fixes/fix_tuple_params.py", + "lib/python3.11/lib2to3/fixes/fix_types.py", + "lib/python3.11/lib2to3/fixes/fix_unicode.py", + "lib/python3.11/lib2to3/fixes/fix_urllib.py", + "lib/python3.11/lib2to3/fixes/fix_ws_comma.py", + "lib/python3.11/lib2to3/fixes/fix_xrange.py", + "lib/python3.11/lib2to3/fixes/fix_xreadlines.py", + "lib/python3.11/lib2to3/fixes/fix_zip.py", + "lib/python3.11/lib2to3/main.py", + "lib/python3.11/lib2to3/patcomp.py", + "lib/python3.11/lib2to3/pgen2/__init__.py", + "lib/python3.11/lib2to3/pgen2/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/conv.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/driver.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/grammar.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/literals.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/parse.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/pgen.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/token.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/tokenize.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/conv.py", + "lib/python3.11/lib2to3/pgen2/driver.py", + "lib/python3.11/lib2to3/pgen2/grammar.py", + "lib/python3.11/lib2to3/pgen2/literals.py", + "lib/python3.11/lib2to3/pgen2/parse.py", + "lib/python3.11/lib2to3/pgen2/pgen.py", + "lib/python3.11/lib2to3/pgen2/token.py", + "lib/python3.11/lib2to3/pgen2/tokenize.py", + "lib/python3.11/lib2to3/pygram.py", + "lib/python3.11/lib2to3/pytree.py", + "lib/python3.11/lib2to3/refactor.py", + "lib/python3.11/lib2to3/tests/__init__.py", + "lib/python3.11/lib2to3/tests/__main__.py", + "lib/python3.11/lib2to3/tests/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/pytree_idempotency.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/support.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_all_fixers.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_fixers.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_main.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_parser.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_pytree.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_refactor.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_util.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/README", + "lib/python3.11/lib2to3/tests/data/__pycache__/infinite_recursion.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/__pycache__/py3_test_grammar.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/bom.py", + "lib/python3.11/lib2to3/tests/data/crlf.py", + "lib/python3.11/lib2to3/tests/data/different_encoding.py", + "lib/python3.11/lib2to3/tests/data/false_encoding.py", + "lib/python3.11/lib2to3/tests/data/fixers/__pycache__/bad_order.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/__pycache__/no_fixer_cls.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/__pycache__/parrot_example.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/bad_order.py", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__init__.py", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__pycache__/fix_explicit.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__pycache__/fix_first.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__pycache__/fix_last.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__pycache__/fix_parrot.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__pycache__/fix_preorder.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/fix_explicit.py", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/fix_first.py", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/fix_last.py", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/fix_parrot.py", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/fix_preorder.py", + "lib/python3.11/lib2to3/tests/data/fixers/no_fixer_cls.py", + "lib/python3.11/lib2to3/tests/data/fixers/parrot_example.py", + "lib/python3.11/lib2to3/tests/data/infinite_recursion.py", + "lib/python3.11/lib2to3/tests/data/py2_test_grammar.py", + "lib/python3.11/lib2to3/tests/data/py3_test_grammar.py", + "lib/python3.11/lib2to3/tests/pytree_idempotency.py", + "lib/python3.11/lib2to3/tests/support.py", + "lib/python3.11/lib2to3/tests/test_all_fixers.py", + "lib/python3.11/lib2to3/tests/test_fixers.py", + "lib/python3.11/lib2to3/tests/test_main.py", + "lib/python3.11/lib2to3/tests/test_parser.py", + "lib/python3.11/lib2to3/tests/test_pytree.py", + "lib/python3.11/lib2to3/tests/test_refactor.py", + "lib/python3.11/lib2to3/tests/test_util.py", + "lib/python3.11/linecache.py", + "lib/python3.11/locale.py", + "lib/python3.11/logging/__init__.py", + "lib/python3.11/logging/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/logging/__pycache__/config.cpython-311.pyc", + "lib/python3.11/logging/__pycache__/handlers.cpython-311.pyc", + "lib/python3.11/logging/config.py", + "lib/python3.11/logging/handlers.py", + "lib/python3.11/lzma.py", + "lib/python3.11/mailbox.py", + "lib/python3.11/mailcap.py", + "lib/python3.11/mimetypes.py", + "lib/python3.11/modulefinder.py", + "lib/python3.11/multiprocessing/__init__.py", + "lib/python3.11/multiprocessing/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/connection.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/context.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/forkserver.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/heap.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/managers.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/pool.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/popen_fork.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/popen_forkserver.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/popen_spawn_posix.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/popen_spawn_win32.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/process.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/queues.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/reduction.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/resource_sharer.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/resource_tracker.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/shared_memory.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/sharedctypes.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/spawn.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/synchronize.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/util.cpython-311.pyc", + "lib/python3.11/multiprocessing/connection.py", + "lib/python3.11/multiprocessing/context.py", + "lib/python3.11/multiprocessing/dummy/__init__.py", + "lib/python3.11/multiprocessing/dummy/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/multiprocessing/dummy/__pycache__/connection.cpython-311.pyc", + "lib/python3.11/multiprocessing/dummy/connection.py", + "lib/python3.11/multiprocessing/forkserver.py", + "lib/python3.11/multiprocessing/heap.py", + "lib/python3.11/multiprocessing/managers.py", + "lib/python3.11/multiprocessing/pool.py", + "lib/python3.11/multiprocessing/popen_fork.py", + "lib/python3.11/multiprocessing/popen_forkserver.py", + "lib/python3.11/multiprocessing/popen_spawn_posix.py", + "lib/python3.11/multiprocessing/popen_spawn_win32.py", + "lib/python3.11/multiprocessing/process.py", + "lib/python3.11/multiprocessing/queues.py", + "lib/python3.11/multiprocessing/reduction.py", + "lib/python3.11/multiprocessing/resource_sharer.py", + "lib/python3.11/multiprocessing/resource_tracker.py", + "lib/python3.11/multiprocessing/shared_memory.py", + "lib/python3.11/multiprocessing/sharedctypes.py", + "lib/python3.11/multiprocessing/spawn.py", + "lib/python3.11/multiprocessing/synchronize.py", + "lib/python3.11/multiprocessing/util.py", + "lib/python3.11/netrc.py", + "lib/python3.11/nntplib.py", + "lib/python3.11/ntpath.py", + "lib/python3.11/nturl2path.py", + "lib/python3.11/numbers.py", + "lib/python3.11/opcode.py", + "lib/python3.11/operator.py", + "lib/python3.11/optparse.py", + "lib/python3.11/os.py", + "lib/python3.11/pathlib.py", + "lib/python3.11/pdb.py", + "lib/python3.11/pickle.py", + "lib/python3.11/pickletools.py", + "lib/python3.11/pipes.py", + "lib/python3.11/pkgutil.py", + "lib/python3.11/platform.py", + "lib/python3.11/plistlib.py", + "lib/python3.11/poplib.py", + "lib/python3.11/posixpath.py", + "lib/python3.11/pprint.py", + "lib/python3.11/profile.py", + "lib/python3.11/pstats.py", + "lib/python3.11/pty.py", + "lib/python3.11/py_compile.py", + "lib/python3.11/pyclbr.py", + "lib/python3.11/pydoc.py", + "lib/python3.11/pydoc_data/__init__.py", + "lib/python3.11/pydoc_data/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/pydoc_data/__pycache__/topics.cpython-311.pyc", + "lib/python3.11/pydoc_data/_pydoc.css", + "lib/python3.11/pydoc_data/topics.py", + "lib/python3.11/queue.py", + "lib/python3.11/quopri.py", + "lib/python3.11/random.py", + "lib/python3.11/re/__init__.py", + "lib/python3.11/re/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/re/__pycache__/_casefix.cpython-311.pyc", + "lib/python3.11/re/__pycache__/_compiler.cpython-311.pyc", + "lib/python3.11/re/__pycache__/_constants.cpython-311.pyc", + "lib/python3.11/re/__pycache__/_parser.cpython-311.pyc", + "lib/python3.11/re/_casefix.py", + "lib/python3.11/re/_compiler.py", + "lib/python3.11/re/_constants.py", + "lib/python3.11/re/_parser.py", + "lib/python3.11/reprlib.py", + "lib/python3.11/rlcompleter.py", + "lib/python3.11/runpy.py", + "lib/python3.11/sched.py", + "lib/python3.11/secrets.py", + "lib/python3.11/selectors.py", + "lib/python3.11/shelve.py", + "lib/python3.11/shlex.py", + "lib/python3.11/shutil.py", + "lib/python3.11/signal.py", + "lib/python3.11/site-packages/README.txt", + "lib/python3.11/site.py", + "lib/python3.11/smtpd.py", + "lib/python3.11/smtplib.py", + "lib/python3.11/sndhdr.py", + "lib/python3.11/socket.py", + "lib/python3.11/socketserver.py", + "lib/python3.11/sqlite3/__init__.py", + "lib/python3.11/sqlite3/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/sqlite3/__pycache__/dbapi2.cpython-311.pyc", + "lib/python3.11/sqlite3/__pycache__/dump.cpython-311.pyc", + "lib/python3.11/sqlite3/dbapi2.py", + "lib/python3.11/sqlite3/dump.py", + "lib/python3.11/sre_compile.py", + "lib/python3.11/sre_constants.py", + "lib/python3.11/sre_parse.py", + "lib/python3.11/ssl.py", + "lib/python3.11/stat.py", + "lib/python3.11/statistics.py", + "lib/python3.11/string.py", + "lib/python3.11/stringprep.py", + "lib/python3.11/struct.py", + "lib/python3.11/subprocess.py", + "lib/python3.11/sunau.py", + "lib/python3.11/symtable.py", + "lib/python3.11/sysconfig.py", + "lib/python3.11/tabnanny.py", + "lib/python3.11/tarfile.py", + "lib/python3.11/telnetlib.py", + "lib/python3.11/tempfile.py", + "lib/python3.11/test/__init__.py", + "lib/python3.11/test/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/test/__pycache__/test_script_helper.cpython-311.pyc", + "lib/python3.11/test/__pycache__/test_support.cpython-311.pyc", + "lib/python3.11/test/support/__init__.py", + "lib/python3.11/test/support/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/bytecode_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/hashlib_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/import_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/interpreters.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/logging_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/os_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/script_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/socket_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/testresult.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/threading_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/warnings_helper.cpython-311.pyc", + "lib/python3.11/test/support/bytecode_helper.py", + "lib/python3.11/test/support/hashlib_helper.py", + "lib/python3.11/test/support/import_helper.py", + "lib/python3.11/test/support/interpreters.py", + "lib/python3.11/test/support/logging_helper.py", + "lib/python3.11/test/support/os_helper.py", + "lib/python3.11/test/support/script_helper.py", + "lib/python3.11/test/support/socket_helper.py", + "lib/python3.11/test/support/testresult.py", + "lib/python3.11/test/support/threading_helper.py", + "lib/python3.11/test/support/warnings_helper.py", + "lib/python3.11/test/test_script_helper.py", + "lib/python3.11/test/test_support.py", + "lib/python3.11/textwrap.py", + "lib/python3.11/this.py", + "lib/python3.11/threading.py", + "lib/python3.11/timeit.py", + "lib/python3.11/tkinter/__init__.py", + "lib/python3.11/tkinter/__main__.py", + "lib/python3.11/tkinter/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/colorchooser.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/commondialog.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/constants.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/dialog.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/dnd.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/filedialog.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/font.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/messagebox.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/scrolledtext.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/simpledialog.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/tix.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/ttk.cpython-311.pyc", + "lib/python3.11/tkinter/colorchooser.py", + "lib/python3.11/tkinter/commondialog.py", + "lib/python3.11/tkinter/constants.py", + "lib/python3.11/tkinter/dialog.py", + "lib/python3.11/tkinter/dnd.py", + "lib/python3.11/tkinter/filedialog.py", + "lib/python3.11/tkinter/font.py", + "lib/python3.11/tkinter/messagebox.py", + "lib/python3.11/tkinter/scrolledtext.py", + "lib/python3.11/tkinter/simpledialog.py", + "lib/python3.11/tkinter/tix.py", + "lib/python3.11/tkinter/ttk.py", + "lib/python3.11/token.py", + "lib/python3.11/tokenize.py", + "lib/python3.11/tomllib/__init__.py", + "lib/python3.11/tomllib/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/tomllib/__pycache__/_parser.cpython-311.pyc", + "lib/python3.11/tomllib/__pycache__/_re.cpython-311.pyc", + "lib/python3.11/tomllib/__pycache__/_types.cpython-311.pyc", + "lib/python3.11/tomllib/_parser.py", + "lib/python3.11/tomllib/_re.py", + "lib/python3.11/tomllib/_types.py", + "lib/python3.11/trace.py", + "lib/python3.11/traceback.py", + "lib/python3.11/tracemalloc.py", + "lib/python3.11/tty.py", + "lib/python3.11/turtle.py", + "lib/python3.11/turtledemo/__init__.py", + "lib/python3.11/turtledemo/__main__.py", + "lib/python3.11/turtledemo/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/bytedesign.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/chaos.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/clock.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/colormixer.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/forest.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/fractalcurves.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/lindenmayer.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/minimal_hanoi.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/nim.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/paint.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/peace.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/penrose.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/planet_and_moon.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/rosette.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/round_dance.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/sorting_animate.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/tree.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/two_canvases.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/yinyang.cpython-311.pyc", + "lib/python3.11/turtledemo/bytedesign.py", + "lib/python3.11/turtledemo/chaos.py", + "lib/python3.11/turtledemo/clock.py", + "lib/python3.11/turtledemo/colormixer.py", + "lib/python3.11/turtledemo/forest.py", + "lib/python3.11/turtledemo/fractalcurves.py", + "lib/python3.11/turtledemo/lindenmayer.py", + "lib/python3.11/turtledemo/minimal_hanoi.py", + "lib/python3.11/turtledemo/nim.py", + "lib/python3.11/turtledemo/paint.py", + "lib/python3.11/turtledemo/peace.py", + "lib/python3.11/turtledemo/penrose.py", + "lib/python3.11/turtledemo/planet_and_moon.py", + "lib/python3.11/turtledemo/rosette.py", + "lib/python3.11/turtledemo/round_dance.py", + "lib/python3.11/turtledemo/sorting_animate.py", + "lib/python3.11/turtledemo/tree.py", + "lib/python3.11/turtledemo/turtle.cfg", + "lib/python3.11/turtledemo/two_canvases.py", + "lib/python3.11/turtledemo/yinyang.py", + "lib/python3.11/types.py", + "lib/python3.11/typing.py", + "lib/python3.11/unittest/__init__.py", + "lib/python3.11/unittest/__main__.py", + "lib/python3.11/unittest/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/_log.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/async_case.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/case.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/loader.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/main.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/mock.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/result.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/runner.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/signals.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/suite.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/util.cpython-311.pyc", + "lib/python3.11/unittest/_log.py", + "lib/python3.11/unittest/async_case.py", + "lib/python3.11/unittest/case.py", + "lib/python3.11/unittest/loader.py", + "lib/python3.11/unittest/main.py", + "lib/python3.11/unittest/mock.py", + "lib/python3.11/unittest/result.py", + "lib/python3.11/unittest/runner.py", + "lib/python3.11/unittest/signals.py", + "lib/python3.11/unittest/suite.py", + "lib/python3.11/unittest/util.py", + "lib/python3.11/urllib/__init__.py", + "lib/python3.11/urllib/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/urllib/__pycache__/error.cpython-311.pyc", + "lib/python3.11/urllib/__pycache__/parse.cpython-311.pyc", + "lib/python3.11/urllib/__pycache__/request.cpython-311.pyc", + "lib/python3.11/urllib/__pycache__/response.cpython-311.pyc", + "lib/python3.11/urllib/__pycache__/robotparser.cpython-311.pyc", + "lib/python3.11/urllib/error.py", + "lib/python3.11/urllib/parse.py", + "lib/python3.11/urllib/request.py", + "lib/python3.11/urllib/response.py", + "lib/python3.11/urllib/robotparser.py", + "lib/python3.11/uu.py", + "lib/python3.11/uuid.py", + "lib/python3.11/venv/__init__.py", + "lib/python3.11/venv/__main__.py", + "lib/python3.11/venv/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/venv/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/venv/scripts/common/Activate.ps1", + "lib/python3.11/venv/scripts/common/activate", + "lib/python3.11/venv/scripts/posix/activate.csh", + "lib/python3.11/venv/scripts/posix/activate.fish", + "lib/python3.11/warnings.py", + "lib/python3.11/wave.py", + "lib/python3.11/weakref.py", + "lib/python3.11/webbrowser.py", + "lib/python3.11/wsgiref/__init__.py", + "lib/python3.11/wsgiref/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/wsgiref/__pycache__/handlers.cpython-311.pyc", + "lib/python3.11/wsgiref/__pycache__/headers.cpython-311.pyc", + "lib/python3.11/wsgiref/__pycache__/simple_server.cpython-311.pyc", + "lib/python3.11/wsgiref/__pycache__/types.cpython-311.pyc", + "lib/python3.11/wsgiref/__pycache__/util.cpython-311.pyc", + "lib/python3.11/wsgiref/__pycache__/validate.cpython-311.pyc", + "lib/python3.11/wsgiref/handlers.py", + "lib/python3.11/wsgiref/headers.py", + "lib/python3.11/wsgiref/simple_server.py", + "lib/python3.11/wsgiref/types.py", + "lib/python3.11/wsgiref/util.py", + "lib/python3.11/wsgiref/validate.py", + "lib/python3.11/xdrlib.py", + "lib/python3.11/xml/__init__.py", + "lib/python3.11/xml/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/xml/dom/NodeFilter.py", + "lib/python3.11/xml/dom/__init__.py", + "lib/python3.11/xml/dom/__pycache__/NodeFilter.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/domreg.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/expatbuilder.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/minicompat.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/minidom.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/pulldom.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/xmlbuilder.cpython-311.pyc", + "lib/python3.11/xml/dom/domreg.py", + "lib/python3.11/xml/dom/expatbuilder.py", + "lib/python3.11/xml/dom/minicompat.py", + "lib/python3.11/xml/dom/minidom.py", + "lib/python3.11/xml/dom/pulldom.py", + "lib/python3.11/xml/dom/xmlbuilder.py", + "lib/python3.11/xml/etree/ElementInclude.py", + "lib/python3.11/xml/etree/ElementPath.py", + "lib/python3.11/xml/etree/ElementTree.py", + "lib/python3.11/xml/etree/__init__.py", + "lib/python3.11/xml/etree/__pycache__/ElementInclude.cpython-311.pyc", + "lib/python3.11/xml/etree/__pycache__/ElementPath.cpython-311.pyc", + "lib/python3.11/xml/etree/__pycache__/ElementTree.cpython-311.pyc", + "lib/python3.11/xml/etree/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/xml/etree/__pycache__/cElementTree.cpython-311.pyc", + "lib/python3.11/xml/etree/cElementTree.py", + "lib/python3.11/xml/parsers/__init__.py", + "lib/python3.11/xml/parsers/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/xml/parsers/__pycache__/expat.cpython-311.pyc", + "lib/python3.11/xml/parsers/expat.py", + "lib/python3.11/xml/sax/__init__.py", + "lib/python3.11/xml/sax/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/xml/sax/__pycache__/_exceptions.cpython-311.pyc", + "lib/python3.11/xml/sax/__pycache__/expatreader.cpython-311.pyc", + "lib/python3.11/xml/sax/__pycache__/handler.cpython-311.pyc", + "lib/python3.11/xml/sax/__pycache__/saxutils.cpython-311.pyc", + "lib/python3.11/xml/sax/__pycache__/xmlreader.cpython-311.pyc", + "lib/python3.11/xml/sax/_exceptions.py", + "lib/python3.11/xml/sax/expatreader.py", + "lib/python3.11/xml/sax/handler.py", + "lib/python3.11/xml/sax/saxutils.py", + "lib/python3.11/xml/sax/xmlreader.py", + "lib/python3.11/xmlrpc/__init__.py", + "lib/python3.11/xmlrpc/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/xmlrpc/__pycache__/client.cpython-311.pyc", + "lib/python3.11/xmlrpc/__pycache__/server.cpython-311.pyc", + "lib/python3.11/xmlrpc/client.py", + "lib/python3.11/xmlrpc/server.py", + "lib/python3.11/zipapp.py", + "lib/python3.11/zipfile.py", + "lib/python3.11/zipimport.py", + "lib/python3.11/zoneinfo/__init__.py", + "lib/python3.11/zoneinfo/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/zoneinfo/__pycache__/_common.cpython-311.pyc", + "lib/python3.11/zoneinfo/__pycache__/_tzpath.cpython-311.pyc", + "lib/python3.11/zoneinfo/__pycache__/_zoneinfo.cpython-311.pyc", + "lib/python3.11/zoneinfo/_common.py", + "lib/python3.11/zoneinfo/_tzpath.py", + "lib/python3.11/zoneinfo/_zoneinfo.py", + "share/man/man1/python3.1", + "share/man/man1/python3.11.1" + ], + "fn": "python-3.11.5-hb885b13_0.conda", + "license": "PSF-2.0", + "link": { + "source": "/Users/donjayamanne/miniconda3/pkgs/python-3.11.5-hb885b13_0", + "type": 1 + }, + "md5": "6f528bdf159139704ab578df329dee70", + "name": "python", + "package_tarball_full_path": "/Users/donjayamanne/miniconda3/pkgs/python-3.11.5-hb885b13_0.conda", + "paths_data": { + "paths": [ + { + "_path": "bin/2to3-3.11", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "0eb2a68730c6910e60374b6231605a8fe9e4b1ef889fe6bf6955f00607263096", + "sha256_in_prefix": "db867f95c7e5e3d486928ab316afc7ee322118eace698a5fd9c35dd62a7c77e0", + "size_in_bytes": 347 + }, + { + "_path": "bin/idle3.11", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "9e7c5708a61f7b75f0fa84106b3698fc81e0632eea511e9635cc012d95e8ccec", + "sha256_in_prefix": "2daba7590451fb1240f116ad6c50dfb3fe12ab0d0c90450453672dc5f7992345", + "size_in_bytes": 345 + }, + { + "_path": "bin/pydoc3.11", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "af4b3f428ef9f3708c93b8d6a9c9b211c3e531ad480bac0644e18be3d675de15", + "sha256_in_prefix": "29373357dfd57b431809af8ab17e111c47011f8ed325e4b74075551cfd728dc0", + "size_in_bytes": 330 + }, + { + "_path": "bin/python3.11", + "file_mode": "binary", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "ea6aacf75da0a6e048c0acc7d6f9e7e67f4af4af635965ab25aad7956ed07b40", + "sha256_in_prefix": "5309a862e537b7e20d382f479a016995d2b60e7382673e57a98a8644d62a011a", + "size_in_bytes": 6019216 + }, + { + "_path": "bin/python3.11-config", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "48e7f0c28858cd7dd610f089ebce9d090b15273d6f965b5a665418880b9ad017", + "sha256_in_prefix": "178fb9ee8ae853adc2840a51642fbdfe239d4c189e632be37552f83ee881a9d5", + "size_in_bytes": 2289 + }, + { + "_path": "lib/libpython3.11.dylib", + "file_mode": "binary", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "813d7657214af2a40d6f98ed5ad6cd25bdaf9e1b52299dcc22457b6431f46226", + "sha256_in_prefix": "690e286e2a59750500c44dd3eb0fcc3f607604fd1a24a20da1d5877d9ac09cd0", + "size_in_bytes": 6019152 + }, + { + "_path": "lib/pkgconfig/python-3.11-embed.pc", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "5ce92c1022c5d4af2383596197f518fc12687f8f32bf3f42b96c7ee22ac9dc8d", + "sha256_in_prefix": "2ccb5bf00ff727b7941ad8be49360b25f86860ae2f49931743f628dafc9caac1", + "size_in_bytes": 558 + }, + { + "_path": "lib/pkgconfig/python-3.11.pc", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "46ac102bbce0c0b1ff9cabf905c7d44f3e3ff2911127a08b620cd1231a8a70c4", + "sha256_in_prefix": "01f5747180571713792597c3a4b2278f2e2b0e46aaa926e95cc007a373b589aa", + "size_in_bytes": 531 + }, + { + "_path": "lib/python3.11/_sysconfigdata__darwin_darwin.py", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "49c03531794c8e17dbf3bc3b28b5c731c19647b8430e74a7f05967863a73cd89", + "sha256_in_prefix": "d1fed13472229dad30d35c5cd3e497e4cbb16e5aa2fb66abc1919d55f9fa415c", + "size_in_bytes": 85118 + }, + { + "_path": "lib/python3.11/_sysconfigdata__darwin_darwin.py.orig", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "4e1b965e2665c46a97f8df38da25dc3e2636e6e62a2b525d38bfd9304978f7c9", + "sha256_in_prefix": "dbc742fac6650f3e6159c08dc75d77bbe5704af80a671c3ca09aa3e061ddd992", + "size_in_bytes": 97066 + }, + { + "_path": "lib/python3.11/_sysconfigdata_arm64_apple_darwin20_0_0.py", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "810dab3b07b0633c5d5b180351daecb4d1ebf51ee2216019c5dc08afb5c54fd1", + "sha256_in_prefix": "44ad76b97a9bc58243271c310c497b085745bbe5451b4cbf60d6afb475b49465", + "size_in_bytes": 87139 + }, + { + "_path": "lib/python3.11/config-3.11-darwin/Makefile", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "2a78da281edcb631ddd844a43a4e30d166eb6b13651e43a1664f0e1aa9384d3b", + "sha256_in_prefix": "fee789b4cc5318f60fd6d1b4294c7789bf333b55d6c4f8afa1dd4476e7fa4d5b", + "size_in_bytes": 126865 + }, + { + "_path": "lib/python3.11/config-3.11-darwin/python-config.py", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "48e7f0c28858cd7dd610f089ebce9d090b15273d6f965b5a665418880b9ad017", + "sha256_in_prefix": "178fb9ee8ae853adc2840a51642fbdfe239d4c189e632be37552f83ee881a9d5", + "size_in_bytes": 2289 + } + ], + "paths_version": 1 + }, + "requested_spec": "defaults/osx-arm64::python==3.11.5=hb885b13_0[md5=6f528bdf159139704ab578df329dee70]", + "sha256": "e6ae393f2072f9857ffbd78c56ea28ca345beeba4f0ab2e0d5975e424f71b252", + "size": 16161485, + "subdir": "osx-arm64", + "timestamp": 1694439441000, + "track_features": "", + "url": "https://repo.anaconda.com/pkgs/main/osx-arm64/python-3.11.5-hb885b13_0.conda", + "version": "3.11.5" +} \ No newline at end of file diff --git a/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda3-3.10-22.11.1-1/conda-meta/python-slugify-5.0.2-pyhd3eb1b0_0.json b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda3-3.10-22.11.1-1/conda-meta/python-slugify-5.0.2-pyhd3eb1b0_0.json new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda3-3.10-22.11.1-1/envs/.conda_envs_dir_test b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda3-3.10-22.11.1-1/envs/.conda_envs_dir_test new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda3-3.10.1/conda-meta/conda-23.11.0-py311hca03da5_0.json b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda3-3.10.1/conda-meta/conda-23.11.0-py311hca03da5_0.json new file mode 100644 index 000000000000..3be01e80b809 --- /dev/null +++ b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda3-3.10.1/conda-meta/conda-23.11.0-py311hca03da5_0.json @@ -0,0 +1,632 @@ +{ + "build": "py311hca03da5_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/osx-arm64", + "constrains": [ + "conda-content-trust >=0.1.1", + "conda-build >=3.27", + "conda-env >=2.6" + ], + "depends": [ + "archspec", + "boltons >=23.0.0", + "charset-normalizer", + "conda-libmamba-solver >=23.11.0", + "conda-package-handling >=2.2.0", + "distro >=1.5.0", + "jsonpatch >=1.32", + "menuinst", + "packaging >=23.0", + "platformdirs >=3.10.0", + "pluggy >=1.0.0", + "pycosat >=0.6.3", + "python >=3.11,<3.12.0a0", + "requests >=2.28.0,<3", + "ruamel.yaml >=0.11.14,<0.19", + "setuptools >=60.0.0", + "tqdm >=4", + "truststore >=0.8.0" + ], + "extracted_package_dir": "/Users/donjayamanne/miniconda3/pkgs/conda-23.11.0-py311hca03da5_0", + "features": "", + "files": [ + "bin/activate", + "bin/conda", + "bin/conda-env", + "bin/deactivate", + "condabin/conda", + "etc/fish/conf.d/conda.fish", + "etc/profile.d/conda.csh", + "etc/profile.d/conda.sh", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/INSTALLER", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/METADATA", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/RECORD", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/REQUESTED", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/WHEEL", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/direct_url.json", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/entry_points.txt", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/licenses/AUTHORS.md", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/licenses/LICENSE", + "lib/python3.11/site-packages/conda/__init__.py", + "lib/python3.11/site-packages/conda/__main__.py", + "lib/python3.11/site-packages/conda/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/__version__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/activate.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/api.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/deprecations.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/exception_handler.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/exceptions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/exports.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/history.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/instructions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/misc.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/plan.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/resolve.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/utils.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__version__.py", + "lib/python3.11/site-packages/conda/_vendor/__init__.py", + "lib/python3.11/site-packages/conda/_vendor/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/__pycache__/appdirs.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/__pycache__/distro.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/appdirs.LICENSE.txt", + "lib/python3.11/site-packages/conda/_vendor/appdirs.py", + "lib/python3.11/site-packages/conda/_vendor/boltons/LICENSE", + "lib/python3.11/site-packages/conda/_vendor/boltons/__init__.py", + "lib/python3.11/site-packages/conda/_vendor/boltons/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/boltons/__pycache__/setutils.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/boltons/__pycache__/timeutils.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/boltons/setutils.py", + "lib/python3.11/site-packages/conda/_vendor/boltons/timeutils.py", + "lib/python3.11/site-packages/conda/_vendor/cpuinfo/__init__.py", + "lib/python3.11/site-packages/conda/_vendor/cpuinfo/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/cpuinfo/__pycache__/cpuinfo.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/cpuinfo/cpuinfo.py", + "lib/python3.11/site-packages/conda/_vendor/distro.LICENSE.txt", + "lib/python3.11/site-packages/conda/_vendor/distro.py", + "lib/python3.11/site-packages/conda/_vendor/frozendict/LICENSE.txt", + "lib/python3.11/site-packages/conda/_vendor/frozendict/__init__.py", + "lib/python3.11/site-packages/conda/_vendor/frozendict/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/py_cpuinfo.LICENSE", + "lib/python3.11/site-packages/conda/_vendor/vendor.txt", + "lib/python3.11/site-packages/conda/activate.py", + "lib/python3.11/site-packages/conda/api.py", + "lib/python3.11/site-packages/conda/auxlib/LICENSE", + "lib/python3.11/site-packages/conda/auxlib/__init__.py", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/collection.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/compat.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/decorators.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/entity.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/exceptions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/ish.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/logz.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/packaging.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/type_coercion.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/collection.py", + "lib/python3.11/site-packages/conda/auxlib/compat.py", + "lib/python3.11/site-packages/conda/auxlib/decorators.py", + "lib/python3.11/site-packages/conda/auxlib/entity.py", + "lib/python3.11/site-packages/conda/auxlib/exceptions.py", + "lib/python3.11/site-packages/conda/auxlib/ish.py", + "lib/python3.11/site-packages/conda/auxlib/logz.py", + "lib/python3.11/site-packages/conda/auxlib/packaging.py", + "lib/python3.11/site-packages/conda/auxlib/type_coercion.py", + "lib/python3.11/site-packages/conda/base/__init__.py", + "lib/python3.11/site-packages/conda/base/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/base/__pycache__/constants.cpython-311.pyc", + "lib/python3.11/site-packages/conda/base/__pycache__/context.cpython-311.pyc", + "lib/python3.11/site-packages/conda/base/__pycache__/exceptions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/base/constants.py", + "lib/python3.11/site-packages/conda/base/context.py", + "lib/python3.11/site-packages/conda/base/exceptions.py", + "lib/python3.11/site-packages/conda/cli/__init__.py", + "lib/python3.11/site-packages/conda/cli/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/actions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/common.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/conda_argparse.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/find_commands.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/helpers.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/install.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_clean.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_compare.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_config.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_create.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_info.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_init.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_install.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_list.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_mock_activate.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_mock_deactivate.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_notices.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_package.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_pip.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_remove.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_rename.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_run.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_search.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_update.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/python_api.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/actions.py", + "lib/python3.11/site-packages/conda/cli/common.py", + "lib/python3.11/site-packages/conda/cli/conda_argparse.py", + "lib/python3.11/site-packages/conda/cli/find_commands.py", + "lib/python3.11/site-packages/conda/cli/helpers.py", + "lib/python3.11/site-packages/conda/cli/install.py", + "lib/python3.11/site-packages/conda/cli/main.py", + "lib/python3.11/site-packages/conda/cli/main_clean.py", + "lib/python3.11/site-packages/conda/cli/main_compare.py", + "lib/python3.11/site-packages/conda/cli/main_config.py", + "lib/python3.11/site-packages/conda/cli/main_create.py", + "lib/python3.11/site-packages/conda/cli/main_info.py", + "lib/python3.11/site-packages/conda/cli/main_init.py", + "lib/python3.11/site-packages/conda/cli/main_install.py", + "lib/python3.11/site-packages/conda/cli/main_list.py", + "lib/python3.11/site-packages/conda/cli/main_mock_activate.py", + "lib/python3.11/site-packages/conda/cli/main_mock_deactivate.py", + "lib/python3.11/site-packages/conda/cli/main_notices.py", + "lib/python3.11/site-packages/conda/cli/main_package.py", + "lib/python3.11/site-packages/conda/cli/main_pip.py", + "lib/python3.11/site-packages/conda/cli/main_remove.py", + "lib/python3.11/site-packages/conda/cli/main_rename.py", + "lib/python3.11/site-packages/conda/cli/main_run.py", + "lib/python3.11/site-packages/conda/cli/main_search.py", + "lib/python3.11/site-packages/conda/cli/main_update.py", + "lib/python3.11/site-packages/conda/cli/python_api.py", + "lib/python3.11/site-packages/conda/common/__init__.py", + "lib/python3.11/site-packages/conda/common/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/_logic.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/compat.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/configuration.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/constants.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/decorators.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/disk.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/io.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/iterators.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/logic.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/path.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/serialize.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/signals.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/toposort.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/url.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/_logic.py", + "lib/python3.11/site-packages/conda/common/_os/__init__.py", + "lib/python3.11/site-packages/conda/common/_os/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/_os/__pycache__/linux.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/_os/__pycache__/unix.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/_os/__pycache__/windows.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/_os/linux.py", + "lib/python3.11/site-packages/conda/common/_os/unix.py", + "lib/python3.11/site-packages/conda/common/_os/windows.py", + "lib/python3.11/site-packages/conda/common/compat.py", + "lib/python3.11/site-packages/conda/common/configuration.py", + "lib/python3.11/site-packages/conda/common/constants.py", + "lib/python3.11/site-packages/conda/common/decorators.py", + "lib/python3.11/site-packages/conda/common/disk.py", + "lib/python3.11/site-packages/conda/common/io.py", + "lib/python3.11/site-packages/conda/common/iterators.py", + "lib/python3.11/site-packages/conda/common/logic.py", + "lib/python3.11/site-packages/conda/common/path.py", + "lib/python3.11/site-packages/conda/common/pkg_formats/__init__.py", + "lib/python3.11/site-packages/conda/common/pkg_formats/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/pkg_formats/__pycache__/python.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/pkg_formats/python.py", + "lib/python3.11/site-packages/conda/common/serialize.py", + "lib/python3.11/site-packages/conda/common/signals.py", + "lib/python3.11/site-packages/conda/common/toposort.py", + "lib/python3.11/site-packages/conda/common/url.py", + "lib/python3.11/site-packages/conda/core/__init__.py", + "lib/python3.11/site-packages/conda/core/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/envs_manager.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/index.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/initialize.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/link.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/package_cache.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/package_cache_data.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/path_actions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/portability.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/prefix_data.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/solve.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/subdir_data.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/envs_manager.py", + "lib/python3.11/site-packages/conda/core/index.py", + "lib/python3.11/site-packages/conda/core/initialize.py", + "lib/python3.11/site-packages/conda/core/link.py", + "lib/python3.11/site-packages/conda/core/package_cache.py", + "lib/python3.11/site-packages/conda/core/package_cache_data.py", + "lib/python3.11/site-packages/conda/core/path_actions.py", + "lib/python3.11/site-packages/conda/core/portability.py", + "lib/python3.11/site-packages/conda/core/prefix_data.py", + "lib/python3.11/site-packages/conda/core/solve.py", + "lib/python3.11/site-packages/conda/core/subdir_data.py", + "lib/python3.11/site-packages/conda/deprecations.py", + "lib/python3.11/site-packages/conda/exception_handler.py", + "lib/python3.11/site-packages/conda/exceptions.py", + "lib/python3.11/site-packages/conda/exports.py", + "lib/python3.11/site-packages/conda/gateways/__init__.py", + "lib/python3.11/site-packages/conda/gateways/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/__pycache__/anaconda_client.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/__pycache__/logging.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/__pycache__/subprocess.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/anaconda_client.py", + "lib/python3.11/site-packages/conda/gateways/connection/__init__.py", + "lib/python3.11/site-packages/conda/gateways/connection/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/__pycache__/download.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/__pycache__/session.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/__init__.py", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/__pycache__/ftp.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/__pycache__/http.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/__pycache__/localfs.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/__pycache__/s3.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/ftp.py", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/http.py", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/localfs.py", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/s3.py", + "lib/python3.11/site-packages/conda/gateways/connection/download.py", + "lib/python3.11/site-packages/conda/gateways/connection/session.py", + "lib/python3.11/site-packages/conda/gateways/disk/__init__.py", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/create.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/delete.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/link.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/lock.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/permissions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/read.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/test.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/update.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/create.py", + "lib/python3.11/site-packages/conda/gateways/disk/delete.py", + "lib/python3.11/site-packages/conda/gateways/disk/link.py", + "lib/python3.11/site-packages/conda/gateways/disk/lock.py", + "lib/python3.11/site-packages/conda/gateways/disk/permissions.py", + "lib/python3.11/site-packages/conda/gateways/disk/read.py", + "lib/python3.11/site-packages/conda/gateways/disk/test.py", + "lib/python3.11/site-packages/conda/gateways/disk/update.py", + "lib/python3.11/site-packages/conda/gateways/logging.py", + "lib/python3.11/site-packages/conda/gateways/repodata/__init__.py", + "lib/python3.11/site-packages/conda/gateways/repodata/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/repodata/__pycache__/lock.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/__init__.py", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/__pycache__/core.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/__pycache__/fetch.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/__pycache__/interface.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/core.py", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/fetch.py", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/interface.py", + "lib/python3.11/site-packages/conda/gateways/repodata/lock.py", + "lib/python3.11/site-packages/conda/gateways/subprocess.py", + "lib/python3.11/site-packages/conda/history.py", + "lib/python3.11/site-packages/conda/instructions.py", + "lib/python3.11/site-packages/conda/misc.py", + "lib/python3.11/site-packages/conda/models/__init__.py", + "lib/python3.11/site-packages/conda/models/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/channel.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/dist.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/enums.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/leased_path_entry.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/match_spec.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/package_info.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/prefix_graph.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/records.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/version.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/channel.py", + "lib/python3.11/site-packages/conda/models/dist.py", + "lib/python3.11/site-packages/conda/models/enums.py", + "lib/python3.11/site-packages/conda/models/leased_path_entry.py", + "lib/python3.11/site-packages/conda/models/match_spec.py", + "lib/python3.11/site-packages/conda/models/package_info.py", + "lib/python3.11/site-packages/conda/models/prefix_graph.py", + "lib/python3.11/site-packages/conda/models/records.py", + "lib/python3.11/site-packages/conda/models/version.py", + "lib/python3.11/site-packages/conda/notices/__init__.py", + "lib/python3.11/site-packages/conda/notices/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/notices/__pycache__/cache.cpython-311.pyc", + "lib/python3.11/site-packages/conda/notices/__pycache__/core.cpython-311.pyc", + "lib/python3.11/site-packages/conda/notices/__pycache__/fetch.cpython-311.pyc", + "lib/python3.11/site-packages/conda/notices/__pycache__/types.cpython-311.pyc", + "lib/python3.11/site-packages/conda/notices/__pycache__/views.cpython-311.pyc", + "lib/python3.11/site-packages/conda/notices/cache.py", + "lib/python3.11/site-packages/conda/notices/core.py", + "lib/python3.11/site-packages/conda/notices/fetch.py", + "lib/python3.11/site-packages/conda/notices/types.py", + "lib/python3.11/site-packages/conda/notices/views.py", + "lib/python3.11/site-packages/conda/plan.py", + "lib/python3.11/site-packages/conda/plugins/__init__.py", + "lib/python3.11/site-packages/conda/plugins/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/__pycache__/hookspec.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/__pycache__/manager.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/__pycache__/solvers.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/__pycache__/types.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/hookspec.py", + "lib/python3.11/site-packages/conda/plugins/manager.py", + "lib/python3.11/site-packages/conda/plugins/solvers.py", + "lib/python3.11/site-packages/conda/plugins/subcommands/__init__.py", + "lib/python3.11/site-packages/conda/plugins/subcommands/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/subcommands/doctor/__init__.py", + "lib/python3.11/site-packages/conda/plugins/subcommands/doctor/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/subcommands/doctor/__pycache__/health_checks.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/subcommands/doctor/health_checks.py", + "lib/python3.11/site-packages/conda/plugins/types.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__init__.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/archspec.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/conda.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/cuda.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/freebsd.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/linux.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/osx.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/windows.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/archspec.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/conda.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/cuda.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/freebsd.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/linux.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/osx.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/windows.py", + "lib/python3.11/site-packages/conda/py.typed", + "lib/python3.11/site-packages/conda/resolve.py", + "lib/python3.11/site-packages/conda/shell/Library/bin/conda.bat", + "lib/python3.11/site-packages/conda/shell/Scripts/activate.bat", + "lib/python3.11/site-packages/conda/shell/bin/activate", + "lib/python3.11/site-packages/conda/shell/bin/conda", + "lib/python3.11/site-packages/conda/shell/bin/deactivate", + "lib/python3.11/site-packages/conda/shell/cli-32.exe", + "lib/python3.11/site-packages/conda/shell/cli-64.exe", + "lib/python3.11/site-packages/conda/shell/conda.xsh", + "lib/python3.11/site-packages/conda/shell/conda_icon.ico", + "lib/python3.11/site-packages/conda/shell/condabin/Conda.psm1", + "lib/python3.11/site-packages/conda/shell/condabin/_conda_activate.bat", + "lib/python3.11/site-packages/conda/shell/condabin/activate.bat", + "lib/python3.11/site-packages/conda/shell/condabin/conda-hook.ps1", + "lib/python3.11/site-packages/conda/shell/condabin/conda.bat", + "lib/python3.11/site-packages/conda/shell/condabin/conda_auto_activate.bat", + "lib/python3.11/site-packages/conda/shell/condabin/conda_hook.bat", + "lib/python3.11/site-packages/conda/shell/condabin/deactivate.bat", + "lib/python3.11/site-packages/conda/shell/condabin/rename_tmp.bat", + "lib/python3.11/site-packages/conda/shell/etc/fish/conf.d/conda.fish", + "lib/python3.11/site-packages/conda/shell/etc/profile.d/conda.csh", + "lib/python3.11/site-packages/conda/shell/etc/profile.d/conda.sh", + "lib/python3.11/site-packages/conda/testing/__init__.py", + "lib/python3.11/site-packages/conda/testing/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/__pycache__/cases.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/__pycache__/fixtures.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/__pycache__/helpers.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/__pycache__/integration.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/__pycache__/solver_helpers.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/cases.py", + "lib/python3.11/site-packages/conda/testing/fixtures.py", + "lib/python3.11/site-packages/conda/testing/gateways/__init__.py", + "lib/python3.11/site-packages/conda/testing/gateways/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/gateways/__pycache__/fixtures.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/gateways/fixtures.py", + "lib/python3.11/site-packages/conda/testing/helpers.py", + "lib/python3.11/site-packages/conda/testing/integration.py", + "lib/python3.11/site-packages/conda/testing/notices/__init__.py", + "lib/python3.11/site-packages/conda/testing/notices/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/notices/__pycache__/fixtures.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/notices/__pycache__/helpers.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/notices/fixtures.py", + "lib/python3.11/site-packages/conda/testing/notices/helpers.py", + "lib/python3.11/site-packages/conda/testing/solver_helpers.py", + "lib/python3.11/site-packages/conda/trust/__init__.py", + "lib/python3.11/site-packages/conda/trust/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/trust/__pycache__/constants.cpython-311.pyc", + "lib/python3.11/site-packages/conda/trust/__pycache__/signature_verification.cpython-311.pyc", + "lib/python3.11/site-packages/conda/trust/constants.py", + "lib/python3.11/site-packages/conda/trust/signature_verification.py", + "lib/python3.11/site-packages/conda/utils.py", + "lib/python3.11/site-packages/conda_env/README.md", + "lib/python3.11/site-packages/conda_env/__init__.py", + "lib/python3.11/site-packages/conda_env/__main__.py", + "lib/python3.11/site-packages/conda_env/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/__pycache__/env.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/__pycache__/pip_util.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__init__.py", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/common.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_config.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_create.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_export.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_list.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_remove.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_update.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_vars.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/common.py", + "lib/python3.11/site-packages/conda_env/cli/main.py", + "lib/python3.11/site-packages/conda_env/cli/main_config.py", + "lib/python3.11/site-packages/conda_env/cli/main_create.py", + "lib/python3.11/site-packages/conda_env/cli/main_export.py", + "lib/python3.11/site-packages/conda_env/cli/main_list.py", + "lib/python3.11/site-packages/conda_env/cli/main_remove.py", + "lib/python3.11/site-packages/conda_env/cli/main_update.py", + "lib/python3.11/site-packages/conda_env/cli/main_vars.py", + "lib/python3.11/site-packages/conda_env/env.py", + "lib/python3.11/site-packages/conda_env/installers/__init__.py", + "lib/python3.11/site-packages/conda_env/installers/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/installers/__pycache__/base.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/installers/__pycache__/conda.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/installers/__pycache__/pip.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/installers/base.py", + "lib/python3.11/site-packages/conda_env/installers/conda.py", + "lib/python3.11/site-packages/conda_env/installers/pip.py", + "lib/python3.11/site-packages/conda_env/pip_util.py", + "lib/python3.11/site-packages/conda_env/specs/__init__.py", + "lib/python3.11/site-packages/conda_env/specs/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/specs/__pycache__/binstar.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/specs/__pycache__/requirements.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/specs/__pycache__/yaml_file.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/specs/binstar.py", + "lib/python3.11/site-packages/conda_env/specs/requirements.py", + "lib/python3.11/site-packages/conda_env/specs/yaml_file.py", + "lib/python3.11/site-packages/tests/conda_env/__init__.py", + "lib/python3.11/site-packages/tests/conda_env/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/__pycache__/test_cli.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/__pycache__/test_create.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/__pycache__/test_env.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/__pycache__/test_pip_util.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/__pycache__/utils.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/specs/__init__.py", + "lib/python3.11/site-packages/tests/conda_env/specs/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/specs/__pycache__/test_binstar.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/specs/__pycache__/test_requirements.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/specs/__pycache__/test_yaml_file.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/specs/test_binstar.py", + "lib/python3.11/site-packages/tests/conda_env/specs/test_requirements.py", + "lib/python3.11/site-packages/tests/conda_env/specs/test_yaml_file.py", + "lib/python3.11/site-packages/tests/conda_env/support/add-pip.yml", + "lib/python3.11/site-packages/tests/conda_env/support/advanced-pip/.gitignore", + "lib/python3.11/site-packages/tests/conda_env/support/advanced-pip/another-project-requirements.txt", + "lib/python3.11/site-packages/tests/conda_env/support/advanced-pip/environment.yml", + "lib/python3.11/site-packages/tests/conda_env/support/advanced-pip/module_to_install_in_editable_mode/__pycache__/setup.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/support/advanced-pip/module_to_install_in_editable_mode/setup.py", + "lib/python3.11/site-packages/tests/conda_env/support/channels_with_envvars.yml", + "lib/python3.11/site-packages/tests/conda_env/support/empty_env.yml", + "lib/python3.11/site-packages/tests/conda_env/support/env_with_dependencies.yml", + "lib/python3.11/site-packages/tests/conda_env/support/example-yaml/environment.yaml", + "lib/python3.11/site-packages/tests/conda_env/support/example/environment.yml", + "lib/python3.11/site-packages/tests/conda_env/support/example/environment_host_port.yml", + "lib/python3.11/site-packages/tests/conda_env/support/example/environment_pinned.yml", + "lib/python3.11/site-packages/tests/conda_env/support/example/environment_pinned_updated.yml", + "lib/python3.11/site-packages/tests/conda_env/support/foo/bar/baz/readme", + "lib/python3.11/site-packages/tests/conda_env/support/foo/bar/readme", + "lib/python3.11/site-packages/tests/conda_env/support/foo/environment.yml", + "lib/python3.11/site-packages/tests/conda_env/support/invalid_keys.yml", + "lib/python3.11/site-packages/tests/conda_env/support/notebook.ipynb", + "lib/python3.11/site-packages/tests/conda_env/support/notebook_with_env.ipynb", + "lib/python3.11/site-packages/tests/conda_env/support/pip_argh.yml", + "lib/python3.11/site-packages/tests/conda_env/support/requirements.txt", + "lib/python3.11/site-packages/tests/conda_env/support/saved-env/environment.yml", + "lib/python3.11/site-packages/tests/conda_env/support/simple.yml", + "lib/python3.11/site-packages/tests/conda_env/support/valid_keys.yml", + "lib/python3.11/site-packages/tests/conda_env/support/with-pip.yml", + "lib/python3.11/site-packages/tests/conda_env/test_cli.py", + "lib/python3.11/site-packages/tests/conda_env/test_create.py", + "lib/python3.11/site-packages/tests/conda_env/test_env.py", + "lib/python3.11/site-packages/tests/conda_env/test_pip_util.py", + "lib/python3.11/site-packages/tests/conda_env/utils.py", + "lib/python3.11/site-packages/tests/test-recipes/activate_deactivate_package/src/etc/conda/activate.d/activate.bat", + "lib/python3.11/site-packages/tests/test-recipes/activate_deactivate_package/src/etc/conda/activate.d/activate.sh", + "lib/python3.11/site-packages/tests/test-recipes/activate_deactivate_package/src/etc/conda/deactivate.d/deactivate.bat", + "lib/python3.11/site-packages/tests/test-recipes/activate_deactivate_package/src/etc/conda/deactivate.d/deactivate.sh", + "lib/python3.11/site-packages/xontrib/conda.xsh", + "shell/condabin/Conda.psm1", + "shell/condabin/conda-hook.ps1" + ], + "fn": "conda-23.11.0-py311hca03da5_0.conda", + "license": "BSD-3-Clause", + "link": { + "source": "/Users/donjayamanne/miniconda3/pkgs/conda-23.11.0-py311hca03da5_0", + "type": 1 + }, + "md5": "d40f56a649df2d05c5468713732e005e", + "name": "conda", + "package_tarball_full_path": "/Users/donjayamanne/miniconda3/pkgs/conda-23.11.0-py311hca03da5_0.conda", + "paths_data": { + "paths": [ + { + "_path": "bin/activate", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "92dd3f5997c70939665a9000ba114ba13f28c5ce1341fa75060f48dcb808a127", + "sha256_in_prefix": "4270a26a4429c0dd5a4c35900f8b2211b35c7447367b6f2b8470bdedc1f240ca", + "size_in_bytes": 429 + }, + { + "_path": "bin/conda", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "c6380d731f573d898f146d5580e0447dd44d068d619bda7aff326095f8bc4f88", + "sha256_in_prefix": "b5dd14921f011aa934757f31b62e0fa2be17a1a9f99ccb2d26a1f12a864d64e8", + "size_in_bytes": 756 + }, + { + "_path": "bin/conda-env", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "c7e6fa37766fe556ef4f95c0860a0eb7f7817c6f057ba9369e248bcdd7f37c9d", + "sha256_in_prefix": "88be67a0d6c47edbd65fa3d860a3514daed6b6bac830ec93800cf43fd778379c", + "size_in_bytes": 393 + }, + { + "_path": "bin/deactivate", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "a69da038fee96660c3f47c2c393c05b54986ba0c929aada61cd410df6e09746e", + "sha256_in_prefix": "2af9834dc0f7c2fb9db2f9e67829700c6828774d9ad7996602324c5a5387a89c", + "size_in_bytes": 517 + }, + { + "_path": "condabin/conda", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "c6380d731f573d898f146d5580e0447dd44d068d619bda7aff326095f8bc4f88", + "sha256_in_prefix": "b5dd14921f011aa934757f31b62e0fa2be17a1a9f99ccb2d26a1f12a864d64e8", + "size_in_bytes": 756 + }, + { + "_path": "etc/fish/conf.d/conda.fish", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "85caec3d76f3239e105f88cbafc6acbe04cd97fd4c1db4da4e0dcf4d357a631e", + "sha256_in_prefix": "a1ab61539200ab52ec85d9bf7de9b1cfe4a7fbdd4da2f6a7882d417ea8c7d3e1", + "size_in_bytes": 4880 + }, + { + "_path": "etc/profile.d/conda.csh", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "966581001ffd439152bf4432c7c436e25014aa2386668a00145b4087aa354604", + "sha256_in_prefix": "85a53ef7d70dcb1c16695b970bbc3880b74eaa23fff43dde57796e34fcb2ead7", + "size_in_bytes": 3163 + }, + { + "_path": "etc/profile.d/conda.sh", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "a147ccd49f1579e69c49cb12114421d95b84a1e02ef1df7c4f8c51d44cd026d1", + "sha256_in_prefix": "920d3be6a977141273da05e8d0a1867352013f1e2702a313fea15a101432f344", + "size_in_bytes": 2552 + }, + { + "_path": "lib/python3.11/site-packages/xontrib/conda.xsh", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "e0e9fb9f5d108c70434802b45e51910671b409a3cddd7b4ec887af2b07e2ce05", + "sha256_in_prefix": "c0650607c2cf90f2ce94f3b7370349922fdac5901e3316fa9f065d8773b3f944", + "size_in_bytes": 7565 + }, + { + "_path": "shell/condabin/conda-hook.ps1", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "94f9a90527bf021292a113a9e546e3f5dd042ae3afc0ed2a7a5763ef312ac756", + "sha256_in_prefix": "4edd554f34b2aa567876996da1be4cbc89d866e0e3d958f42d7889ccff8f617f", + "size_in_bytes": 1047 + } + ], + "paths_version": 1 + }, + "requested_spec": "defaults/osx-arm64::conda==23.11.0=py311hca03da5_0[md5=d40f56a649df2d05c5468713732e005e]", + "sha256": "63ade392153a88ba334593059bfce7ab3b6df1dbbd6622655c8a7db587f70a78", + "size": 1317120, + "subdir": "osx-arm64", + "timestamp": 1701719702000, + "track_features": "", + "url": "https://repo.anaconda.com/pkgs/main/osx-arm64/conda-23.11.0-py311hca03da5_0.conda", + "version": "23.11.0" +} \ No newline at end of file diff --git a/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda3-3.10.1/conda-meta/history b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda3-3.10.1/conda-meta/history new file mode 100644 index 000000000000..b196a3e5922b --- /dev/null +++ b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda3-3.10.1/conda-meta/history @@ -0,0 +1,72 @@ +==> 2024-02-14 17:04:16 <== +# cmd: /Users/donjayamanne/miniconda3/conda.exe install --offline --file /Users/donjayamanne/miniconda3/pkgs/env.txt -yp /Users/donjayamanne/miniconda3 +# conda version: 23.10.0 ++defaults/noarch::archspec-0.2.1-pyhd3eb1b0_0 ++defaults/noarch::charset-normalizer-2.0.4-pyhd3eb1b0_0 ++defaults/noarch::conda-libmamba-solver-23.12.0-pyhd3eb1b0_1 ++defaults/noarch::jsonpatch-1.32-pyhd3eb1b0_0 ++defaults/noarch::jsonpointer-2.1-pyhd3eb1b0_0 ++defaults/noarch::pybind11-abi-4-hd3eb1b0_1 ++defaults/noarch::pycparser-2.21-pyhd3eb1b0_0 ++defaults/noarch::tzdata-2023c-h04d1e81_0 ++defaults/osx-arm64::boltons-23.0.0-py311hca03da5_0 ++defaults/osx-arm64::brotli-python-1.0.9-py311h313beb8_7 ++defaults/osx-arm64::bzip2-1.0.8-h620ffc9_4 ++defaults/osx-arm64::c-ares-1.19.1-h80987f9_0 ++defaults/osx-arm64::ca-certificates-2023.12.12-hca03da5_0 ++defaults/osx-arm64::certifi-2023.11.17-py311hca03da5_0 ++defaults/osx-arm64::cffi-1.16.0-py311h80987f9_0 ++defaults/osx-arm64::conda-23.11.0-py311hca03da5_0 ++defaults/osx-arm64::conda-content-trust-0.2.0-py311hca03da5_0 ++defaults/osx-arm64::conda-package-handling-2.2.0-py311hca03da5_0 ++defaults/osx-arm64::conda-package-streaming-0.9.0-py311hca03da5_0 ++defaults/osx-arm64::cryptography-41.0.7-py311hd4332d6_0 ++defaults/osx-arm64::distro-1.8.0-py311hca03da5_0 ++defaults/osx-arm64::fmt-9.1.0-h48ca7d4_0 ++defaults/osx-arm64::icu-73.1-h313beb8_0 ++defaults/osx-arm64::idna-3.4-py311hca03da5_0 ++defaults/osx-arm64::krb5-1.20.1-hf3e1bf2_1 ++defaults/osx-arm64::libarchive-3.6.2-h62fee54_2 ++defaults/osx-arm64::libcurl-8.4.0-h3e2b118_1 ++defaults/osx-arm64::libcxx-14.0.6-h848a8c0_0 ++defaults/osx-arm64::libedit-3.1.20230828-h80987f9_0 ++defaults/osx-arm64::libev-4.33-h1a28f6b_1 ++defaults/osx-arm64::libffi-3.4.4-hca03da5_0 ++defaults/osx-arm64::libiconv-1.16-h1a28f6b_2 ++defaults/osx-arm64::libmamba-1.5.3-h15e39b3_0 ++defaults/osx-arm64::libmambapy-1.5.3-py311h1c5506f_0 ++defaults/osx-arm64::libnghttp2-1.57.0-h62f6fdd_0 ++defaults/osx-arm64::libsolv-0.7.24-h514c7bf_0 ++defaults/osx-arm64::libssh2-1.10.0-h02f6b3c_2 ++defaults/osx-arm64::libxml2-2.10.4-h0dcf63f_1 ++defaults/osx-arm64::lz4-c-1.9.4-h313beb8_0 ++defaults/osx-arm64::menuinst-2.0.1-py311hca03da5_1 ++defaults/osx-arm64::ncurses-6.4-h313beb8_0 ++defaults/osx-arm64::openssl-3.0.12-h1a28f6b_0 ++defaults/osx-arm64::packaging-23.1-py311hca03da5_0 ++defaults/osx-arm64::pcre2-10.42-hb066dcc_0 ++defaults/osx-arm64::pip-23.3.1-py311hca03da5_0 ++defaults/osx-arm64::platformdirs-3.10.0-py311hca03da5_0 ++defaults/osx-arm64::pluggy-1.0.0-py311hca03da5_1 ++defaults/osx-arm64::pycosat-0.6.6-py311h80987f9_0 ++defaults/osx-arm64::pyopenssl-23.2.0-py311hca03da5_0 ++defaults/osx-arm64::pysocks-1.7.1-py311hca03da5_0 ++defaults/osx-arm64::python-3.11.5-hb885b13_0 ++defaults/osx-arm64::python.app-3-py311h80987f9_0 ++defaults/osx-arm64::readline-8.2-h1a28f6b_0 ++defaults/osx-arm64::reproc-14.2.4-hc377ac9_1 ++defaults/osx-arm64::reproc-cpp-14.2.4-hc377ac9_1 ++defaults/osx-arm64::requests-2.31.0-py311hca03da5_0 ++defaults/osx-arm64::ruamel.yaml-0.17.21-py311h80987f9_0 ++defaults/osx-arm64::setuptools-68.2.2-py311hca03da5_0 ++defaults/osx-arm64::sqlite-3.41.2-h80987f9_0 ++defaults/osx-arm64::tk-8.6.12-hb8d0fd4_0 ++defaults/osx-arm64::tqdm-4.65.0-py311hb6e6a13_0 ++defaults/osx-arm64::truststore-0.8.0-py311hca03da5_0 ++defaults/osx-arm64::urllib3-1.26.18-py311hca03da5_0 ++defaults/osx-arm64::wheel-0.41.2-py311hca03da5_0 ++defaults/osx-arm64::xz-5.4.5-h80987f9_0 ++defaults/osx-arm64::yaml-cpp-0.8.0-h313beb8_0 ++defaults/osx-arm64::zlib-1.2.13-h5a0b063_0 ++defaults/osx-arm64::zstandard-0.19.0-py311h80987f9_0 ++defaults/osx-arm64::zstd-1.5.5-hd90d995_0 diff --git a/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda3-3.10.1/conda-meta/python-3.11.5-hb885b13_0.json b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda3-3.10.1/conda-meta/python-3.11.5-hb885b13_0.json new file mode 100644 index 000000000000..90b9af01a4e0 --- /dev/null +++ b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda3-3.10.1/conda-meta/python-3.11.5-hb885b13_0.json @@ -0,0 +1,2280 @@ +{ + "build": "hb885b13_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/osx-arm64", + "constrains": [], + "depends": [ + "bzip2 >=1.0.8,<2.0a0", + "libffi >=3.4,<3.5", + "libffi >=3.4,<4.0a0", + "ncurses >=6.4,<7.0a0", + "openssl >=3.0.10,<4.0a0", + "readline >=8.1.2,<9.0a0", + "sqlite >=3.41.2,<4.0a0", + "tk >=8.6.12,<8.7.0a0", + "tzdata", + "xz >=5.4.2,<6.0a0", + "zlib >=1.2.13,<1.3.0a0", + "pip" + ], + "extracted_package_dir": "/Users/donjayamanne/miniconda3/pkgs/python-3.11.5-hb885b13_0", + "features": "", + "files": [ + "bin/2to3", + "bin/2to3-3.11", + "bin/idle3", + "bin/idle3.11", + "bin/pydoc", + "bin/pydoc3", + "bin/pydoc3.11", + "bin/python", + "bin/python3", + "bin/python3-config", + "bin/python3.1", + "bin/python3.11", + "bin/python3.11-config", + "include/python3.11/Python.h", + "include/python3.11/abstract.h", + "include/python3.11/bltinmodule.h", + "include/python3.11/boolobject.h", + "include/python3.11/bytearrayobject.h", + "include/python3.11/bytesobject.h", + "include/python3.11/ceval.h", + "include/python3.11/codecs.h", + "include/python3.11/compile.h", + "include/python3.11/complexobject.h", + "include/python3.11/cpython/abstract.h", + "include/python3.11/cpython/bytearrayobject.h", + "include/python3.11/cpython/bytesobject.h", + "include/python3.11/cpython/cellobject.h", + "include/python3.11/cpython/ceval.h", + "include/python3.11/cpython/classobject.h", + "include/python3.11/cpython/code.h", + "include/python3.11/cpython/compile.h", + "include/python3.11/cpython/complexobject.h", + "include/python3.11/cpython/context.h", + "include/python3.11/cpython/descrobject.h", + "include/python3.11/cpython/dictobject.h", + "include/python3.11/cpython/fileobject.h", + "include/python3.11/cpython/fileutils.h", + "include/python3.11/cpython/floatobject.h", + "include/python3.11/cpython/frameobject.h", + "include/python3.11/cpython/funcobject.h", + "include/python3.11/cpython/genobject.h", + "include/python3.11/cpython/import.h", + "include/python3.11/cpython/initconfig.h", + "include/python3.11/cpython/listobject.h", + "include/python3.11/cpython/longintrepr.h", + "include/python3.11/cpython/longobject.h", + "include/python3.11/cpython/methodobject.h", + "include/python3.11/cpython/modsupport.h", + "include/python3.11/cpython/object.h", + "include/python3.11/cpython/objimpl.h", + "include/python3.11/cpython/odictobject.h", + "include/python3.11/cpython/picklebufobject.h", + "include/python3.11/cpython/pthread_stubs.h", + "include/python3.11/cpython/pyctype.h", + "include/python3.11/cpython/pydebug.h", + "include/python3.11/cpython/pyerrors.h", + "include/python3.11/cpython/pyfpe.h", + "include/python3.11/cpython/pyframe.h", + "include/python3.11/cpython/pylifecycle.h", + "include/python3.11/cpython/pymem.h", + "include/python3.11/cpython/pystate.h", + "include/python3.11/cpython/pythonrun.h", + "include/python3.11/cpython/pythread.h", + "include/python3.11/cpython/pytime.h", + "include/python3.11/cpython/setobject.h", + "include/python3.11/cpython/sysmodule.h", + "include/python3.11/cpython/traceback.h", + "include/python3.11/cpython/tupleobject.h", + "include/python3.11/cpython/unicodeobject.h", + "include/python3.11/cpython/warnings.h", + "include/python3.11/cpython/weakrefobject.h", + "include/python3.11/datetime.h", + "include/python3.11/descrobject.h", + "include/python3.11/dictobject.h", + "include/python3.11/dynamic_annotations.h", + "include/python3.11/enumobject.h", + "include/python3.11/errcode.h", + "include/python3.11/exports.h", + "include/python3.11/fileobject.h", + "include/python3.11/fileutils.h", + "include/python3.11/floatobject.h", + "include/python3.11/frameobject.h", + "include/python3.11/genericaliasobject.h", + "include/python3.11/import.h", + "include/python3.11/internal/pycore_abstract.h", + "include/python3.11/internal/pycore_accu.h", + "include/python3.11/internal/pycore_asdl.h", + "include/python3.11/internal/pycore_ast.h", + "include/python3.11/internal/pycore_ast_state.h", + "include/python3.11/internal/pycore_atomic.h", + "include/python3.11/internal/pycore_atomic_funcs.h", + "include/python3.11/internal/pycore_bitutils.h", + "include/python3.11/internal/pycore_blocks_output_buffer.h", + "include/python3.11/internal/pycore_bytes_methods.h", + "include/python3.11/internal/pycore_bytesobject.h", + "include/python3.11/internal/pycore_call.h", + "include/python3.11/internal/pycore_ceval.h", + "include/python3.11/internal/pycore_code.h", + "include/python3.11/internal/pycore_compile.h", + "include/python3.11/internal/pycore_condvar.h", + "include/python3.11/internal/pycore_context.h", + "include/python3.11/internal/pycore_dict.h", + "include/python3.11/internal/pycore_dtoa.h", + "include/python3.11/internal/pycore_emscripten_signal.h", + "include/python3.11/internal/pycore_exceptions.h", + "include/python3.11/internal/pycore_fileutils.h", + "include/python3.11/internal/pycore_floatobject.h", + "include/python3.11/internal/pycore_format.h", + "include/python3.11/internal/pycore_frame.h", + "include/python3.11/internal/pycore_function.h", + "include/python3.11/internal/pycore_gc.h", + "include/python3.11/internal/pycore_genobject.h", + "include/python3.11/internal/pycore_getopt.h", + "include/python3.11/internal/pycore_gil.h", + "include/python3.11/internal/pycore_global_objects.h", + "include/python3.11/internal/pycore_global_strings.h", + "include/python3.11/internal/pycore_hamt.h", + "include/python3.11/internal/pycore_hashtable.h", + "include/python3.11/internal/pycore_import.h", + "include/python3.11/internal/pycore_initconfig.h", + "include/python3.11/internal/pycore_interp.h", + "include/python3.11/internal/pycore_interpreteridobject.h", + "include/python3.11/internal/pycore_list.h", + "include/python3.11/internal/pycore_long.h", + "include/python3.11/internal/pycore_moduleobject.h", + "include/python3.11/internal/pycore_namespace.h", + "include/python3.11/internal/pycore_object.h", + "include/python3.11/internal/pycore_opcode.h", + "include/python3.11/internal/pycore_parser.h", + "include/python3.11/internal/pycore_pathconfig.h", + "include/python3.11/internal/pycore_pyarena.h", + "include/python3.11/internal/pycore_pyerrors.h", + "include/python3.11/internal/pycore_pyhash.h", + "include/python3.11/internal/pycore_pylifecycle.h", + "include/python3.11/internal/pycore_pymath.h", + "include/python3.11/internal/pycore_pymem.h", + "include/python3.11/internal/pycore_pystate.h", + "include/python3.11/internal/pycore_runtime.h", + "include/python3.11/internal/pycore_runtime_init.h", + "include/python3.11/internal/pycore_signal.h", + "include/python3.11/internal/pycore_sliceobject.h", + "include/python3.11/internal/pycore_strhex.h", + "include/python3.11/internal/pycore_structseq.h", + "include/python3.11/internal/pycore_symtable.h", + "include/python3.11/internal/pycore_sysmodule.h", + "include/python3.11/internal/pycore_traceback.h", + "include/python3.11/internal/pycore_tuple.h", + "include/python3.11/internal/pycore_typeobject.h", + "include/python3.11/internal/pycore_ucnhash.h", + "include/python3.11/internal/pycore_unicodeobject.h", + "include/python3.11/internal/pycore_unionobject.h", + "include/python3.11/internal/pycore_warnings.h", + "include/python3.11/intrcheck.h", + "include/python3.11/iterobject.h", + "include/python3.11/listobject.h", + "include/python3.11/longobject.h", + "include/python3.11/marshal.h", + "include/python3.11/memoryobject.h", + "include/python3.11/methodobject.h", + "include/python3.11/modsupport.h", + "include/python3.11/moduleobject.h", + "include/python3.11/object.h", + "include/python3.11/objimpl.h", + "include/python3.11/opcode.h", + "include/python3.11/osdefs.h", + "include/python3.11/osmodule.h", + "include/python3.11/patchlevel.h", + "include/python3.11/py_curses.h", + "include/python3.11/pybuffer.h", + "include/python3.11/pycapsule.h", + "include/python3.11/pyconfig.h", + "include/python3.11/pydtrace.h", + "include/python3.11/pyerrors.h", + "include/python3.11/pyexpat.h", + "include/python3.11/pyframe.h", + "include/python3.11/pyhash.h", + "include/python3.11/pylifecycle.h", + "include/python3.11/pymacconfig.h", + "include/python3.11/pymacro.h", + "include/python3.11/pymath.h", + "include/python3.11/pymem.h", + "include/python3.11/pyport.h", + "include/python3.11/pystate.h", + "include/python3.11/pystrcmp.h", + "include/python3.11/pystrtod.h", + "include/python3.11/pythonrun.h", + "include/python3.11/pythread.h", + "include/python3.11/pytypedefs.h", + "include/python3.11/rangeobject.h", + "include/python3.11/setobject.h", + "include/python3.11/sliceobject.h", + "include/python3.11/structmember.h", + "include/python3.11/structseq.h", + "include/python3.11/sysmodule.h", + "include/python3.11/token.h", + "include/python3.11/traceback.h", + "include/python3.11/tracemalloc.h", + "include/python3.11/tupleobject.h", + "include/python3.11/typeslots.h", + "include/python3.11/unicodeobject.h", + "include/python3.11/warnings.h", + "include/python3.11/weakrefobject.h", + "lib/libpython3.11.dylib", + "lib/pkgconfig/python-3.11-embed.pc", + "lib/pkgconfig/python-3.11.pc", + "lib/pkgconfig/python3-embed.pc", + "lib/pkgconfig/python3.pc", + "lib/python3.1", + "lib/python3.11/LICENSE.txt", + "lib/python3.11/__future__.py", + "lib/python3.11/__hello__.py", + "lib/python3.11/__phello__/__init__.py", + "lib/python3.11/__phello__/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/__phello__/__pycache__/spam.cpython-311.pyc", + "lib/python3.11/__phello__/spam.py", + "lib/python3.11/__pycache__/__future__.cpython-311.pyc", + "lib/python3.11/__pycache__/__hello__.cpython-311.pyc", + "lib/python3.11/__pycache__/_aix_support.cpython-311.pyc", + "lib/python3.11/__pycache__/_bootsubprocess.cpython-311.pyc", + "lib/python3.11/__pycache__/_collections_abc.cpython-311.pyc", + "lib/python3.11/__pycache__/_compat_pickle.cpython-311.pyc", + "lib/python3.11/__pycache__/_compression.cpython-311.pyc", + "lib/python3.11/__pycache__/_markupbase.cpython-311.pyc", + "lib/python3.11/__pycache__/_osx_support.cpython-311.pyc", + "lib/python3.11/__pycache__/_py_abc.cpython-311.pyc", + "lib/python3.11/__pycache__/_pydecimal.cpython-311.pyc", + "lib/python3.11/__pycache__/_pyio.cpython-311.pyc", + "lib/python3.11/__pycache__/_sitebuiltins.cpython-311.pyc", + "lib/python3.11/__pycache__/_strptime.cpython-311.pyc", + "lib/python3.11/__pycache__/_sysconfigdata__darwin_darwin.cpython-311.pyc", + "lib/python3.11/__pycache__/_sysconfigdata_arm64_apple_darwin20_0_0.cpython-311.pyc", + "lib/python3.11/__pycache__/_threading_local.cpython-311.pyc", + "lib/python3.11/__pycache__/_weakrefset.cpython-311.pyc", + "lib/python3.11/__pycache__/abc.cpython-311.pyc", + "lib/python3.11/__pycache__/aifc.cpython-311.pyc", + "lib/python3.11/__pycache__/antigravity.cpython-311.pyc", + "lib/python3.11/__pycache__/argparse.cpython-311.pyc", + "lib/python3.11/__pycache__/ast.cpython-311.pyc", + "lib/python3.11/__pycache__/asynchat.cpython-311.pyc", + "lib/python3.11/__pycache__/asyncore.cpython-311.pyc", + "lib/python3.11/__pycache__/base64.cpython-311.pyc", + "lib/python3.11/__pycache__/bdb.cpython-311.pyc", + "lib/python3.11/__pycache__/bisect.cpython-311.pyc", + "lib/python3.11/__pycache__/bz2.cpython-311.pyc", + "lib/python3.11/__pycache__/cProfile.cpython-311.pyc", + "lib/python3.11/__pycache__/calendar.cpython-311.pyc", + "lib/python3.11/__pycache__/cgi.cpython-311.pyc", + "lib/python3.11/__pycache__/cgitb.cpython-311.pyc", + "lib/python3.11/__pycache__/chunk.cpython-311.pyc", + "lib/python3.11/__pycache__/cmd.cpython-311.pyc", + "lib/python3.11/__pycache__/code.cpython-311.pyc", + "lib/python3.11/__pycache__/codecs.cpython-311.pyc", + "lib/python3.11/__pycache__/codeop.cpython-311.pyc", + "lib/python3.11/__pycache__/colorsys.cpython-311.pyc", + "lib/python3.11/__pycache__/compileall.cpython-311.pyc", + "lib/python3.11/__pycache__/configparser.cpython-311.pyc", + "lib/python3.11/__pycache__/contextlib.cpython-311.pyc", + "lib/python3.11/__pycache__/contextvars.cpython-311.pyc", + "lib/python3.11/__pycache__/copy.cpython-311.pyc", + "lib/python3.11/__pycache__/copyreg.cpython-311.pyc", + "lib/python3.11/__pycache__/crypt.cpython-311.pyc", + "lib/python3.11/__pycache__/csv.cpython-311.pyc", + "lib/python3.11/__pycache__/dataclasses.cpython-311.pyc", + "lib/python3.11/__pycache__/datetime.cpython-311.pyc", + "lib/python3.11/__pycache__/decimal.cpython-311.pyc", + "lib/python3.11/__pycache__/difflib.cpython-311.pyc", + "lib/python3.11/__pycache__/dis.cpython-311.pyc", + "lib/python3.11/__pycache__/doctest.cpython-311.pyc", + "lib/python3.11/__pycache__/enum.cpython-311.pyc", + "lib/python3.11/__pycache__/filecmp.cpython-311.pyc", + "lib/python3.11/__pycache__/fileinput.cpython-311.pyc", + "lib/python3.11/__pycache__/fnmatch.cpython-311.pyc", + "lib/python3.11/__pycache__/fractions.cpython-311.pyc", + "lib/python3.11/__pycache__/ftplib.cpython-311.pyc", + "lib/python3.11/__pycache__/functools.cpython-311.pyc", + "lib/python3.11/__pycache__/genericpath.cpython-311.pyc", + "lib/python3.11/__pycache__/getopt.cpython-311.pyc", + "lib/python3.11/__pycache__/getpass.cpython-311.pyc", + "lib/python3.11/__pycache__/gettext.cpython-311.pyc", + "lib/python3.11/__pycache__/glob.cpython-311.pyc", + "lib/python3.11/__pycache__/graphlib.cpython-311.pyc", + "lib/python3.11/__pycache__/gzip.cpython-311.pyc", + "lib/python3.11/__pycache__/hashlib.cpython-311.pyc", + "lib/python3.11/__pycache__/heapq.cpython-311.pyc", + "lib/python3.11/__pycache__/hmac.cpython-311.pyc", + "lib/python3.11/__pycache__/imaplib.cpython-311.pyc", + "lib/python3.11/__pycache__/imghdr.cpython-311.pyc", + "lib/python3.11/__pycache__/imp.cpython-311.pyc", + "lib/python3.11/__pycache__/inspect.cpython-311.pyc", + "lib/python3.11/__pycache__/io.cpython-311.pyc", + "lib/python3.11/__pycache__/ipaddress.cpython-311.pyc", + "lib/python3.11/__pycache__/keyword.cpython-311.pyc", + "lib/python3.11/__pycache__/linecache.cpython-311.pyc", + "lib/python3.11/__pycache__/locale.cpython-311.pyc", + "lib/python3.11/__pycache__/lzma.cpython-311.pyc", + "lib/python3.11/__pycache__/mailbox.cpython-311.pyc", + "lib/python3.11/__pycache__/mailcap.cpython-311.pyc", + "lib/python3.11/__pycache__/mimetypes.cpython-311.pyc", + "lib/python3.11/__pycache__/modulefinder.cpython-311.pyc", + "lib/python3.11/__pycache__/netrc.cpython-311.pyc", + "lib/python3.11/__pycache__/nntplib.cpython-311.pyc", + "lib/python3.11/__pycache__/ntpath.cpython-311.pyc", + "lib/python3.11/__pycache__/nturl2path.cpython-311.pyc", + "lib/python3.11/__pycache__/numbers.cpython-311.pyc", + "lib/python3.11/__pycache__/opcode.cpython-311.pyc", + "lib/python3.11/__pycache__/operator.cpython-311.pyc", + "lib/python3.11/__pycache__/optparse.cpython-311.pyc", + "lib/python3.11/__pycache__/os.cpython-311.pyc", + "lib/python3.11/__pycache__/pathlib.cpython-311.pyc", + "lib/python3.11/__pycache__/pdb.cpython-311.pyc", + "lib/python3.11/__pycache__/pickle.cpython-311.pyc", + "lib/python3.11/__pycache__/pickletools.cpython-311.pyc", + "lib/python3.11/__pycache__/pipes.cpython-311.pyc", + "lib/python3.11/__pycache__/pkgutil.cpython-311.pyc", + "lib/python3.11/__pycache__/platform.cpython-311.pyc", + "lib/python3.11/__pycache__/plistlib.cpython-311.pyc", + "lib/python3.11/__pycache__/poplib.cpython-311.pyc", + "lib/python3.11/__pycache__/posixpath.cpython-311.pyc", + "lib/python3.11/__pycache__/pprint.cpython-311.pyc", + "lib/python3.11/__pycache__/profile.cpython-311.pyc", + "lib/python3.11/__pycache__/pstats.cpython-311.pyc", + "lib/python3.11/__pycache__/pty.cpython-311.pyc", + "lib/python3.11/__pycache__/py_compile.cpython-311.pyc", + "lib/python3.11/__pycache__/pyclbr.cpython-311.pyc", + "lib/python3.11/__pycache__/pydoc.cpython-311.pyc", + "lib/python3.11/__pycache__/queue.cpython-311.pyc", + "lib/python3.11/__pycache__/quopri.cpython-311.pyc", + "lib/python3.11/__pycache__/random.cpython-311.pyc", + "lib/python3.11/__pycache__/reprlib.cpython-311.pyc", + "lib/python3.11/__pycache__/rlcompleter.cpython-311.pyc", + "lib/python3.11/__pycache__/runpy.cpython-311.pyc", + "lib/python3.11/__pycache__/sched.cpython-311.pyc", + "lib/python3.11/__pycache__/secrets.cpython-311.pyc", + "lib/python3.11/__pycache__/selectors.cpython-311.pyc", + "lib/python3.11/__pycache__/shelve.cpython-311.pyc", + "lib/python3.11/__pycache__/shlex.cpython-311.pyc", + "lib/python3.11/__pycache__/shutil.cpython-311.pyc", + "lib/python3.11/__pycache__/signal.cpython-311.pyc", + "lib/python3.11/__pycache__/site.cpython-311.pyc", + "lib/python3.11/__pycache__/smtpd.cpython-311.pyc", + "lib/python3.11/__pycache__/smtplib.cpython-311.pyc", + "lib/python3.11/__pycache__/sndhdr.cpython-311.pyc", + "lib/python3.11/__pycache__/socket.cpython-311.pyc", + "lib/python3.11/__pycache__/socketserver.cpython-311.pyc", + "lib/python3.11/__pycache__/sre_compile.cpython-311.pyc", + "lib/python3.11/__pycache__/sre_constants.cpython-311.pyc", + "lib/python3.11/__pycache__/sre_parse.cpython-311.pyc", + "lib/python3.11/__pycache__/ssl.cpython-311.pyc", + "lib/python3.11/__pycache__/stat.cpython-311.pyc", + "lib/python3.11/__pycache__/statistics.cpython-311.pyc", + "lib/python3.11/__pycache__/string.cpython-311.pyc", + "lib/python3.11/__pycache__/stringprep.cpython-311.pyc", + "lib/python3.11/__pycache__/struct.cpython-311.pyc", + "lib/python3.11/__pycache__/subprocess.cpython-311.pyc", + "lib/python3.11/__pycache__/sunau.cpython-311.pyc", + "lib/python3.11/__pycache__/symtable.cpython-311.pyc", + "lib/python3.11/__pycache__/sysconfig.cpython-311.pyc", + "lib/python3.11/__pycache__/tabnanny.cpython-311.pyc", + "lib/python3.11/__pycache__/tarfile.cpython-311.pyc", + "lib/python3.11/__pycache__/telnetlib.cpython-311.pyc", + "lib/python3.11/__pycache__/tempfile.cpython-311.pyc", + "lib/python3.11/__pycache__/textwrap.cpython-311.pyc", + "lib/python3.11/__pycache__/this.cpython-311.pyc", + "lib/python3.11/__pycache__/threading.cpython-311.pyc", + "lib/python3.11/__pycache__/timeit.cpython-311.pyc", + "lib/python3.11/__pycache__/token.cpython-311.pyc", + "lib/python3.11/__pycache__/tokenize.cpython-311.pyc", + "lib/python3.11/__pycache__/trace.cpython-311.pyc", + "lib/python3.11/__pycache__/traceback.cpython-311.pyc", + "lib/python3.11/__pycache__/tracemalloc.cpython-311.pyc", + "lib/python3.11/__pycache__/tty.cpython-311.pyc", + "lib/python3.11/__pycache__/turtle.cpython-311.pyc", + "lib/python3.11/__pycache__/types.cpython-311.pyc", + "lib/python3.11/__pycache__/typing.cpython-311.pyc", + "lib/python3.11/__pycache__/uu.cpython-311.pyc", + "lib/python3.11/__pycache__/uuid.cpython-311.pyc", + "lib/python3.11/__pycache__/warnings.cpython-311.pyc", + "lib/python3.11/__pycache__/wave.cpython-311.pyc", + "lib/python3.11/__pycache__/weakref.cpython-311.pyc", + "lib/python3.11/__pycache__/webbrowser.cpython-311.pyc", + "lib/python3.11/__pycache__/xdrlib.cpython-311.pyc", + "lib/python3.11/__pycache__/zipapp.cpython-311.pyc", + "lib/python3.11/__pycache__/zipfile.cpython-311.pyc", + "lib/python3.11/__pycache__/zipimport.cpython-311.pyc", + "lib/python3.11/_aix_support.py", + "lib/python3.11/_bootsubprocess.py", + "lib/python3.11/_collections_abc.py", + "lib/python3.11/_compat_pickle.py", + "lib/python3.11/_compression.py", + "lib/python3.11/_markupbase.py", + "lib/python3.11/_osx_support.py", + "lib/python3.11/_py_abc.py", + "lib/python3.11/_pydecimal.py", + "lib/python3.11/_pyio.py", + "lib/python3.11/_sitebuiltins.py", + "lib/python3.11/_strptime.py", + "lib/python3.11/_sysconfigdata__darwin_darwin.py", + "lib/python3.11/_sysconfigdata__darwin_darwin.py.orig", + "lib/python3.11/_sysconfigdata_arm64_apple_darwin20_0_0.py", + "lib/python3.11/_threading_local.py", + "lib/python3.11/_weakrefset.py", + "lib/python3.11/abc.py", + "lib/python3.11/aifc.py", + "lib/python3.11/antigravity.py", + "lib/python3.11/argparse.py", + "lib/python3.11/ast.py", + "lib/python3.11/asynchat.py", + "lib/python3.11/asyncio/__init__.py", + "lib/python3.11/asyncio/__main__.py", + "lib/python3.11/asyncio/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/base_events.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/base_futures.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/base_subprocess.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/base_tasks.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/constants.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/coroutines.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/events.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/exceptions.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/format_helpers.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/futures.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/locks.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/log.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/mixins.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/proactor_events.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/protocols.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/queues.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/runners.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/selector_events.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/sslproto.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/staggered.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/streams.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/subprocess.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/taskgroups.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/tasks.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/threads.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/timeouts.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/transports.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/trsock.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/unix_events.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/windows_events.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/windows_utils.cpython-311.pyc", + "lib/python3.11/asyncio/base_events.py", + "lib/python3.11/asyncio/base_futures.py", + "lib/python3.11/asyncio/base_subprocess.py", + "lib/python3.11/asyncio/base_tasks.py", + "lib/python3.11/asyncio/constants.py", + "lib/python3.11/asyncio/coroutines.py", + "lib/python3.11/asyncio/events.py", + "lib/python3.11/asyncio/exceptions.py", + "lib/python3.11/asyncio/format_helpers.py", + "lib/python3.11/asyncio/futures.py", + "lib/python3.11/asyncio/locks.py", + "lib/python3.11/asyncio/log.py", + "lib/python3.11/asyncio/mixins.py", + "lib/python3.11/asyncio/proactor_events.py", + "lib/python3.11/asyncio/protocols.py", + "lib/python3.11/asyncio/queues.py", + "lib/python3.11/asyncio/runners.py", + "lib/python3.11/asyncio/selector_events.py", + "lib/python3.11/asyncio/sslproto.py", + "lib/python3.11/asyncio/staggered.py", + "lib/python3.11/asyncio/streams.py", + "lib/python3.11/asyncio/subprocess.py", + "lib/python3.11/asyncio/taskgroups.py", + "lib/python3.11/asyncio/tasks.py", + "lib/python3.11/asyncio/threads.py", + "lib/python3.11/asyncio/timeouts.py", + "lib/python3.11/asyncio/transports.py", + "lib/python3.11/asyncio/trsock.py", + "lib/python3.11/asyncio/unix_events.py", + "lib/python3.11/asyncio/windows_events.py", + "lib/python3.11/asyncio/windows_utils.py", + "lib/python3.11/asyncore.py", + "lib/python3.11/base64.py", + "lib/python3.11/bdb.py", + "lib/python3.11/bisect.py", + "lib/python3.11/bz2.py", + "lib/python3.11/cProfile.py", + "lib/python3.11/calendar.py", + "lib/python3.11/cgi.py", + "lib/python3.11/cgitb.py", + "lib/python3.11/chunk.py", + "lib/python3.11/cmd.py", + "lib/python3.11/code.py", + "lib/python3.11/codecs.py", + "lib/python3.11/codeop.py", + "lib/python3.11/collections/__init__.py", + "lib/python3.11/collections/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/collections/__pycache__/abc.cpython-311.pyc", + "lib/python3.11/collections/abc.py", + "lib/python3.11/colorsys.py", + "lib/python3.11/compileall.py", + "lib/python3.11/concurrent/__init__.py", + "lib/python3.11/concurrent/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/concurrent/futures/__init__.py", + "lib/python3.11/concurrent/futures/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/concurrent/futures/__pycache__/_base.cpython-311.pyc", + "lib/python3.11/concurrent/futures/__pycache__/process.cpython-311.pyc", + "lib/python3.11/concurrent/futures/__pycache__/thread.cpython-311.pyc", + "lib/python3.11/concurrent/futures/_base.py", + "lib/python3.11/concurrent/futures/process.py", + "lib/python3.11/concurrent/futures/thread.py", + "lib/python3.11/config-3.11-darwin/Makefile", + "lib/python3.11/config-3.11-darwin/Setup", + "lib/python3.11/config-3.11-darwin/Setup.bootstrap", + "lib/python3.11/config-3.11-darwin/Setup.local", + "lib/python3.11/config-3.11-darwin/Setup.stdlib", + "lib/python3.11/config-3.11-darwin/__pycache__/python-config.cpython-311.pyc", + "lib/python3.11/config-3.11-darwin/config.c", + "lib/python3.11/config-3.11-darwin/config.c.in", + "lib/python3.11/config-3.11-darwin/install-sh", + "lib/python3.11/config-3.11-darwin/makesetup", + "lib/python3.11/config-3.11-darwin/python-config.py", + "lib/python3.11/config-3.11-darwin/python.o", + "lib/python3.11/configparser.py", + "lib/python3.11/contextlib.py", + "lib/python3.11/contextvars.py", + "lib/python3.11/copy.py", + "lib/python3.11/copyreg.py", + "lib/python3.11/crypt.py", + "lib/python3.11/csv.py", + "lib/python3.11/ctypes/__init__.py", + "lib/python3.11/ctypes/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/ctypes/__pycache__/_aix.cpython-311.pyc", + "lib/python3.11/ctypes/__pycache__/_endian.cpython-311.pyc", + "lib/python3.11/ctypes/__pycache__/util.cpython-311.pyc", + "lib/python3.11/ctypes/__pycache__/wintypes.cpython-311.pyc", + "lib/python3.11/ctypes/_aix.py", + "lib/python3.11/ctypes/_endian.py", + "lib/python3.11/ctypes/macholib/README.ctypes", + "lib/python3.11/ctypes/macholib/__init__.py", + "lib/python3.11/ctypes/macholib/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/ctypes/macholib/__pycache__/dyld.cpython-311.pyc", + "lib/python3.11/ctypes/macholib/__pycache__/dylib.cpython-311.pyc", + "lib/python3.11/ctypes/macholib/__pycache__/framework.cpython-311.pyc", + "lib/python3.11/ctypes/macholib/dyld.py", + "lib/python3.11/ctypes/macholib/dylib.py", + "lib/python3.11/ctypes/macholib/fetch_macholib", + "lib/python3.11/ctypes/macholib/fetch_macholib.bat", + "lib/python3.11/ctypes/macholib/framework.py", + "lib/python3.11/ctypes/util.py", + "lib/python3.11/ctypes/wintypes.py", + "lib/python3.11/curses/__init__.py", + "lib/python3.11/curses/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/curses/__pycache__/ascii.cpython-311.pyc", + "lib/python3.11/curses/__pycache__/has_key.cpython-311.pyc", + "lib/python3.11/curses/__pycache__/panel.cpython-311.pyc", + "lib/python3.11/curses/__pycache__/textpad.cpython-311.pyc", + "lib/python3.11/curses/ascii.py", + "lib/python3.11/curses/has_key.py", + "lib/python3.11/curses/panel.py", + "lib/python3.11/curses/textpad.py", + "lib/python3.11/dataclasses.py", + "lib/python3.11/datetime.py", + "lib/python3.11/dbm/__init__.py", + "lib/python3.11/dbm/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/dbm/__pycache__/dumb.cpython-311.pyc", + "lib/python3.11/dbm/__pycache__/gnu.cpython-311.pyc", + "lib/python3.11/dbm/__pycache__/ndbm.cpython-311.pyc", + "lib/python3.11/dbm/dumb.py", + "lib/python3.11/dbm/gnu.py", + "lib/python3.11/dbm/ndbm.py", + "lib/python3.11/decimal.py", + "lib/python3.11/difflib.py", + "lib/python3.11/dis.py", + "lib/python3.11/distutils/README", + "lib/python3.11/distutils/__init__.py", + "lib/python3.11/distutils/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/_msvccompiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/archive_util.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/bcppcompiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/ccompiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/cmd.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/config.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/core.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/cygwinccompiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/debug.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/dep_util.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/dir_util.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/dist.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/errors.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/extension.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/fancy_getopt.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/file_util.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/filelist.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/log.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/msvc9compiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/msvccompiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/spawn.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/sysconfig.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/text_file.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/unixccompiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/util.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/version.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/versionpredicate.cpython-311.pyc", + "lib/python3.11/distutils/_msvccompiler.py", + "lib/python3.11/distutils/archive_util.py", + "lib/python3.11/distutils/bcppcompiler.py", + "lib/python3.11/distutils/ccompiler.py", + "lib/python3.11/distutils/cmd.py", + "lib/python3.11/distutils/command/__init__.py", + "lib/python3.11/distutils/command/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/bdist.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/bdist_dumb.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/bdist_rpm.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/build.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/build_clib.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/build_ext.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/build_py.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/build_scripts.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/check.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/clean.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/config.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/install.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/install_data.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/install_egg_info.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/install_headers.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/install_lib.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/install_scripts.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/register.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/sdist.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/upload.cpython-311.pyc", + "lib/python3.11/distutils/command/bdist.py", + "lib/python3.11/distutils/command/bdist_dumb.py", + "lib/python3.11/distutils/command/bdist_rpm.py", + "lib/python3.11/distutils/command/build.py", + "lib/python3.11/distutils/command/build_clib.py", + "lib/python3.11/distutils/command/build_ext.py", + "lib/python3.11/distutils/command/build_py.py", + "lib/python3.11/distutils/command/build_scripts.py", + "lib/python3.11/distutils/command/check.py", + "lib/python3.11/distutils/command/clean.py", + "lib/python3.11/distutils/command/command_template", + "lib/python3.11/distutils/command/config.py", + "lib/python3.11/distutils/command/install.py", + "lib/python3.11/distutils/command/install_data.py", + "lib/python3.11/distutils/command/install_egg_info.py", + "lib/python3.11/distutils/command/install_headers.py", + "lib/python3.11/distutils/command/install_lib.py", + "lib/python3.11/distutils/command/install_scripts.py", + "lib/python3.11/distutils/command/register.py", + "lib/python3.11/distutils/command/sdist.py", + "lib/python3.11/distutils/command/upload.py", + "lib/python3.11/distutils/config.py", + "lib/python3.11/distutils/core.py", + "lib/python3.11/distutils/cygwinccompiler.py", + "lib/python3.11/distutils/debug.py", + "lib/python3.11/distutils/dep_util.py", + "lib/python3.11/distutils/dir_util.py", + "lib/python3.11/distutils/dist.py", + "lib/python3.11/distutils/errors.py", + "lib/python3.11/distutils/extension.py", + "lib/python3.11/distutils/fancy_getopt.py", + "lib/python3.11/distutils/file_util.py", + "lib/python3.11/distutils/filelist.py", + "lib/python3.11/distutils/log.py", + "lib/python3.11/distutils/msvc9compiler.py", + "lib/python3.11/distutils/msvccompiler.py", + "lib/python3.11/distutils/spawn.py", + "lib/python3.11/distutils/sysconfig.py", + "lib/python3.11/distutils/tests/Setup.sample", + "lib/python3.11/distutils/tests/__init__.py", + "lib/python3.11/distutils/tests/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/support.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_archive_util.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_bdist.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_bdist_dumb.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_bdist_rpm.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_build.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_build_clib.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_build_ext.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_build_py.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_build_scripts.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_check.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_clean.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_cmd.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_config.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_config_cmd.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_core.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_cygwinccompiler.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_dep_util.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_dir_util.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_dist.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_extension.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_file_util.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_filelist.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_install.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_install_data.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_install_headers.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_install_lib.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_install_scripts.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_log.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_msvc9compiler.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_msvccompiler.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_register.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_sdist.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_spawn.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_sysconfig.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_text_file.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_unixccompiler.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_upload.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_util.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_version.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_versionpredicate.cpython-311.pyc", + "lib/python3.11/distutils/tests/includetest.rst", + "lib/python3.11/distutils/tests/support.py", + "lib/python3.11/distutils/tests/test_archive_util.py", + "lib/python3.11/distutils/tests/test_bdist.py", + "lib/python3.11/distutils/tests/test_bdist_dumb.py", + "lib/python3.11/distutils/tests/test_bdist_rpm.py", + "lib/python3.11/distutils/tests/test_build.py", + "lib/python3.11/distutils/tests/test_build_clib.py", + "lib/python3.11/distutils/tests/test_build_ext.py", + "lib/python3.11/distutils/tests/test_build_py.py", + "lib/python3.11/distutils/tests/test_build_scripts.py", + "lib/python3.11/distutils/tests/test_check.py", + "lib/python3.11/distutils/tests/test_clean.py", + "lib/python3.11/distutils/tests/test_cmd.py", + "lib/python3.11/distutils/tests/test_config.py", + "lib/python3.11/distutils/tests/test_config_cmd.py", + "lib/python3.11/distutils/tests/test_core.py", + "lib/python3.11/distutils/tests/test_cygwinccompiler.py", + "lib/python3.11/distutils/tests/test_dep_util.py", + "lib/python3.11/distutils/tests/test_dir_util.py", + "lib/python3.11/distutils/tests/test_dist.py", + "lib/python3.11/distutils/tests/test_extension.py", + "lib/python3.11/distutils/tests/test_file_util.py", + "lib/python3.11/distutils/tests/test_filelist.py", + "lib/python3.11/distutils/tests/test_install.py", + "lib/python3.11/distutils/tests/test_install_data.py", + "lib/python3.11/distutils/tests/test_install_headers.py", + "lib/python3.11/distutils/tests/test_install_lib.py", + "lib/python3.11/distutils/tests/test_install_scripts.py", + "lib/python3.11/distutils/tests/test_log.py", + "lib/python3.11/distutils/tests/test_msvc9compiler.py", + "lib/python3.11/distutils/tests/test_msvccompiler.py", + "lib/python3.11/distutils/tests/test_register.py", + "lib/python3.11/distutils/tests/test_sdist.py", + "lib/python3.11/distutils/tests/test_spawn.py", + "lib/python3.11/distutils/tests/test_sysconfig.py", + "lib/python3.11/distutils/tests/test_text_file.py", + "lib/python3.11/distutils/tests/test_unixccompiler.py", + "lib/python3.11/distutils/tests/test_upload.py", + "lib/python3.11/distutils/tests/test_util.py", + "lib/python3.11/distutils/tests/test_version.py", + "lib/python3.11/distutils/tests/test_versionpredicate.py", + "lib/python3.11/distutils/tests/xxmodule.c", + "lib/python3.11/distutils/text_file.py", + "lib/python3.11/distutils/unixccompiler.py", + "lib/python3.11/distutils/util.py", + "lib/python3.11/distutils/version.py", + "lib/python3.11/distutils/versionpredicate.py", + "lib/python3.11/doctest.py", + "lib/python3.11/email/__init__.py", + "lib/python3.11/email/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/email/__pycache__/_encoded_words.cpython-311.pyc", + "lib/python3.11/email/__pycache__/_header_value_parser.cpython-311.pyc", + "lib/python3.11/email/__pycache__/_parseaddr.cpython-311.pyc", + "lib/python3.11/email/__pycache__/_policybase.cpython-311.pyc", + "lib/python3.11/email/__pycache__/base64mime.cpython-311.pyc", + "lib/python3.11/email/__pycache__/charset.cpython-311.pyc", + "lib/python3.11/email/__pycache__/contentmanager.cpython-311.pyc", + "lib/python3.11/email/__pycache__/encoders.cpython-311.pyc", + "lib/python3.11/email/__pycache__/errors.cpython-311.pyc", + "lib/python3.11/email/__pycache__/feedparser.cpython-311.pyc", + "lib/python3.11/email/__pycache__/generator.cpython-311.pyc", + "lib/python3.11/email/__pycache__/header.cpython-311.pyc", + "lib/python3.11/email/__pycache__/headerregistry.cpython-311.pyc", + "lib/python3.11/email/__pycache__/iterators.cpython-311.pyc", + "lib/python3.11/email/__pycache__/message.cpython-311.pyc", + "lib/python3.11/email/__pycache__/parser.cpython-311.pyc", + "lib/python3.11/email/__pycache__/policy.cpython-311.pyc", + "lib/python3.11/email/__pycache__/quoprimime.cpython-311.pyc", + "lib/python3.11/email/__pycache__/utils.cpython-311.pyc", + "lib/python3.11/email/_encoded_words.py", + "lib/python3.11/email/_header_value_parser.py", + "lib/python3.11/email/_parseaddr.py", + "lib/python3.11/email/_policybase.py", + "lib/python3.11/email/architecture.rst", + "lib/python3.11/email/base64mime.py", + "lib/python3.11/email/charset.py", + "lib/python3.11/email/contentmanager.py", + "lib/python3.11/email/encoders.py", + "lib/python3.11/email/errors.py", + "lib/python3.11/email/feedparser.py", + "lib/python3.11/email/generator.py", + "lib/python3.11/email/header.py", + "lib/python3.11/email/headerregistry.py", + "lib/python3.11/email/iterators.py", + "lib/python3.11/email/message.py", + "lib/python3.11/email/mime/__init__.py", + "lib/python3.11/email/mime/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/application.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/audio.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/base.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/image.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/message.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/multipart.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/nonmultipart.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/text.cpython-311.pyc", + "lib/python3.11/email/mime/application.py", + "lib/python3.11/email/mime/audio.py", + "lib/python3.11/email/mime/base.py", + "lib/python3.11/email/mime/image.py", + "lib/python3.11/email/mime/message.py", + "lib/python3.11/email/mime/multipart.py", + "lib/python3.11/email/mime/nonmultipart.py", + "lib/python3.11/email/mime/text.py", + "lib/python3.11/email/parser.py", + "lib/python3.11/email/policy.py", + "lib/python3.11/email/quoprimime.py", + "lib/python3.11/email/utils.py", + "lib/python3.11/encodings/__init__.py", + "lib/python3.11/encodings/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/aliases.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/ascii.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/base64_codec.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/big5.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/big5hkscs.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/bz2_codec.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/charmap.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp037.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1006.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1026.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1125.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1140.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1250.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1251.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1252.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1253.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1254.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1255.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1256.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1257.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1258.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp273.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp424.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp437.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp500.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp720.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp737.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp775.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp850.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp852.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp855.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp856.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp857.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp858.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp860.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp861.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp862.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp863.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp864.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp865.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp866.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp869.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp874.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp875.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp932.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp949.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp950.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/euc_jis_2004.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/euc_jisx0213.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/euc_jp.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/euc_kr.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/gb18030.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/gb2312.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/gbk.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/hex_codec.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/hp_roman8.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/hz.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/idna.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_jp.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_jp_1.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_jp_2.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_jp_2004.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_jp_3.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_jp_ext.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_kr.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_1.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_10.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_11.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_13.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_14.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_15.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_16.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_2.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_3.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_4.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_5.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_6.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_7.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_8.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_9.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/johab.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/koi8_r.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/koi8_t.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/koi8_u.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/kz1048.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/latin_1.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_arabic.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_croatian.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_cyrillic.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_farsi.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_greek.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_iceland.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_latin2.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_roman.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_romanian.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_turkish.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mbcs.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/oem.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/palmos.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/ptcp154.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/punycode.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/quopri_codec.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/raw_unicode_escape.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/rot_13.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/shift_jis.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/shift_jis_2004.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/shift_jisx0213.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/tis_620.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/undefined.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/unicode_escape.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_16.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_16_be.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_16_le.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_32.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_32_be.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_32_le.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_7.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_8.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_8_sig.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/uu_codec.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/zlib_codec.cpython-311.pyc", + "lib/python3.11/encodings/aliases.py", + "lib/python3.11/encodings/ascii.py", + "lib/python3.11/encodings/base64_codec.py", + "lib/python3.11/encodings/big5.py", + "lib/python3.11/encodings/big5hkscs.py", + "lib/python3.11/encodings/bz2_codec.py", + "lib/python3.11/encodings/charmap.py", + "lib/python3.11/encodings/cp037.py", + "lib/python3.11/encodings/cp1006.py", + "lib/python3.11/encodings/cp1026.py", + "lib/python3.11/encodings/cp1125.py", + "lib/python3.11/encodings/cp1140.py", + "lib/python3.11/encodings/cp1250.py", + "lib/python3.11/encodings/cp1251.py", + "lib/python3.11/encodings/cp1252.py", + "lib/python3.11/encodings/cp1253.py", + "lib/python3.11/encodings/cp1254.py", + "lib/python3.11/encodings/cp1255.py", + "lib/python3.11/encodings/cp1256.py", + "lib/python3.11/encodings/cp1257.py", + "lib/python3.11/encodings/cp1258.py", + "lib/python3.11/encodings/cp273.py", + "lib/python3.11/encodings/cp424.py", + "lib/python3.11/encodings/cp437.py", + "lib/python3.11/encodings/cp500.py", + "lib/python3.11/encodings/cp720.py", + "lib/python3.11/encodings/cp737.py", + "lib/python3.11/encodings/cp775.py", + "lib/python3.11/encodings/cp850.py", + "lib/python3.11/encodings/cp852.py", + "lib/python3.11/encodings/cp855.py", + "lib/python3.11/encodings/cp856.py", + "lib/python3.11/encodings/cp857.py", + "lib/python3.11/encodings/cp858.py", + "lib/python3.11/encodings/cp860.py", + "lib/python3.11/encodings/cp861.py", + "lib/python3.11/encodings/cp862.py", + "lib/python3.11/encodings/cp863.py", + "lib/python3.11/encodings/cp864.py", + "lib/python3.11/encodings/cp865.py", + "lib/python3.11/encodings/cp866.py", + "lib/python3.11/encodings/cp869.py", + "lib/python3.11/encodings/cp874.py", + "lib/python3.11/encodings/cp875.py", + "lib/python3.11/encodings/cp932.py", + "lib/python3.11/encodings/cp949.py", + "lib/python3.11/encodings/cp950.py", + "lib/python3.11/encodings/euc_jis_2004.py", + "lib/python3.11/encodings/euc_jisx0213.py", + "lib/python3.11/encodings/euc_jp.py", + "lib/python3.11/encodings/euc_kr.py", + "lib/python3.11/encodings/gb18030.py", + "lib/python3.11/encodings/gb2312.py", + "lib/python3.11/encodings/gbk.py", + "lib/python3.11/encodings/hex_codec.py", + "lib/python3.11/encodings/hp_roman8.py", + "lib/python3.11/encodings/hz.py", + "lib/python3.11/encodings/idna.py", + "lib/python3.11/encodings/iso2022_jp.py", + "lib/python3.11/encodings/iso2022_jp_1.py", + "lib/python3.11/encodings/iso2022_jp_2.py", + "lib/python3.11/encodings/iso2022_jp_2004.py", + "lib/python3.11/encodings/iso2022_jp_3.py", + "lib/python3.11/encodings/iso2022_jp_ext.py", + "lib/python3.11/encodings/iso2022_kr.py", + "lib/python3.11/encodings/iso8859_1.py", + "lib/python3.11/encodings/iso8859_10.py", + "lib/python3.11/encodings/iso8859_11.py", + "lib/python3.11/encodings/iso8859_13.py", + "lib/python3.11/encodings/iso8859_14.py", + "lib/python3.11/encodings/iso8859_15.py", + "lib/python3.11/encodings/iso8859_16.py", + "lib/python3.11/encodings/iso8859_2.py", + "lib/python3.11/encodings/iso8859_3.py", + "lib/python3.11/encodings/iso8859_4.py", + "lib/python3.11/encodings/iso8859_5.py", + "lib/python3.11/encodings/iso8859_6.py", + "lib/python3.11/encodings/iso8859_7.py", + "lib/python3.11/encodings/iso8859_8.py", + "lib/python3.11/encodings/iso8859_9.py", + "lib/python3.11/encodings/johab.py", + "lib/python3.11/encodings/koi8_r.py", + "lib/python3.11/encodings/koi8_t.py", + "lib/python3.11/encodings/koi8_u.py", + "lib/python3.11/encodings/kz1048.py", + "lib/python3.11/encodings/latin_1.py", + "lib/python3.11/encodings/mac_arabic.py", + "lib/python3.11/encodings/mac_croatian.py", + "lib/python3.11/encodings/mac_cyrillic.py", + "lib/python3.11/encodings/mac_farsi.py", + "lib/python3.11/encodings/mac_greek.py", + "lib/python3.11/encodings/mac_iceland.py", + "lib/python3.11/encodings/mac_latin2.py", + "lib/python3.11/encodings/mac_roman.py", + "lib/python3.11/encodings/mac_romanian.py", + "lib/python3.11/encodings/mac_turkish.py", + "lib/python3.11/encodings/mbcs.py", + "lib/python3.11/encodings/oem.py", + "lib/python3.11/encodings/palmos.py", + "lib/python3.11/encodings/ptcp154.py", + "lib/python3.11/encodings/punycode.py", + "lib/python3.11/encodings/quopri_codec.py", + "lib/python3.11/encodings/raw_unicode_escape.py", + "lib/python3.11/encodings/rot_13.py", + "lib/python3.11/encodings/shift_jis.py", + "lib/python3.11/encodings/shift_jis_2004.py", + "lib/python3.11/encodings/shift_jisx0213.py", + "lib/python3.11/encodings/tis_620.py", + "lib/python3.11/encodings/undefined.py", + "lib/python3.11/encodings/unicode_escape.py", + "lib/python3.11/encodings/utf_16.py", + "lib/python3.11/encodings/utf_16_be.py", + "lib/python3.11/encodings/utf_16_le.py", + "lib/python3.11/encodings/utf_32.py", + "lib/python3.11/encodings/utf_32_be.py", + "lib/python3.11/encodings/utf_32_le.py", + "lib/python3.11/encodings/utf_7.py", + "lib/python3.11/encodings/utf_8.py", + "lib/python3.11/encodings/utf_8_sig.py", + "lib/python3.11/encodings/uu_codec.py", + "lib/python3.11/encodings/zlib_codec.py", + "lib/python3.11/ensurepip/__init__.py", + "lib/python3.11/ensurepip/__main__.py", + "lib/python3.11/ensurepip/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/ensurepip/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/ensurepip/__pycache__/_uninstall.cpython-311.pyc", + "lib/python3.11/ensurepip/_bundled/pip-23.2.1-py3-none-any.whl", + "lib/python3.11/ensurepip/_bundled/setuptools-65.5.0-py3-none-any.whl", + "lib/python3.11/ensurepip/_uninstall.py", + "lib/python3.11/enum.py", + "lib/python3.11/filecmp.py", + "lib/python3.11/fileinput.py", + "lib/python3.11/fnmatch.py", + "lib/python3.11/fractions.py", + "lib/python3.11/ftplib.py", + "lib/python3.11/functools.py", + "lib/python3.11/genericpath.py", + "lib/python3.11/getopt.py", + "lib/python3.11/getpass.py", + "lib/python3.11/gettext.py", + "lib/python3.11/glob.py", + "lib/python3.11/graphlib.py", + "lib/python3.11/gzip.py", + "lib/python3.11/hashlib.py", + "lib/python3.11/heapq.py", + "lib/python3.11/hmac.py", + "lib/python3.11/html/__init__.py", + "lib/python3.11/html/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/html/__pycache__/entities.cpython-311.pyc", + "lib/python3.11/html/__pycache__/parser.cpython-311.pyc", + "lib/python3.11/html/entities.py", + "lib/python3.11/html/parser.py", + "lib/python3.11/http/__init__.py", + "lib/python3.11/http/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/http/__pycache__/client.cpython-311.pyc", + "lib/python3.11/http/__pycache__/cookiejar.cpython-311.pyc", + "lib/python3.11/http/__pycache__/cookies.cpython-311.pyc", + "lib/python3.11/http/__pycache__/server.cpython-311.pyc", + "lib/python3.11/http/client.py", + "lib/python3.11/http/cookiejar.py", + "lib/python3.11/http/cookies.py", + "lib/python3.11/http/server.py", + "lib/python3.11/idlelib/CREDITS.txt", + "lib/python3.11/idlelib/ChangeLog", + "lib/python3.11/idlelib/HISTORY.txt", + "lib/python3.11/idlelib/Icons/README.txt", + "lib/python3.11/idlelib/Icons/folder.gif", + "lib/python3.11/idlelib/Icons/idle.ico", + "lib/python3.11/idlelib/Icons/idle_16.gif", + "lib/python3.11/idlelib/Icons/idle_16.png", + "lib/python3.11/idlelib/Icons/idle_256.png", + "lib/python3.11/idlelib/Icons/idle_32.gif", + "lib/python3.11/idlelib/Icons/idle_32.png", + "lib/python3.11/idlelib/Icons/idle_48.gif", + "lib/python3.11/idlelib/Icons/idle_48.png", + "lib/python3.11/idlelib/Icons/minusnode.gif", + "lib/python3.11/idlelib/Icons/openfolder.gif", + "lib/python3.11/idlelib/Icons/plusnode.gif", + "lib/python3.11/idlelib/Icons/python.gif", + "lib/python3.11/idlelib/Icons/tk.gif", + "lib/python3.11/idlelib/NEWS.txt", + "lib/python3.11/idlelib/NEWS2x.txt", + "lib/python3.11/idlelib/README.txt", + "lib/python3.11/idlelib/TODO.txt", + "lib/python3.11/idlelib/__init__.py", + "lib/python3.11/idlelib/__main__.py", + "lib/python3.11/idlelib/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/autocomplete.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/autocomplete_w.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/autoexpand.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/browser.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/calltip.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/calltip_w.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/codecontext.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/colorizer.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/config.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/config_key.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/configdialog.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/debugger.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/debugger_r.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/debugobj.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/debugobj_r.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/delegator.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/dynoption.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/editor.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/filelist.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/format.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/grep.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/help.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/help_about.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/history.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/hyperparser.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/idle.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/iomenu.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/macosx.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/mainmenu.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/multicall.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/outwin.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/parenmatch.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/pathbrowser.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/percolator.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/pyparse.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/pyshell.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/query.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/redirector.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/replace.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/rpc.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/run.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/runscript.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/scrolledlist.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/search.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/searchbase.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/searchengine.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/sidebar.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/squeezer.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/stackviewer.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/statusbar.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/textview.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/tooltip.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/tree.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/undo.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/util.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/window.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/zoomheight.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/zzdummy.cpython-311.pyc", + "lib/python3.11/idlelib/autocomplete.py", + "lib/python3.11/idlelib/autocomplete_w.py", + "lib/python3.11/idlelib/autoexpand.py", + "lib/python3.11/idlelib/browser.py", + "lib/python3.11/idlelib/calltip.py", + "lib/python3.11/idlelib/calltip_w.py", + "lib/python3.11/idlelib/codecontext.py", + "lib/python3.11/idlelib/colorizer.py", + "lib/python3.11/idlelib/config-extensions.def", + "lib/python3.11/idlelib/config-highlight.def", + "lib/python3.11/idlelib/config-keys.def", + "lib/python3.11/idlelib/config-main.def", + "lib/python3.11/idlelib/config.py", + "lib/python3.11/idlelib/config_key.py", + "lib/python3.11/idlelib/configdialog.py", + "lib/python3.11/idlelib/debugger.py", + "lib/python3.11/idlelib/debugger_r.py", + "lib/python3.11/idlelib/debugobj.py", + "lib/python3.11/idlelib/debugobj_r.py", + "lib/python3.11/idlelib/delegator.py", + "lib/python3.11/idlelib/dynoption.py", + "lib/python3.11/idlelib/editor.py", + "lib/python3.11/idlelib/extend.txt", + "lib/python3.11/idlelib/filelist.py", + "lib/python3.11/idlelib/format.py", + "lib/python3.11/idlelib/grep.py", + "lib/python3.11/idlelib/help.html", + "lib/python3.11/idlelib/help.py", + "lib/python3.11/idlelib/help_about.py", + "lib/python3.11/idlelib/history.py", + "lib/python3.11/idlelib/hyperparser.py", + "lib/python3.11/idlelib/idle.bat", + "lib/python3.11/idlelib/idle.py", + "lib/python3.11/idlelib/idle.pyw", + "lib/python3.11/idlelib/idle_test/README.txt", + "lib/python3.11/idlelib/idle_test/__init__.py", + "lib/python3.11/idlelib/idle_test/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/htest.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/mock_idle.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/mock_tk.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/template.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_autocomplete.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_autocomplete_w.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_autoexpand.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_browser.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_calltip.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_calltip_w.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_codecontext.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_colorizer.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_config.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_config_key.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_configdialog.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_debugger.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_debugger_r.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_debugobj.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_debugobj_r.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_delegator.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_editmenu.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_editor.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_filelist.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_format.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_grep.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_help.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_help_about.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_history.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_hyperparser.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_iomenu.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_macosx.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_mainmenu.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_multicall.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_outwin.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_parenmatch.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_pathbrowser.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_percolator.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_pyparse.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_pyshell.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_query.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_redirector.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_replace.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_rpc.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_run.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_runscript.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_scrolledlist.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_search.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_searchbase.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_searchengine.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_sidebar.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_squeezer.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_stackviewer.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_statusbar.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_text.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_textview.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_tooltip.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_tree.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_undo.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_util.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_warning.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_window.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_zoomheight.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_zzdummy.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/tkinter_testing_utils.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/example_noext", + "lib/python3.11/idlelib/idle_test/example_stub.pyi", + "lib/python3.11/idlelib/idle_test/htest.py", + "lib/python3.11/idlelib/idle_test/mock_idle.py", + "lib/python3.11/idlelib/idle_test/mock_tk.py", + "lib/python3.11/idlelib/idle_test/template.py", + "lib/python3.11/idlelib/idle_test/test_autocomplete.py", + "lib/python3.11/idlelib/idle_test/test_autocomplete_w.py", + "lib/python3.11/idlelib/idle_test/test_autoexpand.py", + "lib/python3.11/idlelib/idle_test/test_browser.py", + "lib/python3.11/idlelib/idle_test/test_calltip.py", + "lib/python3.11/idlelib/idle_test/test_calltip_w.py", + "lib/python3.11/idlelib/idle_test/test_codecontext.py", + "lib/python3.11/idlelib/idle_test/test_colorizer.py", + "lib/python3.11/idlelib/idle_test/test_config.py", + "lib/python3.11/idlelib/idle_test/test_config_key.py", + "lib/python3.11/idlelib/idle_test/test_configdialog.py", + "lib/python3.11/idlelib/idle_test/test_debugger.py", + "lib/python3.11/idlelib/idle_test/test_debugger_r.py", + "lib/python3.11/idlelib/idle_test/test_debugobj.py", + "lib/python3.11/idlelib/idle_test/test_debugobj_r.py", + "lib/python3.11/idlelib/idle_test/test_delegator.py", + "lib/python3.11/idlelib/idle_test/test_editmenu.py", + "lib/python3.11/idlelib/idle_test/test_editor.py", + "lib/python3.11/idlelib/idle_test/test_filelist.py", + "lib/python3.11/idlelib/idle_test/test_format.py", + "lib/python3.11/idlelib/idle_test/test_grep.py", + "lib/python3.11/idlelib/idle_test/test_help.py", + "lib/python3.11/idlelib/idle_test/test_help_about.py", + "lib/python3.11/idlelib/idle_test/test_history.py", + "lib/python3.11/idlelib/idle_test/test_hyperparser.py", + "lib/python3.11/idlelib/idle_test/test_iomenu.py", + "lib/python3.11/idlelib/idle_test/test_macosx.py", + "lib/python3.11/idlelib/idle_test/test_mainmenu.py", + "lib/python3.11/idlelib/idle_test/test_multicall.py", + "lib/python3.11/idlelib/idle_test/test_outwin.py", + "lib/python3.11/idlelib/idle_test/test_parenmatch.py", + "lib/python3.11/idlelib/idle_test/test_pathbrowser.py", + "lib/python3.11/idlelib/idle_test/test_percolator.py", + "lib/python3.11/idlelib/idle_test/test_pyparse.py", + "lib/python3.11/idlelib/idle_test/test_pyshell.py", + "lib/python3.11/idlelib/idle_test/test_query.py", + "lib/python3.11/idlelib/idle_test/test_redirector.py", + "lib/python3.11/idlelib/idle_test/test_replace.py", + "lib/python3.11/idlelib/idle_test/test_rpc.py", + "lib/python3.11/idlelib/idle_test/test_run.py", + "lib/python3.11/idlelib/idle_test/test_runscript.py", + "lib/python3.11/idlelib/idle_test/test_scrolledlist.py", + "lib/python3.11/idlelib/idle_test/test_search.py", + "lib/python3.11/idlelib/idle_test/test_searchbase.py", + "lib/python3.11/idlelib/idle_test/test_searchengine.py", + "lib/python3.11/idlelib/idle_test/test_sidebar.py", + "lib/python3.11/idlelib/idle_test/test_squeezer.py", + "lib/python3.11/idlelib/idle_test/test_stackviewer.py", + "lib/python3.11/idlelib/idle_test/test_statusbar.py", + "lib/python3.11/idlelib/idle_test/test_text.py", + "lib/python3.11/idlelib/idle_test/test_textview.py", + "lib/python3.11/idlelib/idle_test/test_tooltip.py", + "lib/python3.11/idlelib/idle_test/test_tree.py", + "lib/python3.11/idlelib/idle_test/test_undo.py", + "lib/python3.11/idlelib/idle_test/test_util.py", + "lib/python3.11/idlelib/idle_test/test_warning.py", + "lib/python3.11/idlelib/idle_test/test_window.py", + "lib/python3.11/idlelib/idle_test/test_zoomheight.py", + "lib/python3.11/idlelib/idle_test/test_zzdummy.py", + "lib/python3.11/idlelib/idle_test/tkinter_testing_utils.py", + "lib/python3.11/idlelib/iomenu.py", + "lib/python3.11/idlelib/macosx.py", + "lib/python3.11/idlelib/mainmenu.py", + "lib/python3.11/idlelib/multicall.py", + "lib/python3.11/idlelib/outwin.py", + "lib/python3.11/idlelib/parenmatch.py", + "lib/python3.11/idlelib/pathbrowser.py", + "lib/python3.11/idlelib/percolator.py", + "lib/python3.11/idlelib/pyparse.py", + "lib/python3.11/idlelib/pyshell.py", + "lib/python3.11/idlelib/query.py", + "lib/python3.11/idlelib/redirector.py", + "lib/python3.11/idlelib/replace.py", + "lib/python3.11/idlelib/rpc.py", + "lib/python3.11/idlelib/run.py", + "lib/python3.11/idlelib/runscript.py", + "lib/python3.11/idlelib/scrolledlist.py", + "lib/python3.11/idlelib/search.py", + "lib/python3.11/idlelib/searchbase.py", + "lib/python3.11/idlelib/searchengine.py", + "lib/python3.11/idlelib/sidebar.py", + "lib/python3.11/idlelib/squeezer.py", + "lib/python3.11/idlelib/stackviewer.py", + "lib/python3.11/idlelib/statusbar.py", + "lib/python3.11/idlelib/textview.py", + "lib/python3.11/idlelib/tooltip.py", + "lib/python3.11/idlelib/tree.py", + "lib/python3.11/idlelib/undo.py", + "lib/python3.11/idlelib/util.py", + "lib/python3.11/idlelib/window.py", + "lib/python3.11/idlelib/zoomheight.py", + "lib/python3.11/idlelib/zzdummy.py", + "lib/python3.11/imaplib.py", + "lib/python3.11/imghdr.py", + "lib/python3.11/imp.py", + "lib/python3.11/importlib/__init__.py", + "lib/python3.11/importlib/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/_abc.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/_bootstrap.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/_bootstrap_external.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/abc.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/machinery.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/readers.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/simple.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/util.cpython-311.pyc", + "lib/python3.11/importlib/_abc.py", + "lib/python3.11/importlib/_bootstrap.py", + "lib/python3.11/importlib/_bootstrap_external.py", + "lib/python3.11/importlib/abc.py", + "lib/python3.11/importlib/machinery.py", + "lib/python3.11/importlib/metadata/__init__.py", + "lib/python3.11/importlib/metadata/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/importlib/metadata/__pycache__/_adapters.cpython-311.pyc", + "lib/python3.11/importlib/metadata/__pycache__/_collections.cpython-311.pyc", + "lib/python3.11/importlib/metadata/__pycache__/_functools.cpython-311.pyc", + "lib/python3.11/importlib/metadata/__pycache__/_itertools.cpython-311.pyc", + "lib/python3.11/importlib/metadata/__pycache__/_meta.cpython-311.pyc", + "lib/python3.11/importlib/metadata/__pycache__/_text.cpython-311.pyc", + "lib/python3.11/importlib/metadata/_adapters.py", + "lib/python3.11/importlib/metadata/_collections.py", + "lib/python3.11/importlib/metadata/_functools.py", + "lib/python3.11/importlib/metadata/_itertools.py", + "lib/python3.11/importlib/metadata/_meta.py", + "lib/python3.11/importlib/metadata/_text.py", + "lib/python3.11/importlib/readers.py", + "lib/python3.11/importlib/resources/__init__.py", + "lib/python3.11/importlib/resources/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/_adapters.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/_common.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/_itertools.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/_legacy.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/abc.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/readers.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/simple.cpython-311.pyc", + "lib/python3.11/importlib/resources/_adapters.py", + "lib/python3.11/importlib/resources/_common.py", + "lib/python3.11/importlib/resources/_itertools.py", + "lib/python3.11/importlib/resources/_legacy.py", + "lib/python3.11/importlib/resources/abc.py", + "lib/python3.11/importlib/resources/readers.py", + "lib/python3.11/importlib/resources/simple.py", + "lib/python3.11/importlib/simple.py", + "lib/python3.11/importlib/util.py", + "lib/python3.11/inspect.py", + "lib/python3.11/io.py", + "lib/python3.11/ipaddress.py", + "lib/python3.11/json/__init__.py", + "lib/python3.11/json/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/json/__pycache__/decoder.cpython-311.pyc", + "lib/python3.11/json/__pycache__/encoder.cpython-311.pyc", + "lib/python3.11/json/__pycache__/scanner.cpython-311.pyc", + "lib/python3.11/json/__pycache__/tool.cpython-311.pyc", + "lib/python3.11/json/decoder.py", + "lib/python3.11/json/encoder.py", + "lib/python3.11/json/scanner.py", + "lib/python3.11/json/tool.py", + "lib/python3.11/keyword.py", + "lib/python3.11/lib-dynload/_asyncio.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_bisect.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_blake2.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_bz2.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_codecs_cn.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_codecs_hk.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_codecs_iso2022.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_codecs_jp.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_codecs_kr.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_codecs_tw.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_contextvars.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_crypt.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_csv.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_ctypes.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_ctypes_test.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_curses.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_curses_panel.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_datetime.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_dbm.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_decimal.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_elementtree.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_hashlib.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_heapq.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_json.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_lsprof.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_lzma.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_md5.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_multibytecodec.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_multiprocessing.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_opcode.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_pickle.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_posixshmem.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_posixsubprocess.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_queue.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_random.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_scproxy.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_sha1.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_sha256.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_sha3.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_sha512.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_socket.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_sqlite3.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_ssl.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_statistics.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_struct.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_testbuffer.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_testcapi.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_testclinic.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_testimportmultiple.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_testinternalcapi.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_testmultiphase.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_tkinter.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_typing.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_uuid.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_xxsubinterpreters.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_xxtestfuzz.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_zoneinfo.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/array.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/audioop.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/binascii.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/cmath.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/fcntl.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/grp.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/math.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/mmap.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/nis.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/pyexpat.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/readline.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/resource.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/select.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/syslog.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/termios.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/unicodedata.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/xxlimited.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/xxlimited_35.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/zlib.cpython-311-darwin.so", + "lib/python3.11/lib2to3/Grammar.txt", + "lib/python3.11/lib2to3/Grammar3.11.5.final.0.pickle", + "lib/python3.11/lib2to3/PatternGrammar.txt", + "lib/python3.11/lib2to3/PatternGrammar3.11.5.final.0.pickle", + "lib/python3.11/lib2to3/__init__.py", + "lib/python3.11/lib2to3/__main__.py", + "lib/python3.11/lib2to3/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/btm_matcher.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/btm_utils.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/fixer_base.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/fixer_util.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/main.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/patcomp.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/pygram.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/pytree.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/refactor.cpython-311.pyc", + "lib/python3.11/lib2to3/btm_matcher.py", + "lib/python3.11/lib2to3/btm_utils.py", + "lib/python3.11/lib2to3/fixer_base.py", + "lib/python3.11/lib2to3/fixer_util.py", + "lib/python3.11/lib2to3/fixes/__init__.py", + "lib/python3.11/lib2to3/fixes/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_apply.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_asserts.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_basestring.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_buffer.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_dict.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_except.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_exec.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_execfile.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_exitfunc.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_filter.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_funcattrs.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_future.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_getcwdu.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_has_key.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_idioms.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_import.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_imports.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_imports2.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_input.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_intern.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_isinstance.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_itertools.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_itertools_imports.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_long.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_map.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_metaclass.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_methodattrs.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_ne.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_next.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_nonzero.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_numliterals.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_operator.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_paren.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_print.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_raise.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_raw_input.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_reduce.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_reload.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_renames.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_repr.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_set_literal.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_standarderror.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_sys_exc.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_throw.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_tuple_params.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_types.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_unicode.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_urllib.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_ws_comma.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_xrange.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_xreadlines.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_zip.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/fix_apply.py", + "lib/python3.11/lib2to3/fixes/fix_asserts.py", + "lib/python3.11/lib2to3/fixes/fix_basestring.py", + "lib/python3.11/lib2to3/fixes/fix_buffer.py", + "lib/python3.11/lib2to3/fixes/fix_dict.py", + "lib/python3.11/lib2to3/fixes/fix_except.py", + "lib/python3.11/lib2to3/fixes/fix_exec.py", + "lib/python3.11/lib2to3/fixes/fix_execfile.py", + "lib/python3.11/lib2to3/fixes/fix_exitfunc.py", + "lib/python3.11/lib2to3/fixes/fix_filter.py", + "lib/python3.11/lib2to3/fixes/fix_funcattrs.py", + "lib/python3.11/lib2to3/fixes/fix_future.py", + "lib/python3.11/lib2to3/fixes/fix_getcwdu.py", + "lib/python3.11/lib2to3/fixes/fix_has_key.py", + "lib/python3.11/lib2to3/fixes/fix_idioms.py", + "lib/python3.11/lib2to3/fixes/fix_import.py", + "lib/python3.11/lib2to3/fixes/fix_imports.py", + "lib/python3.11/lib2to3/fixes/fix_imports2.py", + "lib/python3.11/lib2to3/fixes/fix_input.py", + "lib/python3.11/lib2to3/fixes/fix_intern.py", + "lib/python3.11/lib2to3/fixes/fix_isinstance.py", + "lib/python3.11/lib2to3/fixes/fix_itertools.py", + "lib/python3.11/lib2to3/fixes/fix_itertools_imports.py", + "lib/python3.11/lib2to3/fixes/fix_long.py", + "lib/python3.11/lib2to3/fixes/fix_map.py", + "lib/python3.11/lib2to3/fixes/fix_metaclass.py", + "lib/python3.11/lib2to3/fixes/fix_methodattrs.py", + "lib/python3.11/lib2to3/fixes/fix_ne.py", + "lib/python3.11/lib2to3/fixes/fix_next.py", + "lib/python3.11/lib2to3/fixes/fix_nonzero.py", + "lib/python3.11/lib2to3/fixes/fix_numliterals.py", + "lib/python3.11/lib2to3/fixes/fix_operator.py", + "lib/python3.11/lib2to3/fixes/fix_paren.py", + "lib/python3.11/lib2to3/fixes/fix_print.py", + "lib/python3.11/lib2to3/fixes/fix_raise.py", + "lib/python3.11/lib2to3/fixes/fix_raw_input.py", + "lib/python3.11/lib2to3/fixes/fix_reduce.py", + "lib/python3.11/lib2to3/fixes/fix_reload.py", + "lib/python3.11/lib2to3/fixes/fix_renames.py", + "lib/python3.11/lib2to3/fixes/fix_repr.py", + "lib/python3.11/lib2to3/fixes/fix_set_literal.py", + "lib/python3.11/lib2to3/fixes/fix_standarderror.py", + "lib/python3.11/lib2to3/fixes/fix_sys_exc.py", + "lib/python3.11/lib2to3/fixes/fix_throw.py", + "lib/python3.11/lib2to3/fixes/fix_tuple_params.py", + "lib/python3.11/lib2to3/fixes/fix_types.py", + "lib/python3.11/lib2to3/fixes/fix_unicode.py", + "lib/python3.11/lib2to3/fixes/fix_urllib.py", + "lib/python3.11/lib2to3/fixes/fix_ws_comma.py", + "lib/python3.11/lib2to3/fixes/fix_xrange.py", + "lib/python3.11/lib2to3/fixes/fix_xreadlines.py", + "lib/python3.11/lib2to3/fixes/fix_zip.py", + "lib/python3.11/lib2to3/main.py", + "lib/python3.11/lib2to3/patcomp.py", + "lib/python3.11/lib2to3/pgen2/__init__.py", + "lib/python3.11/lib2to3/pgen2/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/conv.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/driver.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/grammar.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/literals.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/parse.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/pgen.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/token.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/tokenize.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/conv.py", + "lib/python3.11/lib2to3/pgen2/driver.py", + "lib/python3.11/lib2to3/pgen2/grammar.py", + "lib/python3.11/lib2to3/pgen2/literals.py", + "lib/python3.11/lib2to3/pgen2/parse.py", + "lib/python3.11/lib2to3/pgen2/pgen.py", + "lib/python3.11/lib2to3/pgen2/token.py", + "lib/python3.11/lib2to3/pgen2/tokenize.py", + "lib/python3.11/lib2to3/pygram.py", + "lib/python3.11/lib2to3/pytree.py", + "lib/python3.11/lib2to3/refactor.py", + "lib/python3.11/lib2to3/tests/__init__.py", + "lib/python3.11/lib2to3/tests/__main__.py", + "lib/python3.11/lib2to3/tests/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/pytree_idempotency.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/support.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_all_fixers.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_fixers.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_main.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_parser.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_pytree.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_refactor.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_util.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/README", + "lib/python3.11/lib2to3/tests/data/__pycache__/infinite_recursion.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/__pycache__/py3_test_grammar.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/bom.py", + "lib/python3.11/lib2to3/tests/data/crlf.py", + "lib/python3.11/lib2to3/tests/data/different_encoding.py", + "lib/python3.11/lib2to3/tests/data/false_encoding.py", + "lib/python3.11/lib2to3/tests/data/fixers/__pycache__/bad_order.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/__pycache__/no_fixer_cls.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/__pycache__/parrot_example.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/bad_order.py", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__init__.py", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__pycache__/fix_explicit.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__pycache__/fix_first.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__pycache__/fix_last.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__pycache__/fix_parrot.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__pycache__/fix_preorder.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/fix_explicit.py", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/fix_first.py", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/fix_last.py", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/fix_parrot.py", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/fix_preorder.py", + "lib/python3.11/lib2to3/tests/data/fixers/no_fixer_cls.py", + "lib/python3.11/lib2to3/tests/data/fixers/parrot_example.py", + "lib/python3.11/lib2to3/tests/data/infinite_recursion.py", + "lib/python3.11/lib2to3/tests/data/py2_test_grammar.py", + "lib/python3.11/lib2to3/tests/data/py3_test_grammar.py", + "lib/python3.11/lib2to3/tests/pytree_idempotency.py", + "lib/python3.11/lib2to3/tests/support.py", + "lib/python3.11/lib2to3/tests/test_all_fixers.py", + "lib/python3.11/lib2to3/tests/test_fixers.py", + "lib/python3.11/lib2to3/tests/test_main.py", + "lib/python3.11/lib2to3/tests/test_parser.py", + "lib/python3.11/lib2to3/tests/test_pytree.py", + "lib/python3.11/lib2to3/tests/test_refactor.py", + "lib/python3.11/lib2to3/tests/test_util.py", + "lib/python3.11/linecache.py", + "lib/python3.11/locale.py", + "lib/python3.11/logging/__init__.py", + "lib/python3.11/logging/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/logging/__pycache__/config.cpython-311.pyc", + "lib/python3.11/logging/__pycache__/handlers.cpython-311.pyc", + "lib/python3.11/logging/config.py", + "lib/python3.11/logging/handlers.py", + "lib/python3.11/lzma.py", + "lib/python3.11/mailbox.py", + "lib/python3.11/mailcap.py", + "lib/python3.11/mimetypes.py", + "lib/python3.11/modulefinder.py", + "lib/python3.11/multiprocessing/__init__.py", + "lib/python3.11/multiprocessing/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/connection.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/context.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/forkserver.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/heap.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/managers.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/pool.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/popen_fork.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/popen_forkserver.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/popen_spawn_posix.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/popen_spawn_win32.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/process.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/queues.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/reduction.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/resource_sharer.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/resource_tracker.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/shared_memory.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/sharedctypes.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/spawn.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/synchronize.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/util.cpython-311.pyc", + "lib/python3.11/multiprocessing/connection.py", + "lib/python3.11/multiprocessing/context.py", + "lib/python3.11/multiprocessing/dummy/__init__.py", + "lib/python3.11/multiprocessing/dummy/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/multiprocessing/dummy/__pycache__/connection.cpython-311.pyc", + "lib/python3.11/multiprocessing/dummy/connection.py", + "lib/python3.11/multiprocessing/forkserver.py", + "lib/python3.11/multiprocessing/heap.py", + "lib/python3.11/multiprocessing/managers.py", + "lib/python3.11/multiprocessing/pool.py", + "lib/python3.11/multiprocessing/popen_fork.py", + "lib/python3.11/multiprocessing/popen_forkserver.py", + "lib/python3.11/multiprocessing/popen_spawn_posix.py", + "lib/python3.11/multiprocessing/popen_spawn_win32.py", + "lib/python3.11/multiprocessing/process.py", + "lib/python3.11/multiprocessing/queues.py", + "lib/python3.11/multiprocessing/reduction.py", + "lib/python3.11/multiprocessing/resource_sharer.py", + "lib/python3.11/multiprocessing/resource_tracker.py", + "lib/python3.11/multiprocessing/shared_memory.py", + "lib/python3.11/multiprocessing/sharedctypes.py", + "lib/python3.11/multiprocessing/spawn.py", + "lib/python3.11/multiprocessing/synchronize.py", + "lib/python3.11/multiprocessing/util.py", + "lib/python3.11/netrc.py", + "lib/python3.11/nntplib.py", + "lib/python3.11/ntpath.py", + "lib/python3.11/nturl2path.py", + "lib/python3.11/numbers.py", + "lib/python3.11/opcode.py", + "lib/python3.11/operator.py", + "lib/python3.11/optparse.py", + "lib/python3.11/os.py", + "lib/python3.11/pathlib.py", + "lib/python3.11/pdb.py", + "lib/python3.11/pickle.py", + "lib/python3.11/pickletools.py", + "lib/python3.11/pipes.py", + "lib/python3.11/pkgutil.py", + "lib/python3.11/platform.py", + "lib/python3.11/plistlib.py", + "lib/python3.11/poplib.py", + "lib/python3.11/posixpath.py", + "lib/python3.11/pprint.py", + "lib/python3.11/profile.py", + "lib/python3.11/pstats.py", + "lib/python3.11/pty.py", + "lib/python3.11/py_compile.py", + "lib/python3.11/pyclbr.py", + "lib/python3.11/pydoc.py", + "lib/python3.11/pydoc_data/__init__.py", + "lib/python3.11/pydoc_data/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/pydoc_data/__pycache__/topics.cpython-311.pyc", + "lib/python3.11/pydoc_data/_pydoc.css", + "lib/python3.11/pydoc_data/topics.py", + "lib/python3.11/queue.py", + "lib/python3.11/quopri.py", + "lib/python3.11/random.py", + "lib/python3.11/re/__init__.py", + "lib/python3.11/re/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/re/__pycache__/_casefix.cpython-311.pyc", + "lib/python3.11/re/__pycache__/_compiler.cpython-311.pyc", + "lib/python3.11/re/__pycache__/_constants.cpython-311.pyc", + "lib/python3.11/re/__pycache__/_parser.cpython-311.pyc", + "lib/python3.11/re/_casefix.py", + "lib/python3.11/re/_compiler.py", + "lib/python3.11/re/_constants.py", + "lib/python3.11/re/_parser.py", + "lib/python3.11/reprlib.py", + "lib/python3.11/rlcompleter.py", + "lib/python3.11/runpy.py", + "lib/python3.11/sched.py", + "lib/python3.11/secrets.py", + "lib/python3.11/selectors.py", + "lib/python3.11/shelve.py", + "lib/python3.11/shlex.py", + "lib/python3.11/shutil.py", + "lib/python3.11/signal.py", + "lib/python3.11/site-packages/README.txt", + "lib/python3.11/site.py", + "lib/python3.11/smtpd.py", + "lib/python3.11/smtplib.py", + "lib/python3.11/sndhdr.py", + "lib/python3.11/socket.py", + "lib/python3.11/socketserver.py", + "lib/python3.11/sqlite3/__init__.py", + "lib/python3.11/sqlite3/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/sqlite3/__pycache__/dbapi2.cpython-311.pyc", + "lib/python3.11/sqlite3/__pycache__/dump.cpython-311.pyc", + "lib/python3.11/sqlite3/dbapi2.py", + "lib/python3.11/sqlite3/dump.py", + "lib/python3.11/sre_compile.py", + "lib/python3.11/sre_constants.py", + "lib/python3.11/sre_parse.py", + "lib/python3.11/ssl.py", + "lib/python3.11/stat.py", + "lib/python3.11/statistics.py", + "lib/python3.11/string.py", + "lib/python3.11/stringprep.py", + "lib/python3.11/struct.py", + "lib/python3.11/subprocess.py", + "lib/python3.11/sunau.py", + "lib/python3.11/symtable.py", + "lib/python3.11/sysconfig.py", + "lib/python3.11/tabnanny.py", + "lib/python3.11/tarfile.py", + "lib/python3.11/telnetlib.py", + "lib/python3.11/tempfile.py", + "lib/python3.11/test/__init__.py", + "lib/python3.11/test/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/test/__pycache__/test_script_helper.cpython-311.pyc", + "lib/python3.11/test/__pycache__/test_support.cpython-311.pyc", + "lib/python3.11/test/support/__init__.py", + "lib/python3.11/test/support/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/bytecode_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/hashlib_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/import_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/interpreters.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/logging_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/os_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/script_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/socket_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/testresult.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/threading_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/warnings_helper.cpython-311.pyc", + "lib/python3.11/test/support/bytecode_helper.py", + "lib/python3.11/test/support/hashlib_helper.py", + "lib/python3.11/test/support/import_helper.py", + "lib/python3.11/test/support/interpreters.py", + "lib/python3.11/test/support/logging_helper.py", + "lib/python3.11/test/support/os_helper.py", + "lib/python3.11/test/support/script_helper.py", + "lib/python3.11/test/support/socket_helper.py", + "lib/python3.11/test/support/testresult.py", + "lib/python3.11/test/support/threading_helper.py", + "lib/python3.11/test/support/warnings_helper.py", + "lib/python3.11/test/test_script_helper.py", + "lib/python3.11/test/test_support.py", + "lib/python3.11/textwrap.py", + "lib/python3.11/this.py", + "lib/python3.11/threading.py", + "lib/python3.11/timeit.py", + "lib/python3.11/tkinter/__init__.py", + "lib/python3.11/tkinter/__main__.py", + "lib/python3.11/tkinter/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/colorchooser.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/commondialog.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/constants.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/dialog.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/dnd.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/filedialog.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/font.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/messagebox.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/scrolledtext.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/simpledialog.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/tix.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/ttk.cpython-311.pyc", + "lib/python3.11/tkinter/colorchooser.py", + "lib/python3.11/tkinter/commondialog.py", + "lib/python3.11/tkinter/constants.py", + "lib/python3.11/tkinter/dialog.py", + "lib/python3.11/tkinter/dnd.py", + "lib/python3.11/tkinter/filedialog.py", + "lib/python3.11/tkinter/font.py", + "lib/python3.11/tkinter/messagebox.py", + "lib/python3.11/tkinter/scrolledtext.py", + "lib/python3.11/tkinter/simpledialog.py", + "lib/python3.11/tkinter/tix.py", + "lib/python3.11/tkinter/ttk.py", + "lib/python3.11/token.py", + "lib/python3.11/tokenize.py", + "lib/python3.11/tomllib/__init__.py", + "lib/python3.11/tomllib/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/tomllib/__pycache__/_parser.cpython-311.pyc", + "lib/python3.11/tomllib/__pycache__/_re.cpython-311.pyc", + "lib/python3.11/tomllib/__pycache__/_types.cpython-311.pyc", + "lib/python3.11/tomllib/_parser.py", + "lib/python3.11/tomllib/_re.py", + "lib/python3.11/tomllib/_types.py", + "lib/python3.11/trace.py", + "lib/python3.11/traceback.py", + "lib/python3.11/tracemalloc.py", + "lib/python3.11/tty.py", + "lib/python3.11/turtle.py", + "lib/python3.11/turtledemo/__init__.py", + "lib/python3.11/turtledemo/__main__.py", + "lib/python3.11/turtledemo/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/bytedesign.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/chaos.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/clock.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/colormixer.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/forest.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/fractalcurves.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/lindenmayer.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/minimal_hanoi.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/nim.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/paint.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/peace.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/penrose.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/planet_and_moon.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/rosette.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/round_dance.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/sorting_animate.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/tree.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/two_canvases.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/yinyang.cpython-311.pyc", + "lib/python3.11/turtledemo/bytedesign.py", + "lib/python3.11/turtledemo/chaos.py", + "lib/python3.11/turtledemo/clock.py", + "lib/python3.11/turtledemo/colormixer.py", + "lib/python3.11/turtledemo/forest.py", + "lib/python3.11/turtledemo/fractalcurves.py", + "lib/python3.11/turtledemo/lindenmayer.py", + "lib/python3.11/turtledemo/minimal_hanoi.py", + "lib/python3.11/turtledemo/nim.py", + "lib/python3.11/turtledemo/paint.py", + "lib/python3.11/turtledemo/peace.py", + "lib/python3.11/turtledemo/penrose.py", + "lib/python3.11/turtledemo/planet_and_moon.py", + "lib/python3.11/turtledemo/rosette.py", + "lib/python3.11/turtledemo/round_dance.py", + "lib/python3.11/turtledemo/sorting_animate.py", + "lib/python3.11/turtledemo/tree.py", + "lib/python3.11/turtledemo/turtle.cfg", + "lib/python3.11/turtledemo/two_canvases.py", + "lib/python3.11/turtledemo/yinyang.py", + "lib/python3.11/types.py", + "lib/python3.11/typing.py", + "lib/python3.11/unittest/__init__.py", + "lib/python3.11/unittest/__main__.py", + "lib/python3.11/unittest/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/_log.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/async_case.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/case.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/loader.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/main.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/mock.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/result.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/runner.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/signals.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/suite.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/util.cpython-311.pyc", + "lib/python3.11/unittest/_log.py", + "lib/python3.11/unittest/async_case.py", + "lib/python3.11/unittest/case.py", + "lib/python3.11/unittest/loader.py", + "lib/python3.11/unittest/main.py", + "lib/python3.11/unittest/mock.py", + "lib/python3.11/unittest/result.py", + "lib/python3.11/unittest/runner.py", + "lib/python3.11/unittest/signals.py", + "lib/python3.11/unittest/suite.py", + "lib/python3.11/unittest/util.py", + "lib/python3.11/urllib/__init__.py", + "lib/python3.11/urllib/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/urllib/__pycache__/error.cpython-311.pyc", + "lib/python3.11/urllib/__pycache__/parse.cpython-311.pyc", + "lib/python3.11/urllib/__pycache__/request.cpython-311.pyc", + "lib/python3.11/urllib/__pycache__/response.cpython-311.pyc", + "lib/python3.11/urllib/__pycache__/robotparser.cpython-311.pyc", + "lib/python3.11/urllib/error.py", + "lib/python3.11/urllib/parse.py", + "lib/python3.11/urllib/request.py", + "lib/python3.11/urllib/response.py", + "lib/python3.11/urllib/robotparser.py", + "lib/python3.11/uu.py", + "lib/python3.11/uuid.py", + "lib/python3.11/venv/__init__.py", + "lib/python3.11/venv/__main__.py", + "lib/python3.11/venv/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/venv/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/venv/scripts/common/Activate.ps1", + "lib/python3.11/venv/scripts/common/activate", + "lib/python3.11/venv/scripts/posix/activate.csh", + "lib/python3.11/venv/scripts/posix/activate.fish", + "lib/python3.11/warnings.py", + "lib/python3.11/wave.py", + "lib/python3.11/weakref.py", + "lib/python3.11/webbrowser.py", + "lib/python3.11/wsgiref/__init__.py", + "lib/python3.11/wsgiref/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/wsgiref/__pycache__/handlers.cpython-311.pyc", + "lib/python3.11/wsgiref/__pycache__/headers.cpython-311.pyc", + "lib/python3.11/wsgiref/__pycache__/simple_server.cpython-311.pyc", + "lib/python3.11/wsgiref/__pycache__/types.cpython-311.pyc", + "lib/python3.11/wsgiref/__pycache__/util.cpython-311.pyc", + "lib/python3.11/wsgiref/__pycache__/validate.cpython-311.pyc", + "lib/python3.11/wsgiref/handlers.py", + "lib/python3.11/wsgiref/headers.py", + "lib/python3.11/wsgiref/simple_server.py", + "lib/python3.11/wsgiref/types.py", + "lib/python3.11/wsgiref/util.py", + "lib/python3.11/wsgiref/validate.py", + "lib/python3.11/xdrlib.py", + "lib/python3.11/xml/__init__.py", + "lib/python3.11/xml/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/xml/dom/NodeFilter.py", + "lib/python3.11/xml/dom/__init__.py", + "lib/python3.11/xml/dom/__pycache__/NodeFilter.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/domreg.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/expatbuilder.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/minicompat.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/minidom.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/pulldom.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/xmlbuilder.cpython-311.pyc", + "lib/python3.11/xml/dom/domreg.py", + "lib/python3.11/xml/dom/expatbuilder.py", + "lib/python3.11/xml/dom/minicompat.py", + "lib/python3.11/xml/dom/minidom.py", + "lib/python3.11/xml/dom/pulldom.py", + "lib/python3.11/xml/dom/xmlbuilder.py", + "lib/python3.11/xml/etree/ElementInclude.py", + "lib/python3.11/xml/etree/ElementPath.py", + "lib/python3.11/xml/etree/ElementTree.py", + "lib/python3.11/xml/etree/__init__.py", + "lib/python3.11/xml/etree/__pycache__/ElementInclude.cpython-311.pyc", + "lib/python3.11/xml/etree/__pycache__/ElementPath.cpython-311.pyc", + "lib/python3.11/xml/etree/__pycache__/ElementTree.cpython-311.pyc", + "lib/python3.11/xml/etree/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/xml/etree/__pycache__/cElementTree.cpython-311.pyc", + "lib/python3.11/xml/etree/cElementTree.py", + "lib/python3.11/xml/parsers/__init__.py", + "lib/python3.11/xml/parsers/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/xml/parsers/__pycache__/expat.cpython-311.pyc", + "lib/python3.11/xml/parsers/expat.py", + "lib/python3.11/xml/sax/__init__.py", + "lib/python3.11/xml/sax/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/xml/sax/__pycache__/_exceptions.cpython-311.pyc", + "lib/python3.11/xml/sax/__pycache__/expatreader.cpython-311.pyc", + "lib/python3.11/xml/sax/__pycache__/handler.cpython-311.pyc", + "lib/python3.11/xml/sax/__pycache__/saxutils.cpython-311.pyc", + "lib/python3.11/xml/sax/__pycache__/xmlreader.cpython-311.pyc", + "lib/python3.11/xml/sax/_exceptions.py", + "lib/python3.11/xml/sax/expatreader.py", + "lib/python3.11/xml/sax/handler.py", + "lib/python3.11/xml/sax/saxutils.py", + "lib/python3.11/xml/sax/xmlreader.py", + "lib/python3.11/xmlrpc/__init__.py", + "lib/python3.11/xmlrpc/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/xmlrpc/__pycache__/client.cpython-311.pyc", + "lib/python3.11/xmlrpc/__pycache__/server.cpython-311.pyc", + "lib/python3.11/xmlrpc/client.py", + "lib/python3.11/xmlrpc/server.py", + "lib/python3.11/zipapp.py", + "lib/python3.11/zipfile.py", + "lib/python3.11/zipimport.py", + "lib/python3.11/zoneinfo/__init__.py", + "lib/python3.11/zoneinfo/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/zoneinfo/__pycache__/_common.cpython-311.pyc", + "lib/python3.11/zoneinfo/__pycache__/_tzpath.cpython-311.pyc", + "lib/python3.11/zoneinfo/__pycache__/_zoneinfo.cpython-311.pyc", + "lib/python3.11/zoneinfo/_common.py", + "lib/python3.11/zoneinfo/_tzpath.py", + "lib/python3.11/zoneinfo/_zoneinfo.py", + "share/man/man1/python3.1", + "share/man/man1/python3.11.1" + ], + "fn": "python-3.11.5-hb885b13_0.conda", + "license": "PSF-2.0", + "link": { + "source": "/Users/donjayamanne/miniconda3/pkgs/python-3.11.5-hb885b13_0", + "type": 1 + }, + "md5": "6f528bdf159139704ab578df329dee70", + "name": "python", + "package_tarball_full_path": "/Users/donjayamanne/miniconda3/pkgs/python-3.11.5-hb885b13_0.conda", + "paths_data": { + "paths": [ + { + "_path": "bin/2to3-3.11", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "0eb2a68730c6910e60374b6231605a8fe9e4b1ef889fe6bf6955f00607263096", + "sha256_in_prefix": "db867f95c7e5e3d486928ab316afc7ee322118eace698a5fd9c35dd62a7c77e0", + "size_in_bytes": 347 + }, + { + "_path": "bin/idle3.11", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "9e7c5708a61f7b75f0fa84106b3698fc81e0632eea511e9635cc012d95e8ccec", + "sha256_in_prefix": "2daba7590451fb1240f116ad6c50dfb3fe12ab0d0c90450453672dc5f7992345", + "size_in_bytes": 345 + }, + { + "_path": "bin/pydoc3.11", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "af4b3f428ef9f3708c93b8d6a9c9b211c3e531ad480bac0644e18be3d675de15", + "sha256_in_prefix": "29373357dfd57b431809af8ab17e111c47011f8ed325e4b74075551cfd728dc0", + "size_in_bytes": 330 + }, + { + "_path": "bin/python3.11", + "file_mode": "binary", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "ea6aacf75da0a6e048c0acc7d6f9e7e67f4af4af635965ab25aad7956ed07b40", + "sha256_in_prefix": "5309a862e537b7e20d382f479a016995d2b60e7382673e57a98a8644d62a011a", + "size_in_bytes": 6019216 + }, + { + "_path": "bin/python3.11-config", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "48e7f0c28858cd7dd610f089ebce9d090b15273d6f965b5a665418880b9ad017", + "sha256_in_prefix": "178fb9ee8ae853adc2840a51642fbdfe239d4c189e632be37552f83ee881a9d5", + "size_in_bytes": 2289 + }, + { + "_path": "lib/libpython3.11.dylib", + "file_mode": "binary", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "813d7657214af2a40d6f98ed5ad6cd25bdaf9e1b52299dcc22457b6431f46226", + "sha256_in_prefix": "690e286e2a59750500c44dd3eb0fcc3f607604fd1a24a20da1d5877d9ac09cd0", + "size_in_bytes": 6019152 + }, + { + "_path": "lib/pkgconfig/python-3.11-embed.pc", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "5ce92c1022c5d4af2383596197f518fc12687f8f32bf3f42b96c7ee22ac9dc8d", + "sha256_in_prefix": "2ccb5bf00ff727b7941ad8be49360b25f86860ae2f49931743f628dafc9caac1", + "size_in_bytes": 558 + }, + { + "_path": "lib/pkgconfig/python-3.11.pc", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "46ac102bbce0c0b1ff9cabf905c7d44f3e3ff2911127a08b620cd1231a8a70c4", + "sha256_in_prefix": "01f5747180571713792597c3a4b2278f2e2b0e46aaa926e95cc007a373b589aa", + "size_in_bytes": 531 + }, + { + "_path": "lib/python3.11/_sysconfigdata__darwin_darwin.py", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "49c03531794c8e17dbf3bc3b28b5c731c19647b8430e74a7f05967863a73cd89", + "sha256_in_prefix": "d1fed13472229dad30d35c5cd3e497e4cbb16e5aa2fb66abc1919d55f9fa415c", + "size_in_bytes": 85118 + }, + { + "_path": "lib/python3.11/_sysconfigdata__darwin_darwin.py.orig", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "4e1b965e2665c46a97f8df38da25dc3e2636e6e62a2b525d38bfd9304978f7c9", + "sha256_in_prefix": "dbc742fac6650f3e6159c08dc75d77bbe5704af80a671c3ca09aa3e061ddd992", + "size_in_bytes": 97066 + }, + { + "_path": "lib/python3.11/_sysconfigdata_arm64_apple_darwin20_0_0.py", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "810dab3b07b0633c5d5b180351daecb4d1ebf51ee2216019c5dc08afb5c54fd1", + "sha256_in_prefix": "44ad76b97a9bc58243271c310c497b085745bbe5451b4cbf60d6afb475b49465", + "size_in_bytes": 87139 + }, + { + "_path": "lib/python3.11/config-3.11-darwin/Makefile", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "2a78da281edcb631ddd844a43a4e30d166eb6b13651e43a1664f0e1aa9384d3b", + "sha256_in_prefix": "fee789b4cc5318f60fd6d1b4294c7789bf333b55d6c4f8afa1dd4476e7fa4d5b", + "size_in_bytes": 126865 + }, + { + "_path": "lib/python3.11/config-3.11-darwin/python-config.py", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "48e7f0c28858cd7dd610f089ebce9d090b15273d6f965b5a665418880b9ad017", + "sha256_in_prefix": "178fb9ee8ae853adc2840a51642fbdfe239d4c189e632be37552f83ee881a9d5", + "size_in_bytes": 2289 + } + ], + "paths_version": 1 + }, + "requested_spec": "defaults/osx-arm64::python==3.11.5=hb885b13_0[md5=6f528bdf159139704ab578df329dee70]", + "sha256": "e6ae393f2072f9857ffbd78c56ea28ca345beeba4f0ab2e0d5975e424f71b252", + "size": 16161485, + "subdir": "osx-arm64", + "timestamp": 1694439441000, + "track_features": "", + "url": "https://repo.anaconda.com/pkgs/main/osx-arm64/python-3.11.5-hb885b13_0.conda", + "version": "3.11.5" +} \ No newline at end of file diff --git a/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda3-3.10.1/conda-meta/python-slugify-5.0.2-pyhd3eb1b0_0.json b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda3-3.10.1/conda-meta/python-slugify-5.0.2-pyhd3eb1b0_0.json new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda3-3.10.1/envs/.conda_envs_dir_test b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda3-3.10.1/envs/.conda_envs_dir_test new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda3-4.0.5/conda-meta/conda-23.11.0-py311hca03da5_0.json b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda3-4.0.5/conda-meta/conda-23.11.0-py311hca03da5_0.json new file mode 100644 index 000000000000..3be01e80b809 --- /dev/null +++ b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda3-4.0.5/conda-meta/conda-23.11.0-py311hca03da5_0.json @@ -0,0 +1,632 @@ +{ + "build": "py311hca03da5_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/osx-arm64", + "constrains": [ + "conda-content-trust >=0.1.1", + "conda-build >=3.27", + "conda-env >=2.6" + ], + "depends": [ + "archspec", + "boltons >=23.0.0", + "charset-normalizer", + "conda-libmamba-solver >=23.11.0", + "conda-package-handling >=2.2.0", + "distro >=1.5.0", + "jsonpatch >=1.32", + "menuinst", + "packaging >=23.0", + "platformdirs >=3.10.0", + "pluggy >=1.0.0", + "pycosat >=0.6.3", + "python >=3.11,<3.12.0a0", + "requests >=2.28.0,<3", + "ruamel.yaml >=0.11.14,<0.19", + "setuptools >=60.0.0", + "tqdm >=4", + "truststore >=0.8.0" + ], + "extracted_package_dir": "/Users/donjayamanne/miniconda3/pkgs/conda-23.11.0-py311hca03da5_0", + "features": "", + "files": [ + "bin/activate", + "bin/conda", + "bin/conda-env", + "bin/deactivate", + "condabin/conda", + "etc/fish/conf.d/conda.fish", + "etc/profile.d/conda.csh", + "etc/profile.d/conda.sh", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/INSTALLER", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/METADATA", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/RECORD", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/REQUESTED", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/WHEEL", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/direct_url.json", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/entry_points.txt", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/licenses/AUTHORS.md", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/licenses/LICENSE", + "lib/python3.11/site-packages/conda/__init__.py", + "lib/python3.11/site-packages/conda/__main__.py", + "lib/python3.11/site-packages/conda/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/__version__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/activate.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/api.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/deprecations.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/exception_handler.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/exceptions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/exports.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/history.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/instructions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/misc.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/plan.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/resolve.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/utils.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__version__.py", + "lib/python3.11/site-packages/conda/_vendor/__init__.py", + "lib/python3.11/site-packages/conda/_vendor/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/__pycache__/appdirs.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/__pycache__/distro.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/appdirs.LICENSE.txt", + "lib/python3.11/site-packages/conda/_vendor/appdirs.py", + "lib/python3.11/site-packages/conda/_vendor/boltons/LICENSE", + "lib/python3.11/site-packages/conda/_vendor/boltons/__init__.py", + "lib/python3.11/site-packages/conda/_vendor/boltons/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/boltons/__pycache__/setutils.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/boltons/__pycache__/timeutils.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/boltons/setutils.py", + "lib/python3.11/site-packages/conda/_vendor/boltons/timeutils.py", + "lib/python3.11/site-packages/conda/_vendor/cpuinfo/__init__.py", + "lib/python3.11/site-packages/conda/_vendor/cpuinfo/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/cpuinfo/__pycache__/cpuinfo.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/cpuinfo/cpuinfo.py", + "lib/python3.11/site-packages/conda/_vendor/distro.LICENSE.txt", + "lib/python3.11/site-packages/conda/_vendor/distro.py", + "lib/python3.11/site-packages/conda/_vendor/frozendict/LICENSE.txt", + "lib/python3.11/site-packages/conda/_vendor/frozendict/__init__.py", + "lib/python3.11/site-packages/conda/_vendor/frozendict/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/py_cpuinfo.LICENSE", + "lib/python3.11/site-packages/conda/_vendor/vendor.txt", + "lib/python3.11/site-packages/conda/activate.py", + "lib/python3.11/site-packages/conda/api.py", + "lib/python3.11/site-packages/conda/auxlib/LICENSE", + "lib/python3.11/site-packages/conda/auxlib/__init__.py", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/collection.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/compat.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/decorators.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/entity.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/exceptions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/ish.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/logz.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/packaging.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/type_coercion.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/collection.py", + "lib/python3.11/site-packages/conda/auxlib/compat.py", + "lib/python3.11/site-packages/conda/auxlib/decorators.py", + "lib/python3.11/site-packages/conda/auxlib/entity.py", + "lib/python3.11/site-packages/conda/auxlib/exceptions.py", + "lib/python3.11/site-packages/conda/auxlib/ish.py", + "lib/python3.11/site-packages/conda/auxlib/logz.py", + "lib/python3.11/site-packages/conda/auxlib/packaging.py", + "lib/python3.11/site-packages/conda/auxlib/type_coercion.py", + "lib/python3.11/site-packages/conda/base/__init__.py", + "lib/python3.11/site-packages/conda/base/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/base/__pycache__/constants.cpython-311.pyc", + "lib/python3.11/site-packages/conda/base/__pycache__/context.cpython-311.pyc", + "lib/python3.11/site-packages/conda/base/__pycache__/exceptions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/base/constants.py", + "lib/python3.11/site-packages/conda/base/context.py", + "lib/python3.11/site-packages/conda/base/exceptions.py", + "lib/python3.11/site-packages/conda/cli/__init__.py", + "lib/python3.11/site-packages/conda/cli/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/actions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/common.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/conda_argparse.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/find_commands.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/helpers.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/install.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_clean.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_compare.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_config.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_create.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_info.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_init.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_install.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_list.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_mock_activate.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_mock_deactivate.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_notices.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_package.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_pip.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_remove.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_rename.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_run.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_search.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_update.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/python_api.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/actions.py", + "lib/python3.11/site-packages/conda/cli/common.py", + "lib/python3.11/site-packages/conda/cli/conda_argparse.py", + "lib/python3.11/site-packages/conda/cli/find_commands.py", + "lib/python3.11/site-packages/conda/cli/helpers.py", + "lib/python3.11/site-packages/conda/cli/install.py", + "lib/python3.11/site-packages/conda/cli/main.py", + "lib/python3.11/site-packages/conda/cli/main_clean.py", + "lib/python3.11/site-packages/conda/cli/main_compare.py", + "lib/python3.11/site-packages/conda/cli/main_config.py", + "lib/python3.11/site-packages/conda/cli/main_create.py", + "lib/python3.11/site-packages/conda/cli/main_info.py", + "lib/python3.11/site-packages/conda/cli/main_init.py", + "lib/python3.11/site-packages/conda/cli/main_install.py", + "lib/python3.11/site-packages/conda/cli/main_list.py", + "lib/python3.11/site-packages/conda/cli/main_mock_activate.py", + "lib/python3.11/site-packages/conda/cli/main_mock_deactivate.py", + "lib/python3.11/site-packages/conda/cli/main_notices.py", + "lib/python3.11/site-packages/conda/cli/main_package.py", + "lib/python3.11/site-packages/conda/cli/main_pip.py", + "lib/python3.11/site-packages/conda/cli/main_remove.py", + "lib/python3.11/site-packages/conda/cli/main_rename.py", + "lib/python3.11/site-packages/conda/cli/main_run.py", + "lib/python3.11/site-packages/conda/cli/main_search.py", + "lib/python3.11/site-packages/conda/cli/main_update.py", + "lib/python3.11/site-packages/conda/cli/python_api.py", + "lib/python3.11/site-packages/conda/common/__init__.py", + "lib/python3.11/site-packages/conda/common/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/_logic.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/compat.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/configuration.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/constants.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/decorators.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/disk.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/io.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/iterators.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/logic.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/path.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/serialize.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/signals.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/toposort.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/url.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/_logic.py", + "lib/python3.11/site-packages/conda/common/_os/__init__.py", + "lib/python3.11/site-packages/conda/common/_os/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/_os/__pycache__/linux.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/_os/__pycache__/unix.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/_os/__pycache__/windows.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/_os/linux.py", + "lib/python3.11/site-packages/conda/common/_os/unix.py", + "lib/python3.11/site-packages/conda/common/_os/windows.py", + "lib/python3.11/site-packages/conda/common/compat.py", + "lib/python3.11/site-packages/conda/common/configuration.py", + "lib/python3.11/site-packages/conda/common/constants.py", + "lib/python3.11/site-packages/conda/common/decorators.py", + "lib/python3.11/site-packages/conda/common/disk.py", + "lib/python3.11/site-packages/conda/common/io.py", + "lib/python3.11/site-packages/conda/common/iterators.py", + "lib/python3.11/site-packages/conda/common/logic.py", + "lib/python3.11/site-packages/conda/common/path.py", + "lib/python3.11/site-packages/conda/common/pkg_formats/__init__.py", + "lib/python3.11/site-packages/conda/common/pkg_formats/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/pkg_formats/__pycache__/python.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/pkg_formats/python.py", + "lib/python3.11/site-packages/conda/common/serialize.py", + "lib/python3.11/site-packages/conda/common/signals.py", + "lib/python3.11/site-packages/conda/common/toposort.py", + "lib/python3.11/site-packages/conda/common/url.py", + "lib/python3.11/site-packages/conda/core/__init__.py", + "lib/python3.11/site-packages/conda/core/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/envs_manager.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/index.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/initialize.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/link.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/package_cache.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/package_cache_data.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/path_actions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/portability.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/prefix_data.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/solve.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/subdir_data.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/envs_manager.py", + "lib/python3.11/site-packages/conda/core/index.py", + "lib/python3.11/site-packages/conda/core/initialize.py", + "lib/python3.11/site-packages/conda/core/link.py", + "lib/python3.11/site-packages/conda/core/package_cache.py", + "lib/python3.11/site-packages/conda/core/package_cache_data.py", + "lib/python3.11/site-packages/conda/core/path_actions.py", + "lib/python3.11/site-packages/conda/core/portability.py", + "lib/python3.11/site-packages/conda/core/prefix_data.py", + "lib/python3.11/site-packages/conda/core/solve.py", + "lib/python3.11/site-packages/conda/core/subdir_data.py", + "lib/python3.11/site-packages/conda/deprecations.py", + "lib/python3.11/site-packages/conda/exception_handler.py", + "lib/python3.11/site-packages/conda/exceptions.py", + "lib/python3.11/site-packages/conda/exports.py", + "lib/python3.11/site-packages/conda/gateways/__init__.py", + "lib/python3.11/site-packages/conda/gateways/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/__pycache__/anaconda_client.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/__pycache__/logging.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/__pycache__/subprocess.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/anaconda_client.py", + "lib/python3.11/site-packages/conda/gateways/connection/__init__.py", + "lib/python3.11/site-packages/conda/gateways/connection/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/__pycache__/download.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/__pycache__/session.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/__init__.py", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/__pycache__/ftp.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/__pycache__/http.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/__pycache__/localfs.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/__pycache__/s3.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/ftp.py", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/http.py", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/localfs.py", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/s3.py", + "lib/python3.11/site-packages/conda/gateways/connection/download.py", + "lib/python3.11/site-packages/conda/gateways/connection/session.py", + "lib/python3.11/site-packages/conda/gateways/disk/__init__.py", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/create.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/delete.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/link.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/lock.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/permissions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/read.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/test.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/update.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/create.py", + "lib/python3.11/site-packages/conda/gateways/disk/delete.py", + "lib/python3.11/site-packages/conda/gateways/disk/link.py", + "lib/python3.11/site-packages/conda/gateways/disk/lock.py", + "lib/python3.11/site-packages/conda/gateways/disk/permissions.py", + "lib/python3.11/site-packages/conda/gateways/disk/read.py", + "lib/python3.11/site-packages/conda/gateways/disk/test.py", + "lib/python3.11/site-packages/conda/gateways/disk/update.py", + "lib/python3.11/site-packages/conda/gateways/logging.py", + "lib/python3.11/site-packages/conda/gateways/repodata/__init__.py", + "lib/python3.11/site-packages/conda/gateways/repodata/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/repodata/__pycache__/lock.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/__init__.py", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/__pycache__/core.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/__pycache__/fetch.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/__pycache__/interface.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/core.py", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/fetch.py", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/interface.py", + "lib/python3.11/site-packages/conda/gateways/repodata/lock.py", + "lib/python3.11/site-packages/conda/gateways/subprocess.py", + "lib/python3.11/site-packages/conda/history.py", + "lib/python3.11/site-packages/conda/instructions.py", + "lib/python3.11/site-packages/conda/misc.py", + "lib/python3.11/site-packages/conda/models/__init__.py", + "lib/python3.11/site-packages/conda/models/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/channel.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/dist.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/enums.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/leased_path_entry.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/match_spec.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/package_info.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/prefix_graph.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/records.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/version.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/channel.py", + "lib/python3.11/site-packages/conda/models/dist.py", + "lib/python3.11/site-packages/conda/models/enums.py", + "lib/python3.11/site-packages/conda/models/leased_path_entry.py", + "lib/python3.11/site-packages/conda/models/match_spec.py", + "lib/python3.11/site-packages/conda/models/package_info.py", + "lib/python3.11/site-packages/conda/models/prefix_graph.py", + "lib/python3.11/site-packages/conda/models/records.py", + "lib/python3.11/site-packages/conda/models/version.py", + "lib/python3.11/site-packages/conda/notices/__init__.py", + "lib/python3.11/site-packages/conda/notices/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/notices/__pycache__/cache.cpython-311.pyc", + "lib/python3.11/site-packages/conda/notices/__pycache__/core.cpython-311.pyc", + "lib/python3.11/site-packages/conda/notices/__pycache__/fetch.cpython-311.pyc", + "lib/python3.11/site-packages/conda/notices/__pycache__/types.cpython-311.pyc", + "lib/python3.11/site-packages/conda/notices/__pycache__/views.cpython-311.pyc", + "lib/python3.11/site-packages/conda/notices/cache.py", + "lib/python3.11/site-packages/conda/notices/core.py", + "lib/python3.11/site-packages/conda/notices/fetch.py", + "lib/python3.11/site-packages/conda/notices/types.py", + "lib/python3.11/site-packages/conda/notices/views.py", + "lib/python3.11/site-packages/conda/plan.py", + "lib/python3.11/site-packages/conda/plugins/__init__.py", + "lib/python3.11/site-packages/conda/plugins/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/__pycache__/hookspec.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/__pycache__/manager.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/__pycache__/solvers.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/__pycache__/types.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/hookspec.py", + "lib/python3.11/site-packages/conda/plugins/manager.py", + "lib/python3.11/site-packages/conda/plugins/solvers.py", + "lib/python3.11/site-packages/conda/plugins/subcommands/__init__.py", + "lib/python3.11/site-packages/conda/plugins/subcommands/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/subcommands/doctor/__init__.py", + "lib/python3.11/site-packages/conda/plugins/subcommands/doctor/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/subcommands/doctor/__pycache__/health_checks.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/subcommands/doctor/health_checks.py", + "lib/python3.11/site-packages/conda/plugins/types.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__init__.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/archspec.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/conda.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/cuda.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/freebsd.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/linux.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/osx.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/windows.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/archspec.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/conda.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/cuda.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/freebsd.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/linux.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/osx.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/windows.py", + "lib/python3.11/site-packages/conda/py.typed", + "lib/python3.11/site-packages/conda/resolve.py", + "lib/python3.11/site-packages/conda/shell/Library/bin/conda.bat", + "lib/python3.11/site-packages/conda/shell/Scripts/activate.bat", + "lib/python3.11/site-packages/conda/shell/bin/activate", + "lib/python3.11/site-packages/conda/shell/bin/conda", + "lib/python3.11/site-packages/conda/shell/bin/deactivate", + "lib/python3.11/site-packages/conda/shell/cli-32.exe", + "lib/python3.11/site-packages/conda/shell/cli-64.exe", + "lib/python3.11/site-packages/conda/shell/conda.xsh", + "lib/python3.11/site-packages/conda/shell/conda_icon.ico", + "lib/python3.11/site-packages/conda/shell/condabin/Conda.psm1", + "lib/python3.11/site-packages/conda/shell/condabin/_conda_activate.bat", + "lib/python3.11/site-packages/conda/shell/condabin/activate.bat", + "lib/python3.11/site-packages/conda/shell/condabin/conda-hook.ps1", + "lib/python3.11/site-packages/conda/shell/condabin/conda.bat", + "lib/python3.11/site-packages/conda/shell/condabin/conda_auto_activate.bat", + "lib/python3.11/site-packages/conda/shell/condabin/conda_hook.bat", + "lib/python3.11/site-packages/conda/shell/condabin/deactivate.bat", + "lib/python3.11/site-packages/conda/shell/condabin/rename_tmp.bat", + "lib/python3.11/site-packages/conda/shell/etc/fish/conf.d/conda.fish", + "lib/python3.11/site-packages/conda/shell/etc/profile.d/conda.csh", + "lib/python3.11/site-packages/conda/shell/etc/profile.d/conda.sh", + "lib/python3.11/site-packages/conda/testing/__init__.py", + "lib/python3.11/site-packages/conda/testing/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/__pycache__/cases.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/__pycache__/fixtures.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/__pycache__/helpers.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/__pycache__/integration.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/__pycache__/solver_helpers.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/cases.py", + "lib/python3.11/site-packages/conda/testing/fixtures.py", + "lib/python3.11/site-packages/conda/testing/gateways/__init__.py", + "lib/python3.11/site-packages/conda/testing/gateways/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/gateways/__pycache__/fixtures.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/gateways/fixtures.py", + "lib/python3.11/site-packages/conda/testing/helpers.py", + "lib/python3.11/site-packages/conda/testing/integration.py", + "lib/python3.11/site-packages/conda/testing/notices/__init__.py", + "lib/python3.11/site-packages/conda/testing/notices/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/notices/__pycache__/fixtures.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/notices/__pycache__/helpers.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/notices/fixtures.py", + "lib/python3.11/site-packages/conda/testing/notices/helpers.py", + "lib/python3.11/site-packages/conda/testing/solver_helpers.py", + "lib/python3.11/site-packages/conda/trust/__init__.py", + "lib/python3.11/site-packages/conda/trust/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/trust/__pycache__/constants.cpython-311.pyc", + "lib/python3.11/site-packages/conda/trust/__pycache__/signature_verification.cpython-311.pyc", + "lib/python3.11/site-packages/conda/trust/constants.py", + "lib/python3.11/site-packages/conda/trust/signature_verification.py", + "lib/python3.11/site-packages/conda/utils.py", + "lib/python3.11/site-packages/conda_env/README.md", + "lib/python3.11/site-packages/conda_env/__init__.py", + "lib/python3.11/site-packages/conda_env/__main__.py", + "lib/python3.11/site-packages/conda_env/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/__pycache__/env.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/__pycache__/pip_util.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__init__.py", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/common.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_config.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_create.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_export.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_list.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_remove.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_update.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_vars.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/common.py", + "lib/python3.11/site-packages/conda_env/cli/main.py", + "lib/python3.11/site-packages/conda_env/cli/main_config.py", + "lib/python3.11/site-packages/conda_env/cli/main_create.py", + "lib/python3.11/site-packages/conda_env/cli/main_export.py", + "lib/python3.11/site-packages/conda_env/cli/main_list.py", + "lib/python3.11/site-packages/conda_env/cli/main_remove.py", + "lib/python3.11/site-packages/conda_env/cli/main_update.py", + "lib/python3.11/site-packages/conda_env/cli/main_vars.py", + "lib/python3.11/site-packages/conda_env/env.py", + "lib/python3.11/site-packages/conda_env/installers/__init__.py", + "lib/python3.11/site-packages/conda_env/installers/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/installers/__pycache__/base.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/installers/__pycache__/conda.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/installers/__pycache__/pip.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/installers/base.py", + "lib/python3.11/site-packages/conda_env/installers/conda.py", + "lib/python3.11/site-packages/conda_env/installers/pip.py", + "lib/python3.11/site-packages/conda_env/pip_util.py", + "lib/python3.11/site-packages/conda_env/specs/__init__.py", + "lib/python3.11/site-packages/conda_env/specs/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/specs/__pycache__/binstar.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/specs/__pycache__/requirements.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/specs/__pycache__/yaml_file.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/specs/binstar.py", + "lib/python3.11/site-packages/conda_env/specs/requirements.py", + "lib/python3.11/site-packages/conda_env/specs/yaml_file.py", + "lib/python3.11/site-packages/tests/conda_env/__init__.py", + "lib/python3.11/site-packages/tests/conda_env/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/__pycache__/test_cli.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/__pycache__/test_create.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/__pycache__/test_env.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/__pycache__/test_pip_util.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/__pycache__/utils.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/specs/__init__.py", + "lib/python3.11/site-packages/tests/conda_env/specs/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/specs/__pycache__/test_binstar.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/specs/__pycache__/test_requirements.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/specs/__pycache__/test_yaml_file.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/specs/test_binstar.py", + "lib/python3.11/site-packages/tests/conda_env/specs/test_requirements.py", + "lib/python3.11/site-packages/tests/conda_env/specs/test_yaml_file.py", + "lib/python3.11/site-packages/tests/conda_env/support/add-pip.yml", + "lib/python3.11/site-packages/tests/conda_env/support/advanced-pip/.gitignore", + "lib/python3.11/site-packages/tests/conda_env/support/advanced-pip/another-project-requirements.txt", + "lib/python3.11/site-packages/tests/conda_env/support/advanced-pip/environment.yml", + "lib/python3.11/site-packages/tests/conda_env/support/advanced-pip/module_to_install_in_editable_mode/__pycache__/setup.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/support/advanced-pip/module_to_install_in_editable_mode/setup.py", + "lib/python3.11/site-packages/tests/conda_env/support/channels_with_envvars.yml", + "lib/python3.11/site-packages/tests/conda_env/support/empty_env.yml", + "lib/python3.11/site-packages/tests/conda_env/support/env_with_dependencies.yml", + "lib/python3.11/site-packages/tests/conda_env/support/example-yaml/environment.yaml", + "lib/python3.11/site-packages/tests/conda_env/support/example/environment.yml", + "lib/python3.11/site-packages/tests/conda_env/support/example/environment_host_port.yml", + "lib/python3.11/site-packages/tests/conda_env/support/example/environment_pinned.yml", + "lib/python3.11/site-packages/tests/conda_env/support/example/environment_pinned_updated.yml", + "lib/python3.11/site-packages/tests/conda_env/support/foo/bar/baz/readme", + "lib/python3.11/site-packages/tests/conda_env/support/foo/bar/readme", + "lib/python3.11/site-packages/tests/conda_env/support/foo/environment.yml", + "lib/python3.11/site-packages/tests/conda_env/support/invalid_keys.yml", + "lib/python3.11/site-packages/tests/conda_env/support/notebook.ipynb", + "lib/python3.11/site-packages/tests/conda_env/support/notebook_with_env.ipynb", + "lib/python3.11/site-packages/tests/conda_env/support/pip_argh.yml", + "lib/python3.11/site-packages/tests/conda_env/support/requirements.txt", + "lib/python3.11/site-packages/tests/conda_env/support/saved-env/environment.yml", + "lib/python3.11/site-packages/tests/conda_env/support/simple.yml", + "lib/python3.11/site-packages/tests/conda_env/support/valid_keys.yml", + "lib/python3.11/site-packages/tests/conda_env/support/with-pip.yml", + "lib/python3.11/site-packages/tests/conda_env/test_cli.py", + "lib/python3.11/site-packages/tests/conda_env/test_create.py", + "lib/python3.11/site-packages/tests/conda_env/test_env.py", + "lib/python3.11/site-packages/tests/conda_env/test_pip_util.py", + "lib/python3.11/site-packages/tests/conda_env/utils.py", + "lib/python3.11/site-packages/tests/test-recipes/activate_deactivate_package/src/etc/conda/activate.d/activate.bat", + "lib/python3.11/site-packages/tests/test-recipes/activate_deactivate_package/src/etc/conda/activate.d/activate.sh", + "lib/python3.11/site-packages/tests/test-recipes/activate_deactivate_package/src/etc/conda/deactivate.d/deactivate.bat", + "lib/python3.11/site-packages/tests/test-recipes/activate_deactivate_package/src/etc/conda/deactivate.d/deactivate.sh", + "lib/python3.11/site-packages/xontrib/conda.xsh", + "shell/condabin/Conda.psm1", + "shell/condabin/conda-hook.ps1" + ], + "fn": "conda-23.11.0-py311hca03da5_0.conda", + "license": "BSD-3-Clause", + "link": { + "source": "/Users/donjayamanne/miniconda3/pkgs/conda-23.11.0-py311hca03da5_0", + "type": 1 + }, + "md5": "d40f56a649df2d05c5468713732e005e", + "name": "conda", + "package_tarball_full_path": "/Users/donjayamanne/miniconda3/pkgs/conda-23.11.0-py311hca03da5_0.conda", + "paths_data": { + "paths": [ + { + "_path": "bin/activate", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "92dd3f5997c70939665a9000ba114ba13f28c5ce1341fa75060f48dcb808a127", + "sha256_in_prefix": "4270a26a4429c0dd5a4c35900f8b2211b35c7447367b6f2b8470bdedc1f240ca", + "size_in_bytes": 429 + }, + { + "_path": "bin/conda", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "c6380d731f573d898f146d5580e0447dd44d068d619bda7aff326095f8bc4f88", + "sha256_in_prefix": "b5dd14921f011aa934757f31b62e0fa2be17a1a9f99ccb2d26a1f12a864d64e8", + "size_in_bytes": 756 + }, + { + "_path": "bin/conda-env", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "c7e6fa37766fe556ef4f95c0860a0eb7f7817c6f057ba9369e248bcdd7f37c9d", + "sha256_in_prefix": "88be67a0d6c47edbd65fa3d860a3514daed6b6bac830ec93800cf43fd778379c", + "size_in_bytes": 393 + }, + { + "_path": "bin/deactivate", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "a69da038fee96660c3f47c2c393c05b54986ba0c929aada61cd410df6e09746e", + "sha256_in_prefix": "2af9834dc0f7c2fb9db2f9e67829700c6828774d9ad7996602324c5a5387a89c", + "size_in_bytes": 517 + }, + { + "_path": "condabin/conda", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "c6380d731f573d898f146d5580e0447dd44d068d619bda7aff326095f8bc4f88", + "sha256_in_prefix": "b5dd14921f011aa934757f31b62e0fa2be17a1a9f99ccb2d26a1f12a864d64e8", + "size_in_bytes": 756 + }, + { + "_path": "etc/fish/conf.d/conda.fish", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "85caec3d76f3239e105f88cbafc6acbe04cd97fd4c1db4da4e0dcf4d357a631e", + "sha256_in_prefix": "a1ab61539200ab52ec85d9bf7de9b1cfe4a7fbdd4da2f6a7882d417ea8c7d3e1", + "size_in_bytes": 4880 + }, + { + "_path": "etc/profile.d/conda.csh", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "966581001ffd439152bf4432c7c436e25014aa2386668a00145b4087aa354604", + "sha256_in_prefix": "85a53ef7d70dcb1c16695b970bbc3880b74eaa23fff43dde57796e34fcb2ead7", + "size_in_bytes": 3163 + }, + { + "_path": "etc/profile.d/conda.sh", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "a147ccd49f1579e69c49cb12114421d95b84a1e02ef1df7c4f8c51d44cd026d1", + "sha256_in_prefix": "920d3be6a977141273da05e8d0a1867352013f1e2702a313fea15a101432f344", + "size_in_bytes": 2552 + }, + { + "_path": "lib/python3.11/site-packages/xontrib/conda.xsh", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "e0e9fb9f5d108c70434802b45e51910671b409a3cddd7b4ec887af2b07e2ce05", + "sha256_in_prefix": "c0650607c2cf90f2ce94f3b7370349922fdac5901e3316fa9f065d8773b3f944", + "size_in_bytes": 7565 + }, + { + "_path": "shell/condabin/conda-hook.ps1", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "94f9a90527bf021292a113a9e546e3f5dd042ae3afc0ed2a7a5763ef312ac756", + "sha256_in_prefix": "4edd554f34b2aa567876996da1be4cbc89d866e0e3d958f42d7889ccff8f617f", + "size_in_bytes": 1047 + } + ], + "paths_version": 1 + }, + "requested_spec": "defaults/osx-arm64::conda==23.11.0=py311hca03da5_0[md5=d40f56a649df2d05c5468713732e005e]", + "sha256": "63ade392153a88ba334593059bfce7ab3b6df1dbbd6622655c8a7db587f70a78", + "size": 1317120, + "subdir": "osx-arm64", + "timestamp": 1701719702000, + "track_features": "", + "url": "https://repo.anaconda.com/pkgs/main/osx-arm64/conda-23.11.0-py311hca03da5_0.conda", + "version": "23.11.0" +} \ No newline at end of file diff --git a/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda3-4.0.5/conda-meta/history b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda3-4.0.5/conda-meta/history new file mode 100644 index 000000000000..b196a3e5922b --- /dev/null +++ b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda3-4.0.5/conda-meta/history @@ -0,0 +1,72 @@ +==> 2024-02-14 17:04:16 <== +# cmd: /Users/donjayamanne/miniconda3/conda.exe install --offline --file /Users/donjayamanne/miniconda3/pkgs/env.txt -yp /Users/donjayamanne/miniconda3 +# conda version: 23.10.0 ++defaults/noarch::archspec-0.2.1-pyhd3eb1b0_0 ++defaults/noarch::charset-normalizer-2.0.4-pyhd3eb1b0_0 ++defaults/noarch::conda-libmamba-solver-23.12.0-pyhd3eb1b0_1 ++defaults/noarch::jsonpatch-1.32-pyhd3eb1b0_0 ++defaults/noarch::jsonpointer-2.1-pyhd3eb1b0_0 ++defaults/noarch::pybind11-abi-4-hd3eb1b0_1 ++defaults/noarch::pycparser-2.21-pyhd3eb1b0_0 ++defaults/noarch::tzdata-2023c-h04d1e81_0 ++defaults/osx-arm64::boltons-23.0.0-py311hca03da5_0 ++defaults/osx-arm64::brotli-python-1.0.9-py311h313beb8_7 ++defaults/osx-arm64::bzip2-1.0.8-h620ffc9_4 ++defaults/osx-arm64::c-ares-1.19.1-h80987f9_0 ++defaults/osx-arm64::ca-certificates-2023.12.12-hca03da5_0 ++defaults/osx-arm64::certifi-2023.11.17-py311hca03da5_0 ++defaults/osx-arm64::cffi-1.16.0-py311h80987f9_0 ++defaults/osx-arm64::conda-23.11.0-py311hca03da5_0 ++defaults/osx-arm64::conda-content-trust-0.2.0-py311hca03da5_0 ++defaults/osx-arm64::conda-package-handling-2.2.0-py311hca03da5_0 ++defaults/osx-arm64::conda-package-streaming-0.9.0-py311hca03da5_0 ++defaults/osx-arm64::cryptography-41.0.7-py311hd4332d6_0 ++defaults/osx-arm64::distro-1.8.0-py311hca03da5_0 ++defaults/osx-arm64::fmt-9.1.0-h48ca7d4_0 ++defaults/osx-arm64::icu-73.1-h313beb8_0 ++defaults/osx-arm64::idna-3.4-py311hca03da5_0 ++defaults/osx-arm64::krb5-1.20.1-hf3e1bf2_1 ++defaults/osx-arm64::libarchive-3.6.2-h62fee54_2 ++defaults/osx-arm64::libcurl-8.4.0-h3e2b118_1 ++defaults/osx-arm64::libcxx-14.0.6-h848a8c0_0 ++defaults/osx-arm64::libedit-3.1.20230828-h80987f9_0 ++defaults/osx-arm64::libev-4.33-h1a28f6b_1 ++defaults/osx-arm64::libffi-3.4.4-hca03da5_0 ++defaults/osx-arm64::libiconv-1.16-h1a28f6b_2 ++defaults/osx-arm64::libmamba-1.5.3-h15e39b3_0 ++defaults/osx-arm64::libmambapy-1.5.3-py311h1c5506f_0 ++defaults/osx-arm64::libnghttp2-1.57.0-h62f6fdd_0 ++defaults/osx-arm64::libsolv-0.7.24-h514c7bf_0 ++defaults/osx-arm64::libssh2-1.10.0-h02f6b3c_2 ++defaults/osx-arm64::libxml2-2.10.4-h0dcf63f_1 ++defaults/osx-arm64::lz4-c-1.9.4-h313beb8_0 ++defaults/osx-arm64::menuinst-2.0.1-py311hca03da5_1 ++defaults/osx-arm64::ncurses-6.4-h313beb8_0 ++defaults/osx-arm64::openssl-3.0.12-h1a28f6b_0 ++defaults/osx-arm64::packaging-23.1-py311hca03da5_0 ++defaults/osx-arm64::pcre2-10.42-hb066dcc_0 ++defaults/osx-arm64::pip-23.3.1-py311hca03da5_0 ++defaults/osx-arm64::platformdirs-3.10.0-py311hca03da5_0 ++defaults/osx-arm64::pluggy-1.0.0-py311hca03da5_1 ++defaults/osx-arm64::pycosat-0.6.6-py311h80987f9_0 ++defaults/osx-arm64::pyopenssl-23.2.0-py311hca03da5_0 ++defaults/osx-arm64::pysocks-1.7.1-py311hca03da5_0 ++defaults/osx-arm64::python-3.11.5-hb885b13_0 ++defaults/osx-arm64::python.app-3-py311h80987f9_0 ++defaults/osx-arm64::readline-8.2-h1a28f6b_0 ++defaults/osx-arm64::reproc-14.2.4-hc377ac9_1 ++defaults/osx-arm64::reproc-cpp-14.2.4-hc377ac9_1 ++defaults/osx-arm64::requests-2.31.0-py311hca03da5_0 ++defaults/osx-arm64::ruamel.yaml-0.17.21-py311h80987f9_0 ++defaults/osx-arm64::setuptools-68.2.2-py311hca03da5_0 ++defaults/osx-arm64::sqlite-3.41.2-h80987f9_0 ++defaults/osx-arm64::tk-8.6.12-hb8d0fd4_0 ++defaults/osx-arm64::tqdm-4.65.0-py311hb6e6a13_0 ++defaults/osx-arm64::truststore-0.8.0-py311hca03da5_0 ++defaults/osx-arm64::urllib3-1.26.18-py311hca03da5_0 ++defaults/osx-arm64::wheel-0.41.2-py311hca03da5_0 ++defaults/osx-arm64::xz-5.4.5-h80987f9_0 ++defaults/osx-arm64::yaml-cpp-0.8.0-h313beb8_0 ++defaults/osx-arm64::zlib-1.2.13-h5a0b063_0 ++defaults/osx-arm64::zstandard-0.19.0-py311h80987f9_0 ++defaults/osx-arm64::zstd-1.5.5-hd90d995_0 diff --git a/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda3-4.0.5/conda-meta/python-3.11.5-hb885b13_0.json b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda3-4.0.5/conda-meta/python-3.11.5-hb885b13_0.json new file mode 100644 index 000000000000..90b9af01a4e0 --- /dev/null +++ b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda3-4.0.5/conda-meta/python-3.11.5-hb885b13_0.json @@ -0,0 +1,2280 @@ +{ + "build": "hb885b13_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/osx-arm64", + "constrains": [], + "depends": [ + "bzip2 >=1.0.8,<2.0a0", + "libffi >=3.4,<3.5", + "libffi >=3.4,<4.0a0", + "ncurses >=6.4,<7.0a0", + "openssl >=3.0.10,<4.0a0", + "readline >=8.1.2,<9.0a0", + "sqlite >=3.41.2,<4.0a0", + "tk >=8.6.12,<8.7.0a0", + "tzdata", + "xz >=5.4.2,<6.0a0", + "zlib >=1.2.13,<1.3.0a0", + "pip" + ], + "extracted_package_dir": "/Users/donjayamanne/miniconda3/pkgs/python-3.11.5-hb885b13_0", + "features": "", + "files": [ + "bin/2to3", + "bin/2to3-3.11", + "bin/idle3", + "bin/idle3.11", + "bin/pydoc", + "bin/pydoc3", + "bin/pydoc3.11", + "bin/python", + "bin/python3", + "bin/python3-config", + "bin/python3.1", + "bin/python3.11", + "bin/python3.11-config", + "include/python3.11/Python.h", + "include/python3.11/abstract.h", + "include/python3.11/bltinmodule.h", + "include/python3.11/boolobject.h", + "include/python3.11/bytearrayobject.h", + "include/python3.11/bytesobject.h", + "include/python3.11/ceval.h", + "include/python3.11/codecs.h", + "include/python3.11/compile.h", + "include/python3.11/complexobject.h", + "include/python3.11/cpython/abstract.h", + "include/python3.11/cpython/bytearrayobject.h", + "include/python3.11/cpython/bytesobject.h", + "include/python3.11/cpython/cellobject.h", + "include/python3.11/cpython/ceval.h", + "include/python3.11/cpython/classobject.h", + "include/python3.11/cpython/code.h", + "include/python3.11/cpython/compile.h", + "include/python3.11/cpython/complexobject.h", + "include/python3.11/cpython/context.h", + "include/python3.11/cpython/descrobject.h", + "include/python3.11/cpython/dictobject.h", + "include/python3.11/cpython/fileobject.h", + "include/python3.11/cpython/fileutils.h", + "include/python3.11/cpython/floatobject.h", + "include/python3.11/cpython/frameobject.h", + "include/python3.11/cpython/funcobject.h", + "include/python3.11/cpython/genobject.h", + "include/python3.11/cpython/import.h", + "include/python3.11/cpython/initconfig.h", + "include/python3.11/cpython/listobject.h", + "include/python3.11/cpython/longintrepr.h", + "include/python3.11/cpython/longobject.h", + "include/python3.11/cpython/methodobject.h", + "include/python3.11/cpython/modsupport.h", + "include/python3.11/cpython/object.h", + "include/python3.11/cpython/objimpl.h", + "include/python3.11/cpython/odictobject.h", + "include/python3.11/cpython/picklebufobject.h", + "include/python3.11/cpython/pthread_stubs.h", + "include/python3.11/cpython/pyctype.h", + "include/python3.11/cpython/pydebug.h", + "include/python3.11/cpython/pyerrors.h", + "include/python3.11/cpython/pyfpe.h", + "include/python3.11/cpython/pyframe.h", + "include/python3.11/cpython/pylifecycle.h", + "include/python3.11/cpython/pymem.h", + "include/python3.11/cpython/pystate.h", + "include/python3.11/cpython/pythonrun.h", + "include/python3.11/cpython/pythread.h", + "include/python3.11/cpython/pytime.h", + "include/python3.11/cpython/setobject.h", + "include/python3.11/cpython/sysmodule.h", + "include/python3.11/cpython/traceback.h", + "include/python3.11/cpython/tupleobject.h", + "include/python3.11/cpython/unicodeobject.h", + "include/python3.11/cpython/warnings.h", + "include/python3.11/cpython/weakrefobject.h", + "include/python3.11/datetime.h", + "include/python3.11/descrobject.h", + "include/python3.11/dictobject.h", + "include/python3.11/dynamic_annotations.h", + "include/python3.11/enumobject.h", + "include/python3.11/errcode.h", + "include/python3.11/exports.h", + "include/python3.11/fileobject.h", + "include/python3.11/fileutils.h", + "include/python3.11/floatobject.h", + "include/python3.11/frameobject.h", + "include/python3.11/genericaliasobject.h", + "include/python3.11/import.h", + "include/python3.11/internal/pycore_abstract.h", + "include/python3.11/internal/pycore_accu.h", + "include/python3.11/internal/pycore_asdl.h", + "include/python3.11/internal/pycore_ast.h", + "include/python3.11/internal/pycore_ast_state.h", + "include/python3.11/internal/pycore_atomic.h", + "include/python3.11/internal/pycore_atomic_funcs.h", + "include/python3.11/internal/pycore_bitutils.h", + "include/python3.11/internal/pycore_blocks_output_buffer.h", + "include/python3.11/internal/pycore_bytes_methods.h", + "include/python3.11/internal/pycore_bytesobject.h", + "include/python3.11/internal/pycore_call.h", + "include/python3.11/internal/pycore_ceval.h", + "include/python3.11/internal/pycore_code.h", + "include/python3.11/internal/pycore_compile.h", + "include/python3.11/internal/pycore_condvar.h", + "include/python3.11/internal/pycore_context.h", + "include/python3.11/internal/pycore_dict.h", + "include/python3.11/internal/pycore_dtoa.h", + "include/python3.11/internal/pycore_emscripten_signal.h", + "include/python3.11/internal/pycore_exceptions.h", + "include/python3.11/internal/pycore_fileutils.h", + "include/python3.11/internal/pycore_floatobject.h", + "include/python3.11/internal/pycore_format.h", + "include/python3.11/internal/pycore_frame.h", + "include/python3.11/internal/pycore_function.h", + "include/python3.11/internal/pycore_gc.h", + "include/python3.11/internal/pycore_genobject.h", + "include/python3.11/internal/pycore_getopt.h", + "include/python3.11/internal/pycore_gil.h", + "include/python3.11/internal/pycore_global_objects.h", + "include/python3.11/internal/pycore_global_strings.h", + "include/python3.11/internal/pycore_hamt.h", + "include/python3.11/internal/pycore_hashtable.h", + "include/python3.11/internal/pycore_import.h", + "include/python3.11/internal/pycore_initconfig.h", + "include/python3.11/internal/pycore_interp.h", + "include/python3.11/internal/pycore_interpreteridobject.h", + "include/python3.11/internal/pycore_list.h", + "include/python3.11/internal/pycore_long.h", + "include/python3.11/internal/pycore_moduleobject.h", + "include/python3.11/internal/pycore_namespace.h", + "include/python3.11/internal/pycore_object.h", + "include/python3.11/internal/pycore_opcode.h", + "include/python3.11/internal/pycore_parser.h", + "include/python3.11/internal/pycore_pathconfig.h", + "include/python3.11/internal/pycore_pyarena.h", + "include/python3.11/internal/pycore_pyerrors.h", + "include/python3.11/internal/pycore_pyhash.h", + "include/python3.11/internal/pycore_pylifecycle.h", + "include/python3.11/internal/pycore_pymath.h", + "include/python3.11/internal/pycore_pymem.h", + "include/python3.11/internal/pycore_pystate.h", + "include/python3.11/internal/pycore_runtime.h", + "include/python3.11/internal/pycore_runtime_init.h", + "include/python3.11/internal/pycore_signal.h", + "include/python3.11/internal/pycore_sliceobject.h", + "include/python3.11/internal/pycore_strhex.h", + "include/python3.11/internal/pycore_structseq.h", + "include/python3.11/internal/pycore_symtable.h", + "include/python3.11/internal/pycore_sysmodule.h", + "include/python3.11/internal/pycore_traceback.h", + "include/python3.11/internal/pycore_tuple.h", + "include/python3.11/internal/pycore_typeobject.h", + "include/python3.11/internal/pycore_ucnhash.h", + "include/python3.11/internal/pycore_unicodeobject.h", + "include/python3.11/internal/pycore_unionobject.h", + "include/python3.11/internal/pycore_warnings.h", + "include/python3.11/intrcheck.h", + "include/python3.11/iterobject.h", + "include/python3.11/listobject.h", + "include/python3.11/longobject.h", + "include/python3.11/marshal.h", + "include/python3.11/memoryobject.h", + "include/python3.11/methodobject.h", + "include/python3.11/modsupport.h", + "include/python3.11/moduleobject.h", + "include/python3.11/object.h", + "include/python3.11/objimpl.h", + "include/python3.11/opcode.h", + "include/python3.11/osdefs.h", + "include/python3.11/osmodule.h", + "include/python3.11/patchlevel.h", + "include/python3.11/py_curses.h", + "include/python3.11/pybuffer.h", + "include/python3.11/pycapsule.h", + "include/python3.11/pyconfig.h", + "include/python3.11/pydtrace.h", + "include/python3.11/pyerrors.h", + "include/python3.11/pyexpat.h", + "include/python3.11/pyframe.h", + "include/python3.11/pyhash.h", + "include/python3.11/pylifecycle.h", + "include/python3.11/pymacconfig.h", + "include/python3.11/pymacro.h", + "include/python3.11/pymath.h", + "include/python3.11/pymem.h", + "include/python3.11/pyport.h", + "include/python3.11/pystate.h", + "include/python3.11/pystrcmp.h", + "include/python3.11/pystrtod.h", + "include/python3.11/pythonrun.h", + "include/python3.11/pythread.h", + "include/python3.11/pytypedefs.h", + "include/python3.11/rangeobject.h", + "include/python3.11/setobject.h", + "include/python3.11/sliceobject.h", + "include/python3.11/structmember.h", + "include/python3.11/structseq.h", + "include/python3.11/sysmodule.h", + "include/python3.11/token.h", + "include/python3.11/traceback.h", + "include/python3.11/tracemalloc.h", + "include/python3.11/tupleobject.h", + "include/python3.11/typeslots.h", + "include/python3.11/unicodeobject.h", + "include/python3.11/warnings.h", + "include/python3.11/weakrefobject.h", + "lib/libpython3.11.dylib", + "lib/pkgconfig/python-3.11-embed.pc", + "lib/pkgconfig/python-3.11.pc", + "lib/pkgconfig/python3-embed.pc", + "lib/pkgconfig/python3.pc", + "lib/python3.1", + "lib/python3.11/LICENSE.txt", + "lib/python3.11/__future__.py", + "lib/python3.11/__hello__.py", + "lib/python3.11/__phello__/__init__.py", + "lib/python3.11/__phello__/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/__phello__/__pycache__/spam.cpython-311.pyc", + "lib/python3.11/__phello__/spam.py", + "lib/python3.11/__pycache__/__future__.cpython-311.pyc", + "lib/python3.11/__pycache__/__hello__.cpython-311.pyc", + "lib/python3.11/__pycache__/_aix_support.cpython-311.pyc", + "lib/python3.11/__pycache__/_bootsubprocess.cpython-311.pyc", + "lib/python3.11/__pycache__/_collections_abc.cpython-311.pyc", + "lib/python3.11/__pycache__/_compat_pickle.cpython-311.pyc", + "lib/python3.11/__pycache__/_compression.cpython-311.pyc", + "lib/python3.11/__pycache__/_markupbase.cpython-311.pyc", + "lib/python3.11/__pycache__/_osx_support.cpython-311.pyc", + "lib/python3.11/__pycache__/_py_abc.cpython-311.pyc", + "lib/python3.11/__pycache__/_pydecimal.cpython-311.pyc", + "lib/python3.11/__pycache__/_pyio.cpython-311.pyc", + "lib/python3.11/__pycache__/_sitebuiltins.cpython-311.pyc", + "lib/python3.11/__pycache__/_strptime.cpython-311.pyc", + "lib/python3.11/__pycache__/_sysconfigdata__darwin_darwin.cpython-311.pyc", + "lib/python3.11/__pycache__/_sysconfigdata_arm64_apple_darwin20_0_0.cpython-311.pyc", + "lib/python3.11/__pycache__/_threading_local.cpython-311.pyc", + "lib/python3.11/__pycache__/_weakrefset.cpython-311.pyc", + "lib/python3.11/__pycache__/abc.cpython-311.pyc", + "lib/python3.11/__pycache__/aifc.cpython-311.pyc", + "lib/python3.11/__pycache__/antigravity.cpython-311.pyc", + "lib/python3.11/__pycache__/argparse.cpython-311.pyc", + "lib/python3.11/__pycache__/ast.cpython-311.pyc", + "lib/python3.11/__pycache__/asynchat.cpython-311.pyc", + "lib/python3.11/__pycache__/asyncore.cpython-311.pyc", + "lib/python3.11/__pycache__/base64.cpython-311.pyc", + "lib/python3.11/__pycache__/bdb.cpython-311.pyc", + "lib/python3.11/__pycache__/bisect.cpython-311.pyc", + "lib/python3.11/__pycache__/bz2.cpython-311.pyc", + "lib/python3.11/__pycache__/cProfile.cpython-311.pyc", + "lib/python3.11/__pycache__/calendar.cpython-311.pyc", + "lib/python3.11/__pycache__/cgi.cpython-311.pyc", + "lib/python3.11/__pycache__/cgitb.cpython-311.pyc", + "lib/python3.11/__pycache__/chunk.cpython-311.pyc", + "lib/python3.11/__pycache__/cmd.cpython-311.pyc", + "lib/python3.11/__pycache__/code.cpython-311.pyc", + "lib/python3.11/__pycache__/codecs.cpython-311.pyc", + "lib/python3.11/__pycache__/codeop.cpython-311.pyc", + "lib/python3.11/__pycache__/colorsys.cpython-311.pyc", + "lib/python3.11/__pycache__/compileall.cpython-311.pyc", + "lib/python3.11/__pycache__/configparser.cpython-311.pyc", + "lib/python3.11/__pycache__/contextlib.cpython-311.pyc", + "lib/python3.11/__pycache__/contextvars.cpython-311.pyc", + "lib/python3.11/__pycache__/copy.cpython-311.pyc", + "lib/python3.11/__pycache__/copyreg.cpython-311.pyc", + "lib/python3.11/__pycache__/crypt.cpython-311.pyc", + "lib/python3.11/__pycache__/csv.cpython-311.pyc", + "lib/python3.11/__pycache__/dataclasses.cpython-311.pyc", + "lib/python3.11/__pycache__/datetime.cpython-311.pyc", + "lib/python3.11/__pycache__/decimal.cpython-311.pyc", + "lib/python3.11/__pycache__/difflib.cpython-311.pyc", + "lib/python3.11/__pycache__/dis.cpython-311.pyc", + "lib/python3.11/__pycache__/doctest.cpython-311.pyc", + "lib/python3.11/__pycache__/enum.cpython-311.pyc", + "lib/python3.11/__pycache__/filecmp.cpython-311.pyc", + "lib/python3.11/__pycache__/fileinput.cpython-311.pyc", + "lib/python3.11/__pycache__/fnmatch.cpython-311.pyc", + "lib/python3.11/__pycache__/fractions.cpython-311.pyc", + "lib/python3.11/__pycache__/ftplib.cpython-311.pyc", + "lib/python3.11/__pycache__/functools.cpython-311.pyc", + "lib/python3.11/__pycache__/genericpath.cpython-311.pyc", + "lib/python3.11/__pycache__/getopt.cpython-311.pyc", + "lib/python3.11/__pycache__/getpass.cpython-311.pyc", + "lib/python3.11/__pycache__/gettext.cpython-311.pyc", + "lib/python3.11/__pycache__/glob.cpython-311.pyc", + "lib/python3.11/__pycache__/graphlib.cpython-311.pyc", + "lib/python3.11/__pycache__/gzip.cpython-311.pyc", + "lib/python3.11/__pycache__/hashlib.cpython-311.pyc", + "lib/python3.11/__pycache__/heapq.cpython-311.pyc", + "lib/python3.11/__pycache__/hmac.cpython-311.pyc", + "lib/python3.11/__pycache__/imaplib.cpython-311.pyc", + "lib/python3.11/__pycache__/imghdr.cpython-311.pyc", + "lib/python3.11/__pycache__/imp.cpython-311.pyc", + "lib/python3.11/__pycache__/inspect.cpython-311.pyc", + "lib/python3.11/__pycache__/io.cpython-311.pyc", + "lib/python3.11/__pycache__/ipaddress.cpython-311.pyc", + "lib/python3.11/__pycache__/keyword.cpython-311.pyc", + "lib/python3.11/__pycache__/linecache.cpython-311.pyc", + "lib/python3.11/__pycache__/locale.cpython-311.pyc", + "lib/python3.11/__pycache__/lzma.cpython-311.pyc", + "lib/python3.11/__pycache__/mailbox.cpython-311.pyc", + "lib/python3.11/__pycache__/mailcap.cpython-311.pyc", + "lib/python3.11/__pycache__/mimetypes.cpython-311.pyc", + "lib/python3.11/__pycache__/modulefinder.cpython-311.pyc", + "lib/python3.11/__pycache__/netrc.cpython-311.pyc", + "lib/python3.11/__pycache__/nntplib.cpython-311.pyc", + "lib/python3.11/__pycache__/ntpath.cpython-311.pyc", + "lib/python3.11/__pycache__/nturl2path.cpython-311.pyc", + "lib/python3.11/__pycache__/numbers.cpython-311.pyc", + "lib/python3.11/__pycache__/opcode.cpython-311.pyc", + "lib/python3.11/__pycache__/operator.cpython-311.pyc", + "lib/python3.11/__pycache__/optparse.cpython-311.pyc", + "lib/python3.11/__pycache__/os.cpython-311.pyc", + "lib/python3.11/__pycache__/pathlib.cpython-311.pyc", + "lib/python3.11/__pycache__/pdb.cpython-311.pyc", + "lib/python3.11/__pycache__/pickle.cpython-311.pyc", + "lib/python3.11/__pycache__/pickletools.cpython-311.pyc", + "lib/python3.11/__pycache__/pipes.cpython-311.pyc", + "lib/python3.11/__pycache__/pkgutil.cpython-311.pyc", + "lib/python3.11/__pycache__/platform.cpython-311.pyc", + "lib/python3.11/__pycache__/plistlib.cpython-311.pyc", + "lib/python3.11/__pycache__/poplib.cpython-311.pyc", + "lib/python3.11/__pycache__/posixpath.cpython-311.pyc", + "lib/python3.11/__pycache__/pprint.cpython-311.pyc", + "lib/python3.11/__pycache__/profile.cpython-311.pyc", + "lib/python3.11/__pycache__/pstats.cpython-311.pyc", + "lib/python3.11/__pycache__/pty.cpython-311.pyc", + "lib/python3.11/__pycache__/py_compile.cpython-311.pyc", + "lib/python3.11/__pycache__/pyclbr.cpython-311.pyc", + "lib/python3.11/__pycache__/pydoc.cpython-311.pyc", + "lib/python3.11/__pycache__/queue.cpython-311.pyc", + "lib/python3.11/__pycache__/quopri.cpython-311.pyc", + "lib/python3.11/__pycache__/random.cpython-311.pyc", + "lib/python3.11/__pycache__/reprlib.cpython-311.pyc", + "lib/python3.11/__pycache__/rlcompleter.cpython-311.pyc", + "lib/python3.11/__pycache__/runpy.cpython-311.pyc", + "lib/python3.11/__pycache__/sched.cpython-311.pyc", + "lib/python3.11/__pycache__/secrets.cpython-311.pyc", + "lib/python3.11/__pycache__/selectors.cpython-311.pyc", + "lib/python3.11/__pycache__/shelve.cpython-311.pyc", + "lib/python3.11/__pycache__/shlex.cpython-311.pyc", + "lib/python3.11/__pycache__/shutil.cpython-311.pyc", + "lib/python3.11/__pycache__/signal.cpython-311.pyc", + "lib/python3.11/__pycache__/site.cpython-311.pyc", + "lib/python3.11/__pycache__/smtpd.cpython-311.pyc", + "lib/python3.11/__pycache__/smtplib.cpython-311.pyc", + "lib/python3.11/__pycache__/sndhdr.cpython-311.pyc", + "lib/python3.11/__pycache__/socket.cpython-311.pyc", + "lib/python3.11/__pycache__/socketserver.cpython-311.pyc", + "lib/python3.11/__pycache__/sre_compile.cpython-311.pyc", + "lib/python3.11/__pycache__/sre_constants.cpython-311.pyc", + "lib/python3.11/__pycache__/sre_parse.cpython-311.pyc", + "lib/python3.11/__pycache__/ssl.cpython-311.pyc", + "lib/python3.11/__pycache__/stat.cpython-311.pyc", + "lib/python3.11/__pycache__/statistics.cpython-311.pyc", + "lib/python3.11/__pycache__/string.cpython-311.pyc", + "lib/python3.11/__pycache__/stringprep.cpython-311.pyc", + "lib/python3.11/__pycache__/struct.cpython-311.pyc", + "lib/python3.11/__pycache__/subprocess.cpython-311.pyc", + "lib/python3.11/__pycache__/sunau.cpython-311.pyc", + "lib/python3.11/__pycache__/symtable.cpython-311.pyc", + "lib/python3.11/__pycache__/sysconfig.cpython-311.pyc", + "lib/python3.11/__pycache__/tabnanny.cpython-311.pyc", + "lib/python3.11/__pycache__/tarfile.cpython-311.pyc", + "lib/python3.11/__pycache__/telnetlib.cpython-311.pyc", + "lib/python3.11/__pycache__/tempfile.cpython-311.pyc", + "lib/python3.11/__pycache__/textwrap.cpython-311.pyc", + "lib/python3.11/__pycache__/this.cpython-311.pyc", + "lib/python3.11/__pycache__/threading.cpython-311.pyc", + "lib/python3.11/__pycache__/timeit.cpython-311.pyc", + "lib/python3.11/__pycache__/token.cpython-311.pyc", + "lib/python3.11/__pycache__/tokenize.cpython-311.pyc", + "lib/python3.11/__pycache__/trace.cpython-311.pyc", + "lib/python3.11/__pycache__/traceback.cpython-311.pyc", + "lib/python3.11/__pycache__/tracemalloc.cpython-311.pyc", + "lib/python3.11/__pycache__/tty.cpython-311.pyc", + "lib/python3.11/__pycache__/turtle.cpython-311.pyc", + "lib/python3.11/__pycache__/types.cpython-311.pyc", + "lib/python3.11/__pycache__/typing.cpython-311.pyc", + "lib/python3.11/__pycache__/uu.cpython-311.pyc", + "lib/python3.11/__pycache__/uuid.cpython-311.pyc", + "lib/python3.11/__pycache__/warnings.cpython-311.pyc", + "lib/python3.11/__pycache__/wave.cpython-311.pyc", + "lib/python3.11/__pycache__/weakref.cpython-311.pyc", + "lib/python3.11/__pycache__/webbrowser.cpython-311.pyc", + "lib/python3.11/__pycache__/xdrlib.cpython-311.pyc", + "lib/python3.11/__pycache__/zipapp.cpython-311.pyc", + "lib/python3.11/__pycache__/zipfile.cpython-311.pyc", + "lib/python3.11/__pycache__/zipimport.cpython-311.pyc", + "lib/python3.11/_aix_support.py", + "lib/python3.11/_bootsubprocess.py", + "lib/python3.11/_collections_abc.py", + "lib/python3.11/_compat_pickle.py", + "lib/python3.11/_compression.py", + "lib/python3.11/_markupbase.py", + "lib/python3.11/_osx_support.py", + "lib/python3.11/_py_abc.py", + "lib/python3.11/_pydecimal.py", + "lib/python3.11/_pyio.py", + "lib/python3.11/_sitebuiltins.py", + "lib/python3.11/_strptime.py", + "lib/python3.11/_sysconfigdata__darwin_darwin.py", + "lib/python3.11/_sysconfigdata__darwin_darwin.py.orig", + "lib/python3.11/_sysconfigdata_arm64_apple_darwin20_0_0.py", + "lib/python3.11/_threading_local.py", + "lib/python3.11/_weakrefset.py", + "lib/python3.11/abc.py", + "lib/python3.11/aifc.py", + "lib/python3.11/antigravity.py", + "lib/python3.11/argparse.py", + "lib/python3.11/ast.py", + "lib/python3.11/asynchat.py", + "lib/python3.11/asyncio/__init__.py", + "lib/python3.11/asyncio/__main__.py", + "lib/python3.11/asyncio/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/base_events.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/base_futures.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/base_subprocess.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/base_tasks.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/constants.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/coroutines.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/events.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/exceptions.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/format_helpers.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/futures.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/locks.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/log.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/mixins.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/proactor_events.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/protocols.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/queues.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/runners.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/selector_events.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/sslproto.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/staggered.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/streams.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/subprocess.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/taskgroups.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/tasks.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/threads.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/timeouts.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/transports.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/trsock.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/unix_events.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/windows_events.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/windows_utils.cpython-311.pyc", + "lib/python3.11/asyncio/base_events.py", + "lib/python3.11/asyncio/base_futures.py", + "lib/python3.11/asyncio/base_subprocess.py", + "lib/python3.11/asyncio/base_tasks.py", + "lib/python3.11/asyncio/constants.py", + "lib/python3.11/asyncio/coroutines.py", + "lib/python3.11/asyncio/events.py", + "lib/python3.11/asyncio/exceptions.py", + "lib/python3.11/asyncio/format_helpers.py", + "lib/python3.11/asyncio/futures.py", + "lib/python3.11/asyncio/locks.py", + "lib/python3.11/asyncio/log.py", + "lib/python3.11/asyncio/mixins.py", + "lib/python3.11/asyncio/proactor_events.py", + "lib/python3.11/asyncio/protocols.py", + "lib/python3.11/asyncio/queues.py", + "lib/python3.11/asyncio/runners.py", + "lib/python3.11/asyncio/selector_events.py", + "lib/python3.11/asyncio/sslproto.py", + "lib/python3.11/asyncio/staggered.py", + "lib/python3.11/asyncio/streams.py", + "lib/python3.11/asyncio/subprocess.py", + "lib/python3.11/asyncio/taskgroups.py", + "lib/python3.11/asyncio/tasks.py", + "lib/python3.11/asyncio/threads.py", + "lib/python3.11/asyncio/timeouts.py", + "lib/python3.11/asyncio/transports.py", + "lib/python3.11/asyncio/trsock.py", + "lib/python3.11/asyncio/unix_events.py", + "lib/python3.11/asyncio/windows_events.py", + "lib/python3.11/asyncio/windows_utils.py", + "lib/python3.11/asyncore.py", + "lib/python3.11/base64.py", + "lib/python3.11/bdb.py", + "lib/python3.11/bisect.py", + "lib/python3.11/bz2.py", + "lib/python3.11/cProfile.py", + "lib/python3.11/calendar.py", + "lib/python3.11/cgi.py", + "lib/python3.11/cgitb.py", + "lib/python3.11/chunk.py", + "lib/python3.11/cmd.py", + "lib/python3.11/code.py", + "lib/python3.11/codecs.py", + "lib/python3.11/codeop.py", + "lib/python3.11/collections/__init__.py", + "lib/python3.11/collections/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/collections/__pycache__/abc.cpython-311.pyc", + "lib/python3.11/collections/abc.py", + "lib/python3.11/colorsys.py", + "lib/python3.11/compileall.py", + "lib/python3.11/concurrent/__init__.py", + "lib/python3.11/concurrent/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/concurrent/futures/__init__.py", + "lib/python3.11/concurrent/futures/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/concurrent/futures/__pycache__/_base.cpython-311.pyc", + "lib/python3.11/concurrent/futures/__pycache__/process.cpython-311.pyc", + "lib/python3.11/concurrent/futures/__pycache__/thread.cpython-311.pyc", + "lib/python3.11/concurrent/futures/_base.py", + "lib/python3.11/concurrent/futures/process.py", + "lib/python3.11/concurrent/futures/thread.py", + "lib/python3.11/config-3.11-darwin/Makefile", + "lib/python3.11/config-3.11-darwin/Setup", + "lib/python3.11/config-3.11-darwin/Setup.bootstrap", + "lib/python3.11/config-3.11-darwin/Setup.local", + "lib/python3.11/config-3.11-darwin/Setup.stdlib", + "lib/python3.11/config-3.11-darwin/__pycache__/python-config.cpython-311.pyc", + "lib/python3.11/config-3.11-darwin/config.c", + "lib/python3.11/config-3.11-darwin/config.c.in", + "lib/python3.11/config-3.11-darwin/install-sh", + "lib/python3.11/config-3.11-darwin/makesetup", + "lib/python3.11/config-3.11-darwin/python-config.py", + "lib/python3.11/config-3.11-darwin/python.o", + "lib/python3.11/configparser.py", + "lib/python3.11/contextlib.py", + "lib/python3.11/contextvars.py", + "lib/python3.11/copy.py", + "lib/python3.11/copyreg.py", + "lib/python3.11/crypt.py", + "lib/python3.11/csv.py", + "lib/python3.11/ctypes/__init__.py", + "lib/python3.11/ctypes/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/ctypes/__pycache__/_aix.cpython-311.pyc", + "lib/python3.11/ctypes/__pycache__/_endian.cpython-311.pyc", + "lib/python3.11/ctypes/__pycache__/util.cpython-311.pyc", + "lib/python3.11/ctypes/__pycache__/wintypes.cpython-311.pyc", + "lib/python3.11/ctypes/_aix.py", + "lib/python3.11/ctypes/_endian.py", + "lib/python3.11/ctypes/macholib/README.ctypes", + "lib/python3.11/ctypes/macholib/__init__.py", + "lib/python3.11/ctypes/macholib/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/ctypes/macholib/__pycache__/dyld.cpython-311.pyc", + "lib/python3.11/ctypes/macholib/__pycache__/dylib.cpython-311.pyc", + "lib/python3.11/ctypes/macholib/__pycache__/framework.cpython-311.pyc", + "lib/python3.11/ctypes/macholib/dyld.py", + "lib/python3.11/ctypes/macholib/dylib.py", + "lib/python3.11/ctypes/macholib/fetch_macholib", + "lib/python3.11/ctypes/macholib/fetch_macholib.bat", + "lib/python3.11/ctypes/macholib/framework.py", + "lib/python3.11/ctypes/util.py", + "lib/python3.11/ctypes/wintypes.py", + "lib/python3.11/curses/__init__.py", + "lib/python3.11/curses/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/curses/__pycache__/ascii.cpython-311.pyc", + "lib/python3.11/curses/__pycache__/has_key.cpython-311.pyc", + "lib/python3.11/curses/__pycache__/panel.cpython-311.pyc", + "lib/python3.11/curses/__pycache__/textpad.cpython-311.pyc", + "lib/python3.11/curses/ascii.py", + "lib/python3.11/curses/has_key.py", + "lib/python3.11/curses/panel.py", + "lib/python3.11/curses/textpad.py", + "lib/python3.11/dataclasses.py", + "lib/python3.11/datetime.py", + "lib/python3.11/dbm/__init__.py", + "lib/python3.11/dbm/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/dbm/__pycache__/dumb.cpython-311.pyc", + "lib/python3.11/dbm/__pycache__/gnu.cpython-311.pyc", + "lib/python3.11/dbm/__pycache__/ndbm.cpython-311.pyc", + "lib/python3.11/dbm/dumb.py", + "lib/python3.11/dbm/gnu.py", + "lib/python3.11/dbm/ndbm.py", + "lib/python3.11/decimal.py", + "lib/python3.11/difflib.py", + "lib/python3.11/dis.py", + "lib/python3.11/distutils/README", + "lib/python3.11/distutils/__init__.py", + "lib/python3.11/distutils/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/_msvccompiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/archive_util.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/bcppcompiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/ccompiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/cmd.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/config.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/core.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/cygwinccompiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/debug.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/dep_util.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/dir_util.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/dist.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/errors.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/extension.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/fancy_getopt.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/file_util.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/filelist.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/log.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/msvc9compiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/msvccompiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/spawn.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/sysconfig.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/text_file.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/unixccompiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/util.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/version.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/versionpredicate.cpython-311.pyc", + "lib/python3.11/distutils/_msvccompiler.py", + "lib/python3.11/distutils/archive_util.py", + "lib/python3.11/distutils/bcppcompiler.py", + "lib/python3.11/distutils/ccompiler.py", + "lib/python3.11/distutils/cmd.py", + "lib/python3.11/distutils/command/__init__.py", + "lib/python3.11/distutils/command/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/bdist.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/bdist_dumb.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/bdist_rpm.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/build.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/build_clib.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/build_ext.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/build_py.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/build_scripts.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/check.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/clean.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/config.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/install.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/install_data.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/install_egg_info.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/install_headers.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/install_lib.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/install_scripts.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/register.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/sdist.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/upload.cpython-311.pyc", + "lib/python3.11/distutils/command/bdist.py", + "lib/python3.11/distutils/command/bdist_dumb.py", + "lib/python3.11/distutils/command/bdist_rpm.py", + "lib/python3.11/distutils/command/build.py", + "lib/python3.11/distutils/command/build_clib.py", + "lib/python3.11/distutils/command/build_ext.py", + "lib/python3.11/distutils/command/build_py.py", + "lib/python3.11/distutils/command/build_scripts.py", + "lib/python3.11/distutils/command/check.py", + "lib/python3.11/distutils/command/clean.py", + "lib/python3.11/distutils/command/command_template", + "lib/python3.11/distutils/command/config.py", + "lib/python3.11/distutils/command/install.py", + "lib/python3.11/distutils/command/install_data.py", + "lib/python3.11/distutils/command/install_egg_info.py", + "lib/python3.11/distutils/command/install_headers.py", + "lib/python3.11/distutils/command/install_lib.py", + "lib/python3.11/distutils/command/install_scripts.py", + "lib/python3.11/distutils/command/register.py", + "lib/python3.11/distutils/command/sdist.py", + "lib/python3.11/distutils/command/upload.py", + "lib/python3.11/distutils/config.py", + "lib/python3.11/distutils/core.py", + "lib/python3.11/distutils/cygwinccompiler.py", + "lib/python3.11/distutils/debug.py", + "lib/python3.11/distutils/dep_util.py", + "lib/python3.11/distutils/dir_util.py", + "lib/python3.11/distutils/dist.py", + "lib/python3.11/distutils/errors.py", + "lib/python3.11/distutils/extension.py", + "lib/python3.11/distutils/fancy_getopt.py", + "lib/python3.11/distutils/file_util.py", + "lib/python3.11/distutils/filelist.py", + "lib/python3.11/distutils/log.py", + "lib/python3.11/distutils/msvc9compiler.py", + "lib/python3.11/distutils/msvccompiler.py", + "lib/python3.11/distutils/spawn.py", + "lib/python3.11/distutils/sysconfig.py", + "lib/python3.11/distutils/tests/Setup.sample", + "lib/python3.11/distutils/tests/__init__.py", + "lib/python3.11/distutils/tests/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/support.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_archive_util.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_bdist.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_bdist_dumb.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_bdist_rpm.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_build.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_build_clib.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_build_ext.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_build_py.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_build_scripts.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_check.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_clean.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_cmd.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_config.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_config_cmd.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_core.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_cygwinccompiler.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_dep_util.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_dir_util.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_dist.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_extension.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_file_util.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_filelist.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_install.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_install_data.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_install_headers.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_install_lib.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_install_scripts.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_log.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_msvc9compiler.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_msvccompiler.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_register.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_sdist.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_spawn.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_sysconfig.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_text_file.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_unixccompiler.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_upload.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_util.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_version.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_versionpredicate.cpython-311.pyc", + "lib/python3.11/distutils/tests/includetest.rst", + "lib/python3.11/distutils/tests/support.py", + "lib/python3.11/distutils/tests/test_archive_util.py", + "lib/python3.11/distutils/tests/test_bdist.py", + "lib/python3.11/distutils/tests/test_bdist_dumb.py", + "lib/python3.11/distutils/tests/test_bdist_rpm.py", + "lib/python3.11/distutils/tests/test_build.py", + "lib/python3.11/distutils/tests/test_build_clib.py", + "lib/python3.11/distutils/tests/test_build_ext.py", + "lib/python3.11/distutils/tests/test_build_py.py", + "lib/python3.11/distutils/tests/test_build_scripts.py", + "lib/python3.11/distutils/tests/test_check.py", + "lib/python3.11/distutils/tests/test_clean.py", + "lib/python3.11/distutils/tests/test_cmd.py", + "lib/python3.11/distutils/tests/test_config.py", + "lib/python3.11/distutils/tests/test_config_cmd.py", + "lib/python3.11/distutils/tests/test_core.py", + "lib/python3.11/distutils/tests/test_cygwinccompiler.py", + "lib/python3.11/distutils/tests/test_dep_util.py", + "lib/python3.11/distutils/tests/test_dir_util.py", + "lib/python3.11/distutils/tests/test_dist.py", + "lib/python3.11/distutils/tests/test_extension.py", + "lib/python3.11/distutils/tests/test_file_util.py", + "lib/python3.11/distutils/tests/test_filelist.py", + "lib/python3.11/distutils/tests/test_install.py", + "lib/python3.11/distutils/tests/test_install_data.py", + "lib/python3.11/distutils/tests/test_install_headers.py", + "lib/python3.11/distutils/tests/test_install_lib.py", + "lib/python3.11/distutils/tests/test_install_scripts.py", + "lib/python3.11/distutils/tests/test_log.py", + "lib/python3.11/distutils/tests/test_msvc9compiler.py", + "lib/python3.11/distutils/tests/test_msvccompiler.py", + "lib/python3.11/distutils/tests/test_register.py", + "lib/python3.11/distutils/tests/test_sdist.py", + "lib/python3.11/distutils/tests/test_spawn.py", + "lib/python3.11/distutils/tests/test_sysconfig.py", + "lib/python3.11/distutils/tests/test_text_file.py", + "lib/python3.11/distutils/tests/test_unixccompiler.py", + "lib/python3.11/distutils/tests/test_upload.py", + "lib/python3.11/distutils/tests/test_util.py", + "lib/python3.11/distutils/tests/test_version.py", + "lib/python3.11/distutils/tests/test_versionpredicate.py", + "lib/python3.11/distutils/tests/xxmodule.c", + "lib/python3.11/distutils/text_file.py", + "lib/python3.11/distutils/unixccompiler.py", + "lib/python3.11/distutils/util.py", + "lib/python3.11/distutils/version.py", + "lib/python3.11/distutils/versionpredicate.py", + "lib/python3.11/doctest.py", + "lib/python3.11/email/__init__.py", + "lib/python3.11/email/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/email/__pycache__/_encoded_words.cpython-311.pyc", + "lib/python3.11/email/__pycache__/_header_value_parser.cpython-311.pyc", + "lib/python3.11/email/__pycache__/_parseaddr.cpython-311.pyc", + "lib/python3.11/email/__pycache__/_policybase.cpython-311.pyc", + "lib/python3.11/email/__pycache__/base64mime.cpython-311.pyc", + "lib/python3.11/email/__pycache__/charset.cpython-311.pyc", + "lib/python3.11/email/__pycache__/contentmanager.cpython-311.pyc", + "lib/python3.11/email/__pycache__/encoders.cpython-311.pyc", + "lib/python3.11/email/__pycache__/errors.cpython-311.pyc", + "lib/python3.11/email/__pycache__/feedparser.cpython-311.pyc", + "lib/python3.11/email/__pycache__/generator.cpython-311.pyc", + "lib/python3.11/email/__pycache__/header.cpython-311.pyc", + "lib/python3.11/email/__pycache__/headerregistry.cpython-311.pyc", + "lib/python3.11/email/__pycache__/iterators.cpython-311.pyc", + "lib/python3.11/email/__pycache__/message.cpython-311.pyc", + "lib/python3.11/email/__pycache__/parser.cpython-311.pyc", + "lib/python3.11/email/__pycache__/policy.cpython-311.pyc", + "lib/python3.11/email/__pycache__/quoprimime.cpython-311.pyc", + "lib/python3.11/email/__pycache__/utils.cpython-311.pyc", + "lib/python3.11/email/_encoded_words.py", + "lib/python3.11/email/_header_value_parser.py", + "lib/python3.11/email/_parseaddr.py", + "lib/python3.11/email/_policybase.py", + "lib/python3.11/email/architecture.rst", + "lib/python3.11/email/base64mime.py", + "lib/python3.11/email/charset.py", + "lib/python3.11/email/contentmanager.py", + "lib/python3.11/email/encoders.py", + "lib/python3.11/email/errors.py", + "lib/python3.11/email/feedparser.py", + "lib/python3.11/email/generator.py", + "lib/python3.11/email/header.py", + "lib/python3.11/email/headerregistry.py", + "lib/python3.11/email/iterators.py", + "lib/python3.11/email/message.py", + "lib/python3.11/email/mime/__init__.py", + "lib/python3.11/email/mime/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/application.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/audio.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/base.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/image.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/message.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/multipart.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/nonmultipart.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/text.cpython-311.pyc", + "lib/python3.11/email/mime/application.py", + "lib/python3.11/email/mime/audio.py", + "lib/python3.11/email/mime/base.py", + "lib/python3.11/email/mime/image.py", + "lib/python3.11/email/mime/message.py", + "lib/python3.11/email/mime/multipart.py", + "lib/python3.11/email/mime/nonmultipart.py", + "lib/python3.11/email/mime/text.py", + "lib/python3.11/email/parser.py", + "lib/python3.11/email/policy.py", + "lib/python3.11/email/quoprimime.py", + "lib/python3.11/email/utils.py", + "lib/python3.11/encodings/__init__.py", + "lib/python3.11/encodings/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/aliases.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/ascii.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/base64_codec.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/big5.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/big5hkscs.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/bz2_codec.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/charmap.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp037.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1006.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1026.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1125.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1140.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1250.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1251.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1252.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1253.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1254.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1255.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1256.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1257.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1258.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp273.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp424.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp437.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp500.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp720.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp737.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp775.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp850.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp852.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp855.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp856.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp857.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp858.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp860.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp861.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp862.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp863.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp864.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp865.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp866.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp869.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp874.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp875.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp932.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp949.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp950.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/euc_jis_2004.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/euc_jisx0213.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/euc_jp.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/euc_kr.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/gb18030.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/gb2312.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/gbk.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/hex_codec.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/hp_roman8.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/hz.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/idna.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_jp.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_jp_1.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_jp_2.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_jp_2004.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_jp_3.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_jp_ext.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_kr.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_1.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_10.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_11.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_13.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_14.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_15.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_16.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_2.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_3.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_4.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_5.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_6.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_7.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_8.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_9.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/johab.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/koi8_r.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/koi8_t.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/koi8_u.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/kz1048.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/latin_1.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_arabic.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_croatian.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_cyrillic.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_farsi.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_greek.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_iceland.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_latin2.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_roman.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_romanian.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_turkish.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mbcs.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/oem.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/palmos.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/ptcp154.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/punycode.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/quopri_codec.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/raw_unicode_escape.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/rot_13.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/shift_jis.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/shift_jis_2004.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/shift_jisx0213.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/tis_620.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/undefined.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/unicode_escape.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_16.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_16_be.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_16_le.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_32.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_32_be.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_32_le.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_7.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_8.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_8_sig.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/uu_codec.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/zlib_codec.cpython-311.pyc", + "lib/python3.11/encodings/aliases.py", + "lib/python3.11/encodings/ascii.py", + "lib/python3.11/encodings/base64_codec.py", + "lib/python3.11/encodings/big5.py", + "lib/python3.11/encodings/big5hkscs.py", + "lib/python3.11/encodings/bz2_codec.py", + "lib/python3.11/encodings/charmap.py", + "lib/python3.11/encodings/cp037.py", + "lib/python3.11/encodings/cp1006.py", + "lib/python3.11/encodings/cp1026.py", + "lib/python3.11/encodings/cp1125.py", + "lib/python3.11/encodings/cp1140.py", + "lib/python3.11/encodings/cp1250.py", + "lib/python3.11/encodings/cp1251.py", + "lib/python3.11/encodings/cp1252.py", + "lib/python3.11/encodings/cp1253.py", + "lib/python3.11/encodings/cp1254.py", + "lib/python3.11/encodings/cp1255.py", + "lib/python3.11/encodings/cp1256.py", + "lib/python3.11/encodings/cp1257.py", + "lib/python3.11/encodings/cp1258.py", + "lib/python3.11/encodings/cp273.py", + "lib/python3.11/encodings/cp424.py", + "lib/python3.11/encodings/cp437.py", + "lib/python3.11/encodings/cp500.py", + "lib/python3.11/encodings/cp720.py", + "lib/python3.11/encodings/cp737.py", + "lib/python3.11/encodings/cp775.py", + "lib/python3.11/encodings/cp850.py", + "lib/python3.11/encodings/cp852.py", + "lib/python3.11/encodings/cp855.py", + "lib/python3.11/encodings/cp856.py", + "lib/python3.11/encodings/cp857.py", + "lib/python3.11/encodings/cp858.py", + "lib/python3.11/encodings/cp860.py", + "lib/python3.11/encodings/cp861.py", + "lib/python3.11/encodings/cp862.py", + "lib/python3.11/encodings/cp863.py", + "lib/python3.11/encodings/cp864.py", + "lib/python3.11/encodings/cp865.py", + "lib/python3.11/encodings/cp866.py", + "lib/python3.11/encodings/cp869.py", + "lib/python3.11/encodings/cp874.py", + "lib/python3.11/encodings/cp875.py", + "lib/python3.11/encodings/cp932.py", + "lib/python3.11/encodings/cp949.py", + "lib/python3.11/encodings/cp950.py", + "lib/python3.11/encodings/euc_jis_2004.py", + "lib/python3.11/encodings/euc_jisx0213.py", + "lib/python3.11/encodings/euc_jp.py", + "lib/python3.11/encodings/euc_kr.py", + "lib/python3.11/encodings/gb18030.py", + "lib/python3.11/encodings/gb2312.py", + "lib/python3.11/encodings/gbk.py", + "lib/python3.11/encodings/hex_codec.py", + "lib/python3.11/encodings/hp_roman8.py", + "lib/python3.11/encodings/hz.py", + "lib/python3.11/encodings/idna.py", + "lib/python3.11/encodings/iso2022_jp.py", + "lib/python3.11/encodings/iso2022_jp_1.py", + "lib/python3.11/encodings/iso2022_jp_2.py", + "lib/python3.11/encodings/iso2022_jp_2004.py", + "lib/python3.11/encodings/iso2022_jp_3.py", + "lib/python3.11/encodings/iso2022_jp_ext.py", + "lib/python3.11/encodings/iso2022_kr.py", + "lib/python3.11/encodings/iso8859_1.py", + "lib/python3.11/encodings/iso8859_10.py", + "lib/python3.11/encodings/iso8859_11.py", + "lib/python3.11/encodings/iso8859_13.py", + "lib/python3.11/encodings/iso8859_14.py", + "lib/python3.11/encodings/iso8859_15.py", + "lib/python3.11/encodings/iso8859_16.py", + "lib/python3.11/encodings/iso8859_2.py", + "lib/python3.11/encodings/iso8859_3.py", + "lib/python3.11/encodings/iso8859_4.py", + "lib/python3.11/encodings/iso8859_5.py", + "lib/python3.11/encodings/iso8859_6.py", + "lib/python3.11/encodings/iso8859_7.py", + "lib/python3.11/encodings/iso8859_8.py", + "lib/python3.11/encodings/iso8859_9.py", + "lib/python3.11/encodings/johab.py", + "lib/python3.11/encodings/koi8_r.py", + "lib/python3.11/encodings/koi8_t.py", + "lib/python3.11/encodings/koi8_u.py", + "lib/python3.11/encodings/kz1048.py", + "lib/python3.11/encodings/latin_1.py", + "lib/python3.11/encodings/mac_arabic.py", + "lib/python3.11/encodings/mac_croatian.py", + "lib/python3.11/encodings/mac_cyrillic.py", + "lib/python3.11/encodings/mac_farsi.py", + "lib/python3.11/encodings/mac_greek.py", + "lib/python3.11/encodings/mac_iceland.py", + "lib/python3.11/encodings/mac_latin2.py", + "lib/python3.11/encodings/mac_roman.py", + "lib/python3.11/encodings/mac_romanian.py", + "lib/python3.11/encodings/mac_turkish.py", + "lib/python3.11/encodings/mbcs.py", + "lib/python3.11/encodings/oem.py", + "lib/python3.11/encodings/palmos.py", + "lib/python3.11/encodings/ptcp154.py", + "lib/python3.11/encodings/punycode.py", + "lib/python3.11/encodings/quopri_codec.py", + "lib/python3.11/encodings/raw_unicode_escape.py", + "lib/python3.11/encodings/rot_13.py", + "lib/python3.11/encodings/shift_jis.py", + "lib/python3.11/encodings/shift_jis_2004.py", + "lib/python3.11/encodings/shift_jisx0213.py", + "lib/python3.11/encodings/tis_620.py", + "lib/python3.11/encodings/undefined.py", + "lib/python3.11/encodings/unicode_escape.py", + "lib/python3.11/encodings/utf_16.py", + "lib/python3.11/encodings/utf_16_be.py", + "lib/python3.11/encodings/utf_16_le.py", + "lib/python3.11/encodings/utf_32.py", + "lib/python3.11/encodings/utf_32_be.py", + "lib/python3.11/encodings/utf_32_le.py", + "lib/python3.11/encodings/utf_7.py", + "lib/python3.11/encodings/utf_8.py", + "lib/python3.11/encodings/utf_8_sig.py", + "lib/python3.11/encodings/uu_codec.py", + "lib/python3.11/encodings/zlib_codec.py", + "lib/python3.11/ensurepip/__init__.py", + "lib/python3.11/ensurepip/__main__.py", + "lib/python3.11/ensurepip/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/ensurepip/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/ensurepip/__pycache__/_uninstall.cpython-311.pyc", + "lib/python3.11/ensurepip/_bundled/pip-23.2.1-py3-none-any.whl", + "lib/python3.11/ensurepip/_bundled/setuptools-65.5.0-py3-none-any.whl", + "lib/python3.11/ensurepip/_uninstall.py", + "lib/python3.11/enum.py", + "lib/python3.11/filecmp.py", + "lib/python3.11/fileinput.py", + "lib/python3.11/fnmatch.py", + "lib/python3.11/fractions.py", + "lib/python3.11/ftplib.py", + "lib/python3.11/functools.py", + "lib/python3.11/genericpath.py", + "lib/python3.11/getopt.py", + "lib/python3.11/getpass.py", + "lib/python3.11/gettext.py", + "lib/python3.11/glob.py", + "lib/python3.11/graphlib.py", + "lib/python3.11/gzip.py", + "lib/python3.11/hashlib.py", + "lib/python3.11/heapq.py", + "lib/python3.11/hmac.py", + "lib/python3.11/html/__init__.py", + "lib/python3.11/html/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/html/__pycache__/entities.cpython-311.pyc", + "lib/python3.11/html/__pycache__/parser.cpython-311.pyc", + "lib/python3.11/html/entities.py", + "lib/python3.11/html/parser.py", + "lib/python3.11/http/__init__.py", + "lib/python3.11/http/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/http/__pycache__/client.cpython-311.pyc", + "lib/python3.11/http/__pycache__/cookiejar.cpython-311.pyc", + "lib/python3.11/http/__pycache__/cookies.cpython-311.pyc", + "lib/python3.11/http/__pycache__/server.cpython-311.pyc", + "lib/python3.11/http/client.py", + "lib/python3.11/http/cookiejar.py", + "lib/python3.11/http/cookies.py", + "lib/python3.11/http/server.py", + "lib/python3.11/idlelib/CREDITS.txt", + "lib/python3.11/idlelib/ChangeLog", + "lib/python3.11/idlelib/HISTORY.txt", + "lib/python3.11/idlelib/Icons/README.txt", + "lib/python3.11/idlelib/Icons/folder.gif", + "lib/python3.11/idlelib/Icons/idle.ico", + "lib/python3.11/idlelib/Icons/idle_16.gif", + "lib/python3.11/idlelib/Icons/idle_16.png", + "lib/python3.11/idlelib/Icons/idle_256.png", + "lib/python3.11/idlelib/Icons/idle_32.gif", + "lib/python3.11/idlelib/Icons/idle_32.png", + "lib/python3.11/idlelib/Icons/idle_48.gif", + "lib/python3.11/idlelib/Icons/idle_48.png", + "lib/python3.11/idlelib/Icons/minusnode.gif", + "lib/python3.11/idlelib/Icons/openfolder.gif", + "lib/python3.11/idlelib/Icons/plusnode.gif", + "lib/python3.11/idlelib/Icons/python.gif", + "lib/python3.11/idlelib/Icons/tk.gif", + "lib/python3.11/idlelib/NEWS.txt", + "lib/python3.11/idlelib/NEWS2x.txt", + "lib/python3.11/idlelib/README.txt", + "lib/python3.11/idlelib/TODO.txt", + "lib/python3.11/idlelib/__init__.py", + "lib/python3.11/idlelib/__main__.py", + "lib/python3.11/idlelib/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/autocomplete.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/autocomplete_w.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/autoexpand.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/browser.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/calltip.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/calltip_w.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/codecontext.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/colorizer.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/config.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/config_key.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/configdialog.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/debugger.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/debugger_r.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/debugobj.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/debugobj_r.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/delegator.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/dynoption.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/editor.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/filelist.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/format.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/grep.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/help.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/help_about.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/history.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/hyperparser.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/idle.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/iomenu.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/macosx.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/mainmenu.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/multicall.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/outwin.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/parenmatch.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/pathbrowser.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/percolator.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/pyparse.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/pyshell.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/query.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/redirector.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/replace.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/rpc.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/run.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/runscript.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/scrolledlist.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/search.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/searchbase.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/searchengine.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/sidebar.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/squeezer.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/stackviewer.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/statusbar.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/textview.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/tooltip.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/tree.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/undo.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/util.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/window.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/zoomheight.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/zzdummy.cpython-311.pyc", + "lib/python3.11/idlelib/autocomplete.py", + "lib/python3.11/idlelib/autocomplete_w.py", + "lib/python3.11/idlelib/autoexpand.py", + "lib/python3.11/idlelib/browser.py", + "lib/python3.11/idlelib/calltip.py", + "lib/python3.11/idlelib/calltip_w.py", + "lib/python3.11/idlelib/codecontext.py", + "lib/python3.11/idlelib/colorizer.py", + "lib/python3.11/idlelib/config-extensions.def", + "lib/python3.11/idlelib/config-highlight.def", + "lib/python3.11/idlelib/config-keys.def", + "lib/python3.11/idlelib/config-main.def", + "lib/python3.11/idlelib/config.py", + "lib/python3.11/idlelib/config_key.py", + "lib/python3.11/idlelib/configdialog.py", + "lib/python3.11/idlelib/debugger.py", + "lib/python3.11/idlelib/debugger_r.py", + "lib/python3.11/idlelib/debugobj.py", + "lib/python3.11/idlelib/debugobj_r.py", + "lib/python3.11/idlelib/delegator.py", + "lib/python3.11/idlelib/dynoption.py", + "lib/python3.11/idlelib/editor.py", + "lib/python3.11/idlelib/extend.txt", + "lib/python3.11/idlelib/filelist.py", + "lib/python3.11/idlelib/format.py", + "lib/python3.11/idlelib/grep.py", + "lib/python3.11/idlelib/help.html", + "lib/python3.11/idlelib/help.py", + "lib/python3.11/idlelib/help_about.py", + "lib/python3.11/idlelib/history.py", + "lib/python3.11/idlelib/hyperparser.py", + "lib/python3.11/idlelib/idle.bat", + "lib/python3.11/idlelib/idle.py", + "lib/python3.11/idlelib/idle.pyw", + "lib/python3.11/idlelib/idle_test/README.txt", + "lib/python3.11/idlelib/idle_test/__init__.py", + "lib/python3.11/idlelib/idle_test/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/htest.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/mock_idle.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/mock_tk.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/template.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_autocomplete.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_autocomplete_w.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_autoexpand.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_browser.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_calltip.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_calltip_w.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_codecontext.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_colorizer.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_config.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_config_key.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_configdialog.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_debugger.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_debugger_r.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_debugobj.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_debugobj_r.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_delegator.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_editmenu.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_editor.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_filelist.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_format.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_grep.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_help.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_help_about.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_history.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_hyperparser.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_iomenu.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_macosx.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_mainmenu.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_multicall.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_outwin.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_parenmatch.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_pathbrowser.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_percolator.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_pyparse.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_pyshell.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_query.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_redirector.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_replace.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_rpc.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_run.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_runscript.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_scrolledlist.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_search.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_searchbase.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_searchengine.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_sidebar.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_squeezer.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_stackviewer.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_statusbar.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_text.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_textview.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_tooltip.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_tree.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_undo.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_util.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_warning.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_window.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_zoomheight.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_zzdummy.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/tkinter_testing_utils.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/example_noext", + "lib/python3.11/idlelib/idle_test/example_stub.pyi", + "lib/python3.11/idlelib/idle_test/htest.py", + "lib/python3.11/idlelib/idle_test/mock_idle.py", + "lib/python3.11/idlelib/idle_test/mock_tk.py", + "lib/python3.11/idlelib/idle_test/template.py", + "lib/python3.11/idlelib/idle_test/test_autocomplete.py", + "lib/python3.11/idlelib/idle_test/test_autocomplete_w.py", + "lib/python3.11/idlelib/idle_test/test_autoexpand.py", + "lib/python3.11/idlelib/idle_test/test_browser.py", + "lib/python3.11/idlelib/idle_test/test_calltip.py", + "lib/python3.11/idlelib/idle_test/test_calltip_w.py", + "lib/python3.11/idlelib/idle_test/test_codecontext.py", + "lib/python3.11/idlelib/idle_test/test_colorizer.py", + "lib/python3.11/idlelib/idle_test/test_config.py", + "lib/python3.11/idlelib/idle_test/test_config_key.py", + "lib/python3.11/idlelib/idle_test/test_configdialog.py", + "lib/python3.11/idlelib/idle_test/test_debugger.py", + "lib/python3.11/idlelib/idle_test/test_debugger_r.py", + "lib/python3.11/idlelib/idle_test/test_debugobj.py", + "lib/python3.11/idlelib/idle_test/test_debugobj_r.py", + "lib/python3.11/idlelib/idle_test/test_delegator.py", + "lib/python3.11/idlelib/idle_test/test_editmenu.py", + "lib/python3.11/idlelib/idle_test/test_editor.py", + "lib/python3.11/idlelib/idle_test/test_filelist.py", + "lib/python3.11/idlelib/idle_test/test_format.py", + "lib/python3.11/idlelib/idle_test/test_grep.py", + "lib/python3.11/idlelib/idle_test/test_help.py", + "lib/python3.11/idlelib/idle_test/test_help_about.py", + "lib/python3.11/idlelib/idle_test/test_history.py", + "lib/python3.11/idlelib/idle_test/test_hyperparser.py", + "lib/python3.11/idlelib/idle_test/test_iomenu.py", + "lib/python3.11/idlelib/idle_test/test_macosx.py", + "lib/python3.11/idlelib/idle_test/test_mainmenu.py", + "lib/python3.11/idlelib/idle_test/test_multicall.py", + "lib/python3.11/idlelib/idle_test/test_outwin.py", + "lib/python3.11/idlelib/idle_test/test_parenmatch.py", + "lib/python3.11/idlelib/idle_test/test_pathbrowser.py", + "lib/python3.11/idlelib/idle_test/test_percolator.py", + "lib/python3.11/idlelib/idle_test/test_pyparse.py", + "lib/python3.11/idlelib/idle_test/test_pyshell.py", + "lib/python3.11/idlelib/idle_test/test_query.py", + "lib/python3.11/idlelib/idle_test/test_redirector.py", + "lib/python3.11/idlelib/idle_test/test_replace.py", + "lib/python3.11/idlelib/idle_test/test_rpc.py", + "lib/python3.11/idlelib/idle_test/test_run.py", + "lib/python3.11/idlelib/idle_test/test_runscript.py", + "lib/python3.11/idlelib/idle_test/test_scrolledlist.py", + "lib/python3.11/idlelib/idle_test/test_search.py", + "lib/python3.11/idlelib/idle_test/test_searchbase.py", + "lib/python3.11/idlelib/idle_test/test_searchengine.py", + "lib/python3.11/idlelib/idle_test/test_sidebar.py", + "lib/python3.11/idlelib/idle_test/test_squeezer.py", + "lib/python3.11/idlelib/idle_test/test_stackviewer.py", + "lib/python3.11/idlelib/idle_test/test_statusbar.py", + "lib/python3.11/idlelib/idle_test/test_text.py", + "lib/python3.11/idlelib/idle_test/test_textview.py", + "lib/python3.11/idlelib/idle_test/test_tooltip.py", + "lib/python3.11/idlelib/idle_test/test_tree.py", + "lib/python3.11/idlelib/idle_test/test_undo.py", + "lib/python3.11/idlelib/idle_test/test_util.py", + "lib/python3.11/idlelib/idle_test/test_warning.py", + "lib/python3.11/idlelib/idle_test/test_window.py", + "lib/python3.11/idlelib/idle_test/test_zoomheight.py", + "lib/python3.11/idlelib/idle_test/test_zzdummy.py", + "lib/python3.11/idlelib/idle_test/tkinter_testing_utils.py", + "lib/python3.11/idlelib/iomenu.py", + "lib/python3.11/idlelib/macosx.py", + "lib/python3.11/idlelib/mainmenu.py", + "lib/python3.11/idlelib/multicall.py", + "lib/python3.11/idlelib/outwin.py", + "lib/python3.11/idlelib/parenmatch.py", + "lib/python3.11/idlelib/pathbrowser.py", + "lib/python3.11/idlelib/percolator.py", + "lib/python3.11/idlelib/pyparse.py", + "lib/python3.11/idlelib/pyshell.py", + "lib/python3.11/idlelib/query.py", + "lib/python3.11/idlelib/redirector.py", + "lib/python3.11/idlelib/replace.py", + "lib/python3.11/idlelib/rpc.py", + "lib/python3.11/idlelib/run.py", + "lib/python3.11/idlelib/runscript.py", + "lib/python3.11/idlelib/scrolledlist.py", + "lib/python3.11/idlelib/search.py", + "lib/python3.11/idlelib/searchbase.py", + "lib/python3.11/idlelib/searchengine.py", + "lib/python3.11/idlelib/sidebar.py", + "lib/python3.11/idlelib/squeezer.py", + "lib/python3.11/idlelib/stackviewer.py", + "lib/python3.11/idlelib/statusbar.py", + "lib/python3.11/idlelib/textview.py", + "lib/python3.11/idlelib/tooltip.py", + "lib/python3.11/idlelib/tree.py", + "lib/python3.11/idlelib/undo.py", + "lib/python3.11/idlelib/util.py", + "lib/python3.11/idlelib/window.py", + "lib/python3.11/idlelib/zoomheight.py", + "lib/python3.11/idlelib/zzdummy.py", + "lib/python3.11/imaplib.py", + "lib/python3.11/imghdr.py", + "lib/python3.11/imp.py", + "lib/python3.11/importlib/__init__.py", + "lib/python3.11/importlib/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/_abc.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/_bootstrap.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/_bootstrap_external.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/abc.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/machinery.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/readers.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/simple.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/util.cpython-311.pyc", + "lib/python3.11/importlib/_abc.py", + "lib/python3.11/importlib/_bootstrap.py", + "lib/python3.11/importlib/_bootstrap_external.py", + "lib/python3.11/importlib/abc.py", + "lib/python3.11/importlib/machinery.py", + "lib/python3.11/importlib/metadata/__init__.py", + "lib/python3.11/importlib/metadata/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/importlib/metadata/__pycache__/_adapters.cpython-311.pyc", + "lib/python3.11/importlib/metadata/__pycache__/_collections.cpython-311.pyc", + "lib/python3.11/importlib/metadata/__pycache__/_functools.cpython-311.pyc", + "lib/python3.11/importlib/metadata/__pycache__/_itertools.cpython-311.pyc", + "lib/python3.11/importlib/metadata/__pycache__/_meta.cpython-311.pyc", + "lib/python3.11/importlib/metadata/__pycache__/_text.cpython-311.pyc", + "lib/python3.11/importlib/metadata/_adapters.py", + "lib/python3.11/importlib/metadata/_collections.py", + "lib/python3.11/importlib/metadata/_functools.py", + "lib/python3.11/importlib/metadata/_itertools.py", + "lib/python3.11/importlib/metadata/_meta.py", + "lib/python3.11/importlib/metadata/_text.py", + "lib/python3.11/importlib/readers.py", + "lib/python3.11/importlib/resources/__init__.py", + "lib/python3.11/importlib/resources/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/_adapters.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/_common.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/_itertools.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/_legacy.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/abc.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/readers.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/simple.cpython-311.pyc", + "lib/python3.11/importlib/resources/_adapters.py", + "lib/python3.11/importlib/resources/_common.py", + "lib/python3.11/importlib/resources/_itertools.py", + "lib/python3.11/importlib/resources/_legacy.py", + "lib/python3.11/importlib/resources/abc.py", + "lib/python3.11/importlib/resources/readers.py", + "lib/python3.11/importlib/resources/simple.py", + "lib/python3.11/importlib/simple.py", + "lib/python3.11/importlib/util.py", + "lib/python3.11/inspect.py", + "lib/python3.11/io.py", + "lib/python3.11/ipaddress.py", + "lib/python3.11/json/__init__.py", + "lib/python3.11/json/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/json/__pycache__/decoder.cpython-311.pyc", + "lib/python3.11/json/__pycache__/encoder.cpython-311.pyc", + "lib/python3.11/json/__pycache__/scanner.cpython-311.pyc", + "lib/python3.11/json/__pycache__/tool.cpython-311.pyc", + "lib/python3.11/json/decoder.py", + "lib/python3.11/json/encoder.py", + "lib/python3.11/json/scanner.py", + "lib/python3.11/json/tool.py", + "lib/python3.11/keyword.py", + "lib/python3.11/lib-dynload/_asyncio.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_bisect.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_blake2.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_bz2.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_codecs_cn.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_codecs_hk.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_codecs_iso2022.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_codecs_jp.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_codecs_kr.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_codecs_tw.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_contextvars.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_crypt.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_csv.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_ctypes.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_ctypes_test.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_curses.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_curses_panel.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_datetime.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_dbm.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_decimal.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_elementtree.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_hashlib.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_heapq.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_json.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_lsprof.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_lzma.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_md5.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_multibytecodec.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_multiprocessing.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_opcode.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_pickle.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_posixshmem.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_posixsubprocess.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_queue.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_random.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_scproxy.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_sha1.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_sha256.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_sha3.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_sha512.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_socket.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_sqlite3.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_ssl.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_statistics.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_struct.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_testbuffer.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_testcapi.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_testclinic.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_testimportmultiple.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_testinternalcapi.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_testmultiphase.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_tkinter.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_typing.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_uuid.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_xxsubinterpreters.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_xxtestfuzz.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_zoneinfo.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/array.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/audioop.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/binascii.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/cmath.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/fcntl.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/grp.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/math.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/mmap.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/nis.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/pyexpat.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/readline.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/resource.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/select.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/syslog.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/termios.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/unicodedata.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/xxlimited.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/xxlimited_35.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/zlib.cpython-311-darwin.so", + "lib/python3.11/lib2to3/Grammar.txt", + "lib/python3.11/lib2to3/Grammar3.11.5.final.0.pickle", + "lib/python3.11/lib2to3/PatternGrammar.txt", + "lib/python3.11/lib2to3/PatternGrammar3.11.5.final.0.pickle", + "lib/python3.11/lib2to3/__init__.py", + "lib/python3.11/lib2to3/__main__.py", + "lib/python3.11/lib2to3/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/btm_matcher.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/btm_utils.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/fixer_base.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/fixer_util.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/main.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/patcomp.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/pygram.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/pytree.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/refactor.cpython-311.pyc", + "lib/python3.11/lib2to3/btm_matcher.py", + "lib/python3.11/lib2to3/btm_utils.py", + "lib/python3.11/lib2to3/fixer_base.py", + "lib/python3.11/lib2to3/fixer_util.py", + "lib/python3.11/lib2to3/fixes/__init__.py", + "lib/python3.11/lib2to3/fixes/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_apply.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_asserts.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_basestring.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_buffer.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_dict.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_except.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_exec.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_execfile.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_exitfunc.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_filter.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_funcattrs.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_future.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_getcwdu.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_has_key.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_idioms.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_import.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_imports.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_imports2.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_input.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_intern.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_isinstance.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_itertools.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_itertools_imports.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_long.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_map.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_metaclass.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_methodattrs.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_ne.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_next.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_nonzero.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_numliterals.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_operator.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_paren.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_print.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_raise.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_raw_input.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_reduce.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_reload.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_renames.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_repr.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_set_literal.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_standarderror.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_sys_exc.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_throw.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_tuple_params.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_types.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_unicode.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_urllib.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_ws_comma.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_xrange.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_xreadlines.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_zip.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/fix_apply.py", + "lib/python3.11/lib2to3/fixes/fix_asserts.py", + "lib/python3.11/lib2to3/fixes/fix_basestring.py", + "lib/python3.11/lib2to3/fixes/fix_buffer.py", + "lib/python3.11/lib2to3/fixes/fix_dict.py", + "lib/python3.11/lib2to3/fixes/fix_except.py", + "lib/python3.11/lib2to3/fixes/fix_exec.py", + "lib/python3.11/lib2to3/fixes/fix_execfile.py", + "lib/python3.11/lib2to3/fixes/fix_exitfunc.py", + "lib/python3.11/lib2to3/fixes/fix_filter.py", + "lib/python3.11/lib2to3/fixes/fix_funcattrs.py", + "lib/python3.11/lib2to3/fixes/fix_future.py", + "lib/python3.11/lib2to3/fixes/fix_getcwdu.py", + "lib/python3.11/lib2to3/fixes/fix_has_key.py", + "lib/python3.11/lib2to3/fixes/fix_idioms.py", + "lib/python3.11/lib2to3/fixes/fix_import.py", + "lib/python3.11/lib2to3/fixes/fix_imports.py", + "lib/python3.11/lib2to3/fixes/fix_imports2.py", + "lib/python3.11/lib2to3/fixes/fix_input.py", + "lib/python3.11/lib2to3/fixes/fix_intern.py", + "lib/python3.11/lib2to3/fixes/fix_isinstance.py", + "lib/python3.11/lib2to3/fixes/fix_itertools.py", + "lib/python3.11/lib2to3/fixes/fix_itertools_imports.py", + "lib/python3.11/lib2to3/fixes/fix_long.py", + "lib/python3.11/lib2to3/fixes/fix_map.py", + "lib/python3.11/lib2to3/fixes/fix_metaclass.py", + "lib/python3.11/lib2to3/fixes/fix_methodattrs.py", + "lib/python3.11/lib2to3/fixes/fix_ne.py", + "lib/python3.11/lib2to3/fixes/fix_next.py", + "lib/python3.11/lib2to3/fixes/fix_nonzero.py", + "lib/python3.11/lib2to3/fixes/fix_numliterals.py", + "lib/python3.11/lib2to3/fixes/fix_operator.py", + "lib/python3.11/lib2to3/fixes/fix_paren.py", + "lib/python3.11/lib2to3/fixes/fix_print.py", + "lib/python3.11/lib2to3/fixes/fix_raise.py", + "lib/python3.11/lib2to3/fixes/fix_raw_input.py", + "lib/python3.11/lib2to3/fixes/fix_reduce.py", + "lib/python3.11/lib2to3/fixes/fix_reload.py", + "lib/python3.11/lib2to3/fixes/fix_renames.py", + "lib/python3.11/lib2to3/fixes/fix_repr.py", + "lib/python3.11/lib2to3/fixes/fix_set_literal.py", + "lib/python3.11/lib2to3/fixes/fix_standarderror.py", + "lib/python3.11/lib2to3/fixes/fix_sys_exc.py", + "lib/python3.11/lib2to3/fixes/fix_throw.py", + "lib/python3.11/lib2to3/fixes/fix_tuple_params.py", + "lib/python3.11/lib2to3/fixes/fix_types.py", + "lib/python3.11/lib2to3/fixes/fix_unicode.py", + "lib/python3.11/lib2to3/fixes/fix_urllib.py", + "lib/python3.11/lib2to3/fixes/fix_ws_comma.py", + "lib/python3.11/lib2to3/fixes/fix_xrange.py", + "lib/python3.11/lib2to3/fixes/fix_xreadlines.py", + "lib/python3.11/lib2to3/fixes/fix_zip.py", + "lib/python3.11/lib2to3/main.py", + "lib/python3.11/lib2to3/patcomp.py", + "lib/python3.11/lib2to3/pgen2/__init__.py", + "lib/python3.11/lib2to3/pgen2/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/conv.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/driver.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/grammar.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/literals.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/parse.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/pgen.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/token.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/tokenize.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/conv.py", + "lib/python3.11/lib2to3/pgen2/driver.py", + "lib/python3.11/lib2to3/pgen2/grammar.py", + "lib/python3.11/lib2to3/pgen2/literals.py", + "lib/python3.11/lib2to3/pgen2/parse.py", + "lib/python3.11/lib2to3/pgen2/pgen.py", + "lib/python3.11/lib2to3/pgen2/token.py", + "lib/python3.11/lib2to3/pgen2/tokenize.py", + "lib/python3.11/lib2to3/pygram.py", + "lib/python3.11/lib2to3/pytree.py", + "lib/python3.11/lib2to3/refactor.py", + "lib/python3.11/lib2to3/tests/__init__.py", + "lib/python3.11/lib2to3/tests/__main__.py", + "lib/python3.11/lib2to3/tests/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/pytree_idempotency.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/support.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_all_fixers.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_fixers.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_main.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_parser.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_pytree.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_refactor.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_util.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/README", + "lib/python3.11/lib2to3/tests/data/__pycache__/infinite_recursion.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/__pycache__/py3_test_grammar.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/bom.py", + "lib/python3.11/lib2to3/tests/data/crlf.py", + "lib/python3.11/lib2to3/tests/data/different_encoding.py", + "lib/python3.11/lib2to3/tests/data/false_encoding.py", + "lib/python3.11/lib2to3/tests/data/fixers/__pycache__/bad_order.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/__pycache__/no_fixer_cls.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/__pycache__/parrot_example.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/bad_order.py", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__init__.py", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__pycache__/fix_explicit.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__pycache__/fix_first.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__pycache__/fix_last.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__pycache__/fix_parrot.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__pycache__/fix_preorder.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/fix_explicit.py", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/fix_first.py", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/fix_last.py", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/fix_parrot.py", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/fix_preorder.py", + "lib/python3.11/lib2to3/tests/data/fixers/no_fixer_cls.py", + "lib/python3.11/lib2to3/tests/data/fixers/parrot_example.py", + "lib/python3.11/lib2to3/tests/data/infinite_recursion.py", + "lib/python3.11/lib2to3/tests/data/py2_test_grammar.py", + "lib/python3.11/lib2to3/tests/data/py3_test_grammar.py", + "lib/python3.11/lib2to3/tests/pytree_idempotency.py", + "lib/python3.11/lib2to3/tests/support.py", + "lib/python3.11/lib2to3/tests/test_all_fixers.py", + "lib/python3.11/lib2to3/tests/test_fixers.py", + "lib/python3.11/lib2to3/tests/test_main.py", + "lib/python3.11/lib2to3/tests/test_parser.py", + "lib/python3.11/lib2to3/tests/test_pytree.py", + "lib/python3.11/lib2to3/tests/test_refactor.py", + "lib/python3.11/lib2to3/tests/test_util.py", + "lib/python3.11/linecache.py", + "lib/python3.11/locale.py", + "lib/python3.11/logging/__init__.py", + "lib/python3.11/logging/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/logging/__pycache__/config.cpython-311.pyc", + "lib/python3.11/logging/__pycache__/handlers.cpython-311.pyc", + "lib/python3.11/logging/config.py", + "lib/python3.11/logging/handlers.py", + "lib/python3.11/lzma.py", + "lib/python3.11/mailbox.py", + "lib/python3.11/mailcap.py", + "lib/python3.11/mimetypes.py", + "lib/python3.11/modulefinder.py", + "lib/python3.11/multiprocessing/__init__.py", + "lib/python3.11/multiprocessing/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/connection.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/context.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/forkserver.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/heap.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/managers.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/pool.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/popen_fork.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/popen_forkserver.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/popen_spawn_posix.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/popen_spawn_win32.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/process.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/queues.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/reduction.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/resource_sharer.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/resource_tracker.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/shared_memory.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/sharedctypes.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/spawn.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/synchronize.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/util.cpython-311.pyc", + "lib/python3.11/multiprocessing/connection.py", + "lib/python3.11/multiprocessing/context.py", + "lib/python3.11/multiprocessing/dummy/__init__.py", + "lib/python3.11/multiprocessing/dummy/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/multiprocessing/dummy/__pycache__/connection.cpython-311.pyc", + "lib/python3.11/multiprocessing/dummy/connection.py", + "lib/python3.11/multiprocessing/forkserver.py", + "lib/python3.11/multiprocessing/heap.py", + "lib/python3.11/multiprocessing/managers.py", + "lib/python3.11/multiprocessing/pool.py", + "lib/python3.11/multiprocessing/popen_fork.py", + "lib/python3.11/multiprocessing/popen_forkserver.py", + "lib/python3.11/multiprocessing/popen_spawn_posix.py", + "lib/python3.11/multiprocessing/popen_spawn_win32.py", + "lib/python3.11/multiprocessing/process.py", + "lib/python3.11/multiprocessing/queues.py", + "lib/python3.11/multiprocessing/reduction.py", + "lib/python3.11/multiprocessing/resource_sharer.py", + "lib/python3.11/multiprocessing/resource_tracker.py", + "lib/python3.11/multiprocessing/shared_memory.py", + "lib/python3.11/multiprocessing/sharedctypes.py", + "lib/python3.11/multiprocessing/spawn.py", + "lib/python3.11/multiprocessing/synchronize.py", + "lib/python3.11/multiprocessing/util.py", + "lib/python3.11/netrc.py", + "lib/python3.11/nntplib.py", + "lib/python3.11/ntpath.py", + "lib/python3.11/nturl2path.py", + "lib/python3.11/numbers.py", + "lib/python3.11/opcode.py", + "lib/python3.11/operator.py", + "lib/python3.11/optparse.py", + "lib/python3.11/os.py", + "lib/python3.11/pathlib.py", + "lib/python3.11/pdb.py", + "lib/python3.11/pickle.py", + "lib/python3.11/pickletools.py", + "lib/python3.11/pipes.py", + "lib/python3.11/pkgutil.py", + "lib/python3.11/platform.py", + "lib/python3.11/plistlib.py", + "lib/python3.11/poplib.py", + "lib/python3.11/posixpath.py", + "lib/python3.11/pprint.py", + "lib/python3.11/profile.py", + "lib/python3.11/pstats.py", + "lib/python3.11/pty.py", + "lib/python3.11/py_compile.py", + "lib/python3.11/pyclbr.py", + "lib/python3.11/pydoc.py", + "lib/python3.11/pydoc_data/__init__.py", + "lib/python3.11/pydoc_data/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/pydoc_data/__pycache__/topics.cpython-311.pyc", + "lib/python3.11/pydoc_data/_pydoc.css", + "lib/python3.11/pydoc_data/topics.py", + "lib/python3.11/queue.py", + "lib/python3.11/quopri.py", + "lib/python3.11/random.py", + "lib/python3.11/re/__init__.py", + "lib/python3.11/re/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/re/__pycache__/_casefix.cpython-311.pyc", + "lib/python3.11/re/__pycache__/_compiler.cpython-311.pyc", + "lib/python3.11/re/__pycache__/_constants.cpython-311.pyc", + "lib/python3.11/re/__pycache__/_parser.cpython-311.pyc", + "lib/python3.11/re/_casefix.py", + "lib/python3.11/re/_compiler.py", + "lib/python3.11/re/_constants.py", + "lib/python3.11/re/_parser.py", + "lib/python3.11/reprlib.py", + "lib/python3.11/rlcompleter.py", + "lib/python3.11/runpy.py", + "lib/python3.11/sched.py", + "lib/python3.11/secrets.py", + "lib/python3.11/selectors.py", + "lib/python3.11/shelve.py", + "lib/python3.11/shlex.py", + "lib/python3.11/shutil.py", + "lib/python3.11/signal.py", + "lib/python3.11/site-packages/README.txt", + "lib/python3.11/site.py", + "lib/python3.11/smtpd.py", + "lib/python3.11/smtplib.py", + "lib/python3.11/sndhdr.py", + "lib/python3.11/socket.py", + "lib/python3.11/socketserver.py", + "lib/python3.11/sqlite3/__init__.py", + "lib/python3.11/sqlite3/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/sqlite3/__pycache__/dbapi2.cpython-311.pyc", + "lib/python3.11/sqlite3/__pycache__/dump.cpython-311.pyc", + "lib/python3.11/sqlite3/dbapi2.py", + "lib/python3.11/sqlite3/dump.py", + "lib/python3.11/sre_compile.py", + "lib/python3.11/sre_constants.py", + "lib/python3.11/sre_parse.py", + "lib/python3.11/ssl.py", + "lib/python3.11/stat.py", + "lib/python3.11/statistics.py", + "lib/python3.11/string.py", + "lib/python3.11/stringprep.py", + "lib/python3.11/struct.py", + "lib/python3.11/subprocess.py", + "lib/python3.11/sunau.py", + "lib/python3.11/symtable.py", + "lib/python3.11/sysconfig.py", + "lib/python3.11/tabnanny.py", + "lib/python3.11/tarfile.py", + "lib/python3.11/telnetlib.py", + "lib/python3.11/tempfile.py", + "lib/python3.11/test/__init__.py", + "lib/python3.11/test/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/test/__pycache__/test_script_helper.cpython-311.pyc", + "lib/python3.11/test/__pycache__/test_support.cpython-311.pyc", + "lib/python3.11/test/support/__init__.py", + "lib/python3.11/test/support/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/bytecode_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/hashlib_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/import_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/interpreters.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/logging_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/os_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/script_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/socket_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/testresult.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/threading_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/warnings_helper.cpython-311.pyc", + "lib/python3.11/test/support/bytecode_helper.py", + "lib/python3.11/test/support/hashlib_helper.py", + "lib/python3.11/test/support/import_helper.py", + "lib/python3.11/test/support/interpreters.py", + "lib/python3.11/test/support/logging_helper.py", + "lib/python3.11/test/support/os_helper.py", + "lib/python3.11/test/support/script_helper.py", + "lib/python3.11/test/support/socket_helper.py", + "lib/python3.11/test/support/testresult.py", + "lib/python3.11/test/support/threading_helper.py", + "lib/python3.11/test/support/warnings_helper.py", + "lib/python3.11/test/test_script_helper.py", + "lib/python3.11/test/test_support.py", + "lib/python3.11/textwrap.py", + "lib/python3.11/this.py", + "lib/python3.11/threading.py", + "lib/python3.11/timeit.py", + "lib/python3.11/tkinter/__init__.py", + "lib/python3.11/tkinter/__main__.py", + "lib/python3.11/tkinter/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/colorchooser.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/commondialog.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/constants.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/dialog.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/dnd.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/filedialog.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/font.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/messagebox.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/scrolledtext.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/simpledialog.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/tix.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/ttk.cpython-311.pyc", + "lib/python3.11/tkinter/colorchooser.py", + "lib/python3.11/tkinter/commondialog.py", + "lib/python3.11/tkinter/constants.py", + "lib/python3.11/tkinter/dialog.py", + "lib/python3.11/tkinter/dnd.py", + "lib/python3.11/tkinter/filedialog.py", + "lib/python3.11/tkinter/font.py", + "lib/python3.11/tkinter/messagebox.py", + "lib/python3.11/tkinter/scrolledtext.py", + "lib/python3.11/tkinter/simpledialog.py", + "lib/python3.11/tkinter/tix.py", + "lib/python3.11/tkinter/ttk.py", + "lib/python3.11/token.py", + "lib/python3.11/tokenize.py", + "lib/python3.11/tomllib/__init__.py", + "lib/python3.11/tomllib/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/tomllib/__pycache__/_parser.cpython-311.pyc", + "lib/python3.11/tomllib/__pycache__/_re.cpython-311.pyc", + "lib/python3.11/tomllib/__pycache__/_types.cpython-311.pyc", + "lib/python3.11/tomllib/_parser.py", + "lib/python3.11/tomllib/_re.py", + "lib/python3.11/tomllib/_types.py", + "lib/python3.11/trace.py", + "lib/python3.11/traceback.py", + "lib/python3.11/tracemalloc.py", + "lib/python3.11/tty.py", + "lib/python3.11/turtle.py", + "lib/python3.11/turtledemo/__init__.py", + "lib/python3.11/turtledemo/__main__.py", + "lib/python3.11/turtledemo/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/bytedesign.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/chaos.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/clock.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/colormixer.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/forest.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/fractalcurves.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/lindenmayer.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/minimal_hanoi.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/nim.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/paint.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/peace.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/penrose.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/planet_and_moon.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/rosette.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/round_dance.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/sorting_animate.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/tree.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/two_canvases.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/yinyang.cpython-311.pyc", + "lib/python3.11/turtledemo/bytedesign.py", + "lib/python3.11/turtledemo/chaos.py", + "lib/python3.11/turtledemo/clock.py", + "lib/python3.11/turtledemo/colormixer.py", + "lib/python3.11/turtledemo/forest.py", + "lib/python3.11/turtledemo/fractalcurves.py", + "lib/python3.11/turtledemo/lindenmayer.py", + "lib/python3.11/turtledemo/minimal_hanoi.py", + "lib/python3.11/turtledemo/nim.py", + "lib/python3.11/turtledemo/paint.py", + "lib/python3.11/turtledemo/peace.py", + "lib/python3.11/turtledemo/penrose.py", + "lib/python3.11/turtledemo/planet_and_moon.py", + "lib/python3.11/turtledemo/rosette.py", + "lib/python3.11/turtledemo/round_dance.py", + "lib/python3.11/turtledemo/sorting_animate.py", + "lib/python3.11/turtledemo/tree.py", + "lib/python3.11/turtledemo/turtle.cfg", + "lib/python3.11/turtledemo/two_canvases.py", + "lib/python3.11/turtledemo/yinyang.py", + "lib/python3.11/types.py", + "lib/python3.11/typing.py", + "lib/python3.11/unittest/__init__.py", + "lib/python3.11/unittest/__main__.py", + "lib/python3.11/unittest/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/_log.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/async_case.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/case.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/loader.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/main.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/mock.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/result.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/runner.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/signals.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/suite.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/util.cpython-311.pyc", + "lib/python3.11/unittest/_log.py", + "lib/python3.11/unittest/async_case.py", + "lib/python3.11/unittest/case.py", + "lib/python3.11/unittest/loader.py", + "lib/python3.11/unittest/main.py", + "lib/python3.11/unittest/mock.py", + "lib/python3.11/unittest/result.py", + "lib/python3.11/unittest/runner.py", + "lib/python3.11/unittest/signals.py", + "lib/python3.11/unittest/suite.py", + "lib/python3.11/unittest/util.py", + "lib/python3.11/urllib/__init__.py", + "lib/python3.11/urllib/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/urllib/__pycache__/error.cpython-311.pyc", + "lib/python3.11/urllib/__pycache__/parse.cpython-311.pyc", + "lib/python3.11/urllib/__pycache__/request.cpython-311.pyc", + "lib/python3.11/urllib/__pycache__/response.cpython-311.pyc", + "lib/python3.11/urllib/__pycache__/robotparser.cpython-311.pyc", + "lib/python3.11/urllib/error.py", + "lib/python3.11/urllib/parse.py", + "lib/python3.11/urllib/request.py", + "lib/python3.11/urllib/response.py", + "lib/python3.11/urllib/robotparser.py", + "lib/python3.11/uu.py", + "lib/python3.11/uuid.py", + "lib/python3.11/venv/__init__.py", + "lib/python3.11/venv/__main__.py", + "lib/python3.11/venv/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/venv/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/venv/scripts/common/Activate.ps1", + "lib/python3.11/venv/scripts/common/activate", + "lib/python3.11/venv/scripts/posix/activate.csh", + "lib/python3.11/venv/scripts/posix/activate.fish", + "lib/python3.11/warnings.py", + "lib/python3.11/wave.py", + "lib/python3.11/weakref.py", + "lib/python3.11/webbrowser.py", + "lib/python3.11/wsgiref/__init__.py", + "lib/python3.11/wsgiref/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/wsgiref/__pycache__/handlers.cpython-311.pyc", + "lib/python3.11/wsgiref/__pycache__/headers.cpython-311.pyc", + "lib/python3.11/wsgiref/__pycache__/simple_server.cpython-311.pyc", + "lib/python3.11/wsgiref/__pycache__/types.cpython-311.pyc", + "lib/python3.11/wsgiref/__pycache__/util.cpython-311.pyc", + "lib/python3.11/wsgiref/__pycache__/validate.cpython-311.pyc", + "lib/python3.11/wsgiref/handlers.py", + "lib/python3.11/wsgiref/headers.py", + "lib/python3.11/wsgiref/simple_server.py", + "lib/python3.11/wsgiref/types.py", + "lib/python3.11/wsgiref/util.py", + "lib/python3.11/wsgiref/validate.py", + "lib/python3.11/xdrlib.py", + "lib/python3.11/xml/__init__.py", + "lib/python3.11/xml/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/xml/dom/NodeFilter.py", + "lib/python3.11/xml/dom/__init__.py", + "lib/python3.11/xml/dom/__pycache__/NodeFilter.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/domreg.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/expatbuilder.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/minicompat.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/minidom.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/pulldom.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/xmlbuilder.cpython-311.pyc", + "lib/python3.11/xml/dom/domreg.py", + "lib/python3.11/xml/dom/expatbuilder.py", + "lib/python3.11/xml/dom/minicompat.py", + "lib/python3.11/xml/dom/minidom.py", + "lib/python3.11/xml/dom/pulldom.py", + "lib/python3.11/xml/dom/xmlbuilder.py", + "lib/python3.11/xml/etree/ElementInclude.py", + "lib/python3.11/xml/etree/ElementPath.py", + "lib/python3.11/xml/etree/ElementTree.py", + "lib/python3.11/xml/etree/__init__.py", + "lib/python3.11/xml/etree/__pycache__/ElementInclude.cpython-311.pyc", + "lib/python3.11/xml/etree/__pycache__/ElementPath.cpython-311.pyc", + "lib/python3.11/xml/etree/__pycache__/ElementTree.cpython-311.pyc", + "lib/python3.11/xml/etree/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/xml/etree/__pycache__/cElementTree.cpython-311.pyc", + "lib/python3.11/xml/etree/cElementTree.py", + "lib/python3.11/xml/parsers/__init__.py", + "lib/python3.11/xml/parsers/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/xml/parsers/__pycache__/expat.cpython-311.pyc", + "lib/python3.11/xml/parsers/expat.py", + "lib/python3.11/xml/sax/__init__.py", + "lib/python3.11/xml/sax/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/xml/sax/__pycache__/_exceptions.cpython-311.pyc", + "lib/python3.11/xml/sax/__pycache__/expatreader.cpython-311.pyc", + "lib/python3.11/xml/sax/__pycache__/handler.cpython-311.pyc", + "lib/python3.11/xml/sax/__pycache__/saxutils.cpython-311.pyc", + "lib/python3.11/xml/sax/__pycache__/xmlreader.cpython-311.pyc", + "lib/python3.11/xml/sax/_exceptions.py", + "lib/python3.11/xml/sax/expatreader.py", + "lib/python3.11/xml/sax/handler.py", + "lib/python3.11/xml/sax/saxutils.py", + "lib/python3.11/xml/sax/xmlreader.py", + "lib/python3.11/xmlrpc/__init__.py", + "lib/python3.11/xmlrpc/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/xmlrpc/__pycache__/client.cpython-311.pyc", + "lib/python3.11/xmlrpc/__pycache__/server.cpython-311.pyc", + "lib/python3.11/xmlrpc/client.py", + "lib/python3.11/xmlrpc/server.py", + "lib/python3.11/zipapp.py", + "lib/python3.11/zipfile.py", + "lib/python3.11/zipimport.py", + "lib/python3.11/zoneinfo/__init__.py", + "lib/python3.11/zoneinfo/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/zoneinfo/__pycache__/_common.cpython-311.pyc", + "lib/python3.11/zoneinfo/__pycache__/_tzpath.cpython-311.pyc", + "lib/python3.11/zoneinfo/__pycache__/_zoneinfo.cpython-311.pyc", + "lib/python3.11/zoneinfo/_common.py", + "lib/python3.11/zoneinfo/_tzpath.py", + "lib/python3.11/zoneinfo/_zoneinfo.py", + "share/man/man1/python3.1", + "share/man/man1/python3.11.1" + ], + "fn": "python-3.11.5-hb885b13_0.conda", + "license": "PSF-2.0", + "link": { + "source": "/Users/donjayamanne/miniconda3/pkgs/python-3.11.5-hb885b13_0", + "type": 1 + }, + "md5": "6f528bdf159139704ab578df329dee70", + "name": "python", + "package_tarball_full_path": "/Users/donjayamanne/miniconda3/pkgs/python-3.11.5-hb885b13_0.conda", + "paths_data": { + "paths": [ + { + "_path": "bin/2to3-3.11", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "0eb2a68730c6910e60374b6231605a8fe9e4b1ef889fe6bf6955f00607263096", + "sha256_in_prefix": "db867f95c7e5e3d486928ab316afc7ee322118eace698a5fd9c35dd62a7c77e0", + "size_in_bytes": 347 + }, + { + "_path": "bin/idle3.11", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "9e7c5708a61f7b75f0fa84106b3698fc81e0632eea511e9635cc012d95e8ccec", + "sha256_in_prefix": "2daba7590451fb1240f116ad6c50dfb3fe12ab0d0c90450453672dc5f7992345", + "size_in_bytes": 345 + }, + { + "_path": "bin/pydoc3.11", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "af4b3f428ef9f3708c93b8d6a9c9b211c3e531ad480bac0644e18be3d675de15", + "sha256_in_prefix": "29373357dfd57b431809af8ab17e111c47011f8ed325e4b74075551cfd728dc0", + "size_in_bytes": 330 + }, + { + "_path": "bin/python3.11", + "file_mode": "binary", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "ea6aacf75da0a6e048c0acc7d6f9e7e67f4af4af635965ab25aad7956ed07b40", + "sha256_in_prefix": "5309a862e537b7e20d382f479a016995d2b60e7382673e57a98a8644d62a011a", + "size_in_bytes": 6019216 + }, + { + "_path": "bin/python3.11-config", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "48e7f0c28858cd7dd610f089ebce9d090b15273d6f965b5a665418880b9ad017", + "sha256_in_prefix": "178fb9ee8ae853adc2840a51642fbdfe239d4c189e632be37552f83ee881a9d5", + "size_in_bytes": 2289 + }, + { + "_path": "lib/libpython3.11.dylib", + "file_mode": "binary", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "813d7657214af2a40d6f98ed5ad6cd25bdaf9e1b52299dcc22457b6431f46226", + "sha256_in_prefix": "690e286e2a59750500c44dd3eb0fcc3f607604fd1a24a20da1d5877d9ac09cd0", + "size_in_bytes": 6019152 + }, + { + "_path": "lib/pkgconfig/python-3.11-embed.pc", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "5ce92c1022c5d4af2383596197f518fc12687f8f32bf3f42b96c7ee22ac9dc8d", + "sha256_in_prefix": "2ccb5bf00ff727b7941ad8be49360b25f86860ae2f49931743f628dafc9caac1", + "size_in_bytes": 558 + }, + { + "_path": "lib/pkgconfig/python-3.11.pc", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "46ac102bbce0c0b1ff9cabf905c7d44f3e3ff2911127a08b620cd1231a8a70c4", + "sha256_in_prefix": "01f5747180571713792597c3a4b2278f2e2b0e46aaa926e95cc007a373b589aa", + "size_in_bytes": 531 + }, + { + "_path": "lib/python3.11/_sysconfigdata__darwin_darwin.py", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "49c03531794c8e17dbf3bc3b28b5c731c19647b8430e74a7f05967863a73cd89", + "sha256_in_prefix": "d1fed13472229dad30d35c5cd3e497e4cbb16e5aa2fb66abc1919d55f9fa415c", + "size_in_bytes": 85118 + }, + { + "_path": "lib/python3.11/_sysconfigdata__darwin_darwin.py.orig", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "4e1b965e2665c46a97f8df38da25dc3e2636e6e62a2b525d38bfd9304978f7c9", + "sha256_in_prefix": "dbc742fac6650f3e6159c08dc75d77bbe5704af80a671c3ca09aa3e061ddd992", + "size_in_bytes": 97066 + }, + { + "_path": "lib/python3.11/_sysconfigdata_arm64_apple_darwin20_0_0.py", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "810dab3b07b0633c5d5b180351daecb4d1ebf51ee2216019c5dc08afb5c54fd1", + "sha256_in_prefix": "44ad76b97a9bc58243271c310c497b085745bbe5451b4cbf60d6afb475b49465", + "size_in_bytes": 87139 + }, + { + "_path": "lib/python3.11/config-3.11-darwin/Makefile", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "2a78da281edcb631ddd844a43a4e30d166eb6b13651e43a1664f0e1aa9384d3b", + "sha256_in_prefix": "fee789b4cc5318f60fd6d1b4294c7789bf333b55d6c4f8afa1dd4476e7fa4d5b", + "size_in_bytes": 126865 + }, + { + "_path": "lib/python3.11/config-3.11-darwin/python-config.py", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "48e7f0c28858cd7dd610f089ebce9d090b15273d6f965b5a665418880b9ad017", + "sha256_in_prefix": "178fb9ee8ae853adc2840a51642fbdfe239d4c189e632be37552f83ee881a9d5", + "size_in_bytes": 2289 + } + ], + "paths_version": 1 + }, + "requested_spec": "defaults/osx-arm64::python==3.11.5=hb885b13_0[md5=6f528bdf159139704ab578df329dee70]", + "sha256": "e6ae393f2072f9857ffbd78c56ea28ca345beeba4f0ab2e0d5975e424f71b252", + "size": 16161485, + "subdir": "osx-arm64", + "timestamp": 1694439441000, + "track_features": "", + "url": "https://repo.anaconda.com/pkgs/main/osx-arm64/python-3.11.5-hb885b13_0.conda", + "version": "3.11.5" +} \ No newline at end of file diff --git a/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda3-4.0.5/conda-meta/python-slugify-5.0.2-pyhd3eb1b0_0.json b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda3-4.0.5/conda-meta/python-slugify-5.0.2-pyhd3eb1b0_0.json new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda3-4.0.5/envs/.conda_envs_dir_test b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniconda3-4.0.5/envs/.conda_envs_dir_test new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniforge3-4.11.0-1/conda-meta/conda-23.11.0-py311hca03da5_0.json b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniforge3-4.11.0-1/conda-meta/conda-23.11.0-py311hca03da5_0.json new file mode 100644 index 000000000000..3be01e80b809 --- /dev/null +++ b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniforge3-4.11.0-1/conda-meta/conda-23.11.0-py311hca03da5_0.json @@ -0,0 +1,632 @@ +{ + "build": "py311hca03da5_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/osx-arm64", + "constrains": [ + "conda-content-trust >=0.1.1", + "conda-build >=3.27", + "conda-env >=2.6" + ], + "depends": [ + "archspec", + "boltons >=23.0.0", + "charset-normalizer", + "conda-libmamba-solver >=23.11.0", + "conda-package-handling >=2.2.0", + "distro >=1.5.0", + "jsonpatch >=1.32", + "menuinst", + "packaging >=23.0", + "platformdirs >=3.10.0", + "pluggy >=1.0.0", + "pycosat >=0.6.3", + "python >=3.11,<3.12.0a0", + "requests >=2.28.0,<3", + "ruamel.yaml >=0.11.14,<0.19", + "setuptools >=60.0.0", + "tqdm >=4", + "truststore >=0.8.0" + ], + "extracted_package_dir": "/Users/donjayamanne/miniconda3/pkgs/conda-23.11.0-py311hca03da5_0", + "features": "", + "files": [ + "bin/activate", + "bin/conda", + "bin/conda-env", + "bin/deactivate", + "condabin/conda", + "etc/fish/conf.d/conda.fish", + "etc/profile.d/conda.csh", + "etc/profile.d/conda.sh", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/INSTALLER", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/METADATA", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/RECORD", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/REQUESTED", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/WHEEL", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/direct_url.json", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/entry_points.txt", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/licenses/AUTHORS.md", + "lib/python3.11/site-packages/conda-23.11.0.dist-info/licenses/LICENSE", + "lib/python3.11/site-packages/conda/__init__.py", + "lib/python3.11/site-packages/conda/__main__.py", + "lib/python3.11/site-packages/conda/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/__version__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/activate.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/api.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/deprecations.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/exception_handler.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/exceptions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/exports.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/history.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/instructions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/misc.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/plan.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/resolve.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__pycache__/utils.cpython-311.pyc", + "lib/python3.11/site-packages/conda/__version__.py", + "lib/python3.11/site-packages/conda/_vendor/__init__.py", + "lib/python3.11/site-packages/conda/_vendor/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/__pycache__/appdirs.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/__pycache__/distro.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/appdirs.LICENSE.txt", + "lib/python3.11/site-packages/conda/_vendor/appdirs.py", + "lib/python3.11/site-packages/conda/_vendor/boltons/LICENSE", + "lib/python3.11/site-packages/conda/_vendor/boltons/__init__.py", + "lib/python3.11/site-packages/conda/_vendor/boltons/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/boltons/__pycache__/setutils.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/boltons/__pycache__/timeutils.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/boltons/setutils.py", + "lib/python3.11/site-packages/conda/_vendor/boltons/timeutils.py", + "lib/python3.11/site-packages/conda/_vendor/cpuinfo/__init__.py", + "lib/python3.11/site-packages/conda/_vendor/cpuinfo/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/cpuinfo/__pycache__/cpuinfo.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/cpuinfo/cpuinfo.py", + "lib/python3.11/site-packages/conda/_vendor/distro.LICENSE.txt", + "lib/python3.11/site-packages/conda/_vendor/distro.py", + "lib/python3.11/site-packages/conda/_vendor/frozendict/LICENSE.txt", + "lib/python3.11/site-packages/conda/_vendor/frozendict/__init__.py", + "lib/python3.11/site-packages/conda/_vendor/frozendict/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/_vendor/py_cpuinfo.LICENSE", + "lib/python3.11/site-packages/conda/_vendor/vendor.txt", + "lib/python3.11/site-packages/conda/activate.py", + "lib/python3.11/site-packages/conda/api.py", + "lib/python3.11/site-packages/conda/auxlib/LICENSE", + "lib/python3.11/site-packages/conda/auxlib/__init__.py", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/collection.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/compat.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/decorators.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/entity.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/exceptions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/ish.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/logz.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/packaging.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/__pycache__/type_coercion.cpython-311.pyc", + "lib/python3.11/site-packages/conda/auxlib/collection.py", + "lib/python3.11/site-packages/conda/auxlib/compat.py", + "lib/python3.11/site-packages/conda/auxlib/decorators.py", + "lib/python3.11/site-packages/conda/auxlib/entity.py", + "lib/python3.11/site-packages/conda/auxlib/exceptions.py", + "lib/python3.11/site-packages/conda/auxlib/ish.py", + "lib/python3.11/site-packages/conda/auxlib/logz.py", + "lib/python3.11/site-packages/conda/auxlib/packaging.py", + "lib/python3.11/site-packages/conda/auxlib/type_coercion.py", + "lib/python3.11/site-packages/conda/base/__init__.py", + "lib/python3.11/site-packages/conda/base/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/base/__pycache__/constants.cpython-311.pyc", + "lib/python3.11/site-packages/conda/base/__pycache__/context.cpython-311.pyc", + "lib/python3.11/site-packages/conda/base/__pycache__/exceptions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/base/constants.py", + "lib/python3.11/site-packages/conda/base/context.py", + "lib/python3.11/site-packages/conda/base/exceptions.py", + "lib/python3.11/site-packages/conda/cli/__init__.py", + "lib/python3.11/site-packages/conda/cli/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/actions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/common.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/conda_argparse.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/find_commands.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/helpers.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/install.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_clean.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_compare.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_config.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_create.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_info.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_init.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_install.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_list.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_mock_activate.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_mock_deactivate.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_notices.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_package.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_pip.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_remove.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_rename.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_run.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_search.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/main_update.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/__pycache__/python_api.cpython-311.pyc", + "lib/python3.11/site-packages/conda/cli/actions.py", + "lib/python3.11/site-packages/conda/cli/common.py", + "lib/python3.11/site-packages/conda/cli/conda_argparse.py", + "lib/python3.11/site-packages/conda/cli/find_commands.py", + "lib/python3.11/site-packages/conda/cli/helpers.py", + "lib/python3.11/site-packages/conda/cli/install.py", + "lib/python3.11/site-packages/conda/cli/main.py", + "lib/python3.11/site-packages/conda/cli/main_clean.py", + "lib/python3.11/site-packages/conda/cli/main_compare.py", + "lib/python3.11/site-packages/conda/cli/main_config.py", + "lib/python3.11/site-packages/conda/cli/main_create.py", + "lib/python3.11/site-packages/conda/cli/main_info.py", + "lib/python3.11/site-packages/conda/cli/main_init.py", + "lib/python3.11/site-packages/conda/cli/main_install.py", + "lib/python3.11/site-packages/conda/cli/main_list.py", + "lib/python3.11/site-packages/conda/cli/main_mock_activate.py", + "lib/python3.11/site-packages/conda/cli/main_mock_deactivate.py", + "lib/python3.11/site-packages/conda/cli/main_notices.py", + "lib/python3.11/site-packages/conda/cli/main_package.py", + "lib/python3.11/site-packages/conda/cli/main_pip.py", + "lib/python3.11/site-packages/conda/cli/main_remove.py", + "lib/python3.11/site-packages/conda/cli/main_rename.py", + "lib/python3.11/site-packages/conda/cli/main_run.py", + "lib/python3.11/site-packages/conda/cli/main_search.py", + "lib/python3.11/site-packages/conda/cli/main_update.py", + "lib/python3.11/site-packages/conda/cli/python_api.py", + "lib/python3.11/site-packages/conda/common/__init__.py", + "lib/python3.11/site-packages/conda/common/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/_logic.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/compat.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/configuration.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/constants.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/decorators.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/disk.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/io.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/iterators.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/logic.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/path.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/serialize.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/signals.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/toposort.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/__pycache__/url.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/_logic.py", + "lib/python3.11/site-packages/conda/common/_os/__init__.py", + "lib/python3.11/site-packages/conda/common/_os/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/_os/__pycache__/linux.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/_os/__pycache__/unix.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/_os/__pycache__/windows.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/_os/linux.py", + "lib/python3.11/site-packages/conda/common/_os/unix.py", + "lib/python3.11/site-packages/conda/common/_os/windows.py", + "lib/python3.11/site-packages/conda/common/compat.py", + "lib/python3.11/site-packages/conda/common/configuration.py", + "lib/python3.11/site-packages/conda/common/constants.py", + "lib/python3.11/site-packages/conda/common/decorators.py", + "lib/python3.11/site-packages/conda/common/disk.py", + "lib/python3.11/site-packages/conda/common/io.py", + "lib/python3.11/site-packages/conda/common/iterators.py", + "lib/python3.11/site-packages/conda/common/logic.py", + "lib/python3.11/site-packages/conda/common/path.py", + "lib/python3.11/site-packages/conda/common/pkg_formats/__init__.py", + "lib/python3.11/site-packages/conda/common/pkg_formats/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/pkg_formats/__pycache__/python.cpython-311.pyc", + "lib/python3.11/site-packages/conda/common/pkg_formats/python.py", + "lib/python3.11/site-packages/conda/common/serialize.py", + "lib/python3.11/site-packages/conda/common/signals.py", + "lib/python3.11/site-packages/conda/common/toposort.py", + "lib/python3.11/site-packages/conda/common/url.py", + "lib/python3.11/site-packages/conda/core/__init__.py", + "lib/python3.11/site-packages/conda/core/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/envs_manager.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/index.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/initialize.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/link.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/package_cache.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/package_cache_data.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/path_actions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/portability.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/prefix_data.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/solve.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/__pycache__/subdir_data.cpython-311.pyc", + "lib/python3.11/site-packages/conda/core/envs_manager.py", + "lib/python3.11/site-packages/conda/core/index.py", + "lib/python3.11/site-packages/conda/core/initialize.py", + "lib/python3.11/site-packages/conda/core/link.py", + "lib/python3.11/site-packages/conda/core/package_cache.py", + "lib/python3.11/site-packages/conda/core/package_cache_data.py", + "lib/python3.11/site-packages/conda/core/path_actions.py", + "lib/python3.11/site-packages/conda/core/portability.py", + "lib/python3.11/site-packages/conda/core/prefix_data.py", + "lib/python3.11/site-packages/conda/core/solve.py", + "lib/python3.11/site-packages/conda/core/subdir_data.py", + "lib/python3.11/site-packages/conda/deprecations.py", + "lib/python3.11/site-packages/conda/exception_handler.py", + "lib/python3.11/site-packages/conda/exceptions.py", + "lib/python3.11/site-packages/conda/exports.py", + "lib/python3.11/site-packages/conda/gateways/__init__.py", + "lib/python3.11/site-packages/conda/gateways/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/__pycache__/anaconda_client.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/__pycache__/logging.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/__pycache__/subprocess.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/anaconda_client.py", + "lib/python3.11/site-packages/conda/gateways/connection/__init__.py", + "lib/python3.11/site-packages/conda/gateways/connection/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/__pycache__/download.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/__pycache__/session.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/__init__.py", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/__pycache__/ftp.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/__pycache__/http.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/__pycache__/localfs.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/__pycache__/s3.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/ftp.py", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/http.py", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/localfs.py", + "lib/python3.11/site-packages/conda/gateways/connection/adapters/s3.py", + "lib/python3.11/site-packages/conda/gateways/connection/download.py", + "lib/python3.11/site-packages/conda/gateways/connection/session.py", + "lib/python3.11/site-packages/conda/gateways/disk/__init__.py", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/create.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/delete.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/link.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/lock.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/permissions.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/read.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/test.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/__pycache__/update.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/disk/create.py", + "lib/python3.11/site-packages/conda/gateways/disk/delete.py", + "lib/python3.11/site-packages/conda/gateways/disk/link.py", + "lib/python3.11/site-packages/conda/gateways/disk/lock.py", + "lib/python3.11/site-packages/conda/gateways/disk/permissions.py", + "lib/python3.11/site-packages/conda/gateways/disk/read.py", + "lib/python3.11/site-packages/conda/gateways/disk/test.py", + "lib/python3.11/site-packages/conda/gateways/disk/update.py", + "lib/python3.11/site-packages/conda/gateways/logging.py", + "lib/python3.11/site-packages/conda/gateways/repodata/__init__.py", + "lib/python3.11/site-packages/conda/gateways/repodata/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/repodata/__pycache__/lock.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/__init__.py", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/__pycache__/core.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/__pycache__/fetch.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/__pycache__/interface.cpython-311.pyc", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/core.py", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/fetch.py", + "lib/python3.11/site-packages/conda/gateways/repodata/jlap/interface.py", + "lib/python3.11/site-packages/conda/gateways/repodata/lock.py", + "lib/python3.11/site-packages/conda/gateways/subprocess.py", + "lib/python3.11/site-packages/conda/history.py", + "lib/python3.11/site-packages/conda/instructions.py", + "lib/python3.11/site-packages/conda/misc.py", + "lib/python3.11/site-packages/conda/models/__init__.py", + "lib/python3.11/site-packages/conda/models/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/channel.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/dist.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/enums.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/leased_path_entry.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/match_spec.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/package_info.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/prefix_graph.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/records.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/__pycache__/version.cpython-311.pyc", + "lib/python3.11/site-packages/conda/models/channel.py", + "lib/python3.11/site-packages/conda/models/dist.py", + "lib/python3.11/site-packages/conda/models/enums.py", + "lib/python3.11/site-packages/conda/models/leased_path_entry.py", + "lib/python3.11/site-packages/conda/models/match_spec.py", + "lib/python3.11/site-packages/conda/models/package_info.py", + "lib/python3.11/site-packages/conda/models/prefix_graph.py", + "lib/python3.11/site-packages/conda/models/records.py", + "lib/python3.11/site-packages/conda/models/version.py", + "lib/python3.11/site-packages/conda/notices/__init__.py", + "lib/python3.11/site-packages/conda/notices/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/notices/__pycache__/cache.cpython-311.pyc", + "lib/python3.11/site-packages/conda/notices/__pycache__/core.cpython-311.pyc", + "lib/python3.11/site-packages/conda/notices/__pycache__/fetch.cpython-311.pyc", + "lib/python3.11/site-packages/conda/notices/__pycache__/types.cpython-311.pyc", + "lib/python3.11/site-packages/conda/notices/__pycache__/views.cpython-311.pyc", + "lib/python3.11/site-packages/conda/notices/cache.py", + "lib/python3.11/site-packages/conda/notices/core.py", + "lib/python3.11/site-packages/conda/notices/fetch.py", + "lib/python3.11/site-packages/conda/notices/types.py", + "lib/python3.11/site-packages/conda/notices/views.py", + "lib/python3.11/site-packages/conda/plan.py", + "lib/python3.11/site-packages/conda/plugins/__init__.py", + "lib/python3.11/site-packages/conda/plugins/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/__pycache__/hookspec.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/__pycache__/manager.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/__pycache__/solvers.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/__pycache__/types.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/hookspec.py", + "lib/python3.11/site-packages/conda/plugins/manager.py", + "lib/python3.11/site-packages/conda/plugins/solvers.py", + "lib/python3.11/site-packages/conda/plugins/subcommands/__init__.py", + "lib/python3.11/site-packages/conda/plugins/subcommands/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/subcommands/doctor/__init__.py", + "lib/python3.11/site-packages/conda/plugins/subcommands/doctor/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/subcommands/doctor/__pycache__/health_checks.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/subcommands/doctor/health_checks.py", + "lib/python3.11/site-packages/conda/plugins/types.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__init__.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/archspec.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/conda.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/cuda.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/freebsd.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/linux.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/osx.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/__pycache__/windows.cpython-311.pyc", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/archspec.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/conda.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/cuda.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/freebsd.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/linux.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/osx.py", + "lib/python3.11/site-packages/conda/plugins/virtual_packages/windows.py", + "lib/python3.11/site-packages/conda/py.typed", + "lib/python3.11/site-packages/conda/resolve.py", + "lib/python3.11/site-packages/conda/shell/Library/bin/conda.bat", + "lib/python3.11/site-packages/conda/shell/Scripts/activate.bat", + "lib/python3.11/site-packages/conda/shell/bin/activate", + "lib/python3.11/site-packages/conda/shell/bin/conda", + "lib/python3.11/site-packages/conda/shell/bin/deactivate", + "lib/python3.11/site-packages/conda/shell/cli-32.exe", + "lib/python3.11/site-packages/conda/shell/cli-64.exe", + "lib/python3.11/site-packages/conda/shell/conda.xsh", + "lib/python3.11/site-packages/conda/shell/conda_icon.ico", + "lib/python3.11/site-packages/conda/shell/condabin/Conda.psm1", + "lib/python3.11/site-packages/conda/shell/condabin/_conda_activate.bat", + "lib/python3.11/site-packages/conda/shell/condabin/activate.bat", + "lib/python3.11/site-packages/conda/shell/condabin/conda-hook.ps1", + "lib/python3.11/site-packages/conda/shell/condabin/conda.bat", + "lib/python3.11/site-packages/conda/shell/condabin/conda_auto_activate.bat", + "lib/python3.11/site-packages/conda/shell/condabin/conda_hook.bat", + "lib/python3.11/site-packages/conda/shell/condabin/deactivate.bat", + "lib/python3.11/site-packages/conda/shell/condabin/rename_tmp.bat", + "lib/python3.11/site-packages/conda/shell/etc/fish/conf.d/conda.fish", + "lib/python3.11/site-packages/conda/shell/etc/profile.d/conda.csh", + "lib/python3.11/site-packages/conda/shell/etc/profile.d/conda.sh", + "lib/python3.11/site-packages/conda/testing/__init__.py", + "lib/python3.11/site-packages/conda/testing/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/__pycache__/cases.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/__pycache__/fixtures.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/__pycache__/helpers.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/__pycache__/integration.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/__pycache__/solver_helpers.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/cases.py", + "lib/python3.11/site-packages/conda/testing/fixtures.py", + "lib/python3.11/site-packages/conda/testing/gateways/__init__.py", + "lib/python3.11/site-packages/conda/testing/gateways/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/gateways/__pycache__/fixtures.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/gateways/fixtures.py", + "lib/python3.11/site-packages/conda/testing/helpers.py", + "lib/python3.11/site-packages/conda/testing/integration.py", + "lib/python3.11/site-packages/conda/testing/notices/__init__.py", + "lib/python3.11/site-packages/conda/testing/notices/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/notices/__pycache__/fixtures.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/notices/__pycache__/helpers.cpython-311.pyc", + "lib/python3.11/site-packages/conda/testing/notices/fixtures.py", + "lib/python3.11/site-packages/conda/testing/notices/helpers.py", + "lib/python3.11/site-packages/conda/testing/solver_helpers.py", + "lib/python3.11/site-packages/conda/trust/__init__.py", + "lib/python3.11/site-packages/conda/trust/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda/trust/__pycache__/constants.cpython-311.pyc", + "lib/python3.11/site-packages/conda/trust/__pycache__/signature_verification.cpython-311.pyc", + "lib/python3.11/site-packages/conda/trust/constants.py", + "lib/python3.11/site-packages/conda/trust/signature_verification.py", + "lib/python3.11/site-packages/conda/utils.py", + "lib/python3.11/site-packages/conda_env/README.md", + "lib/python3.11/site-packages/conda_env/__init__.py", + "lib/python3.11/site-packages/conda_env/__main__.py", + "lib/python3.11/site-packages/conda_env/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/__pycache__/env.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/__pycache__/pip_util.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__init__.py", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/common.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_config.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_create.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_export.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_list.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_remove.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_update.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/__pycache__/main_vars.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/cli/common.py", + "lib/python3.11/site-packages/conda_env/cli/main.py", + "lib/python3.11/site-packages/conda_env/cli/main_config.py", + "lib/python3.11/site-packages/conda_env/cli/main_create.py", + "lib/python3.11/site-packages/conda_env/cli/main_export.py", + "lib/python3.11/site-packages/conda_env/cli/main_list.py", + "lib/python3.11/site-packages/conda_env/cli/main_remove.py", + "lib/python3.11/site-packages/conda_env/cli/main_update.py", + "lib/python3.11/site-packages/conda_env/cli/main_vars.py", + "lib/python3.11/site-packages/conda_env/env.py", + "lib/python3.11/site-packages/conda_env/installers/__init__.py", + "lib/python3.11/site-packages/conda_env/installers/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/installers/__pycache__/base.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/installers/__pycache__/conda.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/installers/__pycache__/pip.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/installers/base.py", + "lib/python3.11/site-packages/conda_env/installers/conda.py", + "lib/python3.11/site-packages/conda_env/installers/pip.py", + "lib/python3.11/site-packages/conda_env/pip_util.py", + "lib/python3.11/site-packages/conda_env/specs/__init__.py", + "lib/python3.11/site-packages/conda_env/specs/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/specs/__pycache__/binstar.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/specs/__pycache__/requirements.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/specs/__pycache__/yaml_file.cpython-311.pyc", + "lib/python3.11/site-packages/conda_env/specs/binstar.py", + "lib/python3.11/site-packages/conda_env/specs/requirements.py", + "lib/python3.11/site-packages/conda_env/specs/yaml_file.py", + "lib/python3.11/site-packages/tests/conda_env/__init__.py", + "lib/python3.11/site-packages/tests/conda_env/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/__pycache__/test_cli.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/__pycache__/test_create.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/__pycache__/test_env.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/__pycache__/test_pip_util.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/__pycache__/utils.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/specs/__init__.py", + "lib/python3.11/site-packages/tests/conda_env/specs/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/specs/__pycache__/test_binstar.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/specs/__pycache__/test_requirements.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/specs/__pycache__/test_yaml_file.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/specs/test_binstar.py", + "lib/python3.11/site-packages/tests/conda_env/specs/test_requirements.py", + "lib/python3.11/site-packages/tests/conda_env/specs/test_yaml_file.py", + "lib/python3.11/site-packages/tests/conda_env/support/add-pip.yml", + "lib/python3.11/site-packages/tests/conda_env/support/advanced-pip/.gitignore", + "lib/python3.11/site-packages/tests/conda_env/support/advanced-pip/another-project-requirements.txt", + "lib/python3.11/site-packages/tests/conda_env/support/advanced-pip/environment.yml", + "lib/python3.11/site-packages/tests/conda_env/support/advanced-pip/module_to_install_in_editable_mode/__pycache__/setup.cpython-311.pyc", + "lib/python3.11/site-packages/tests/conda_env/support/advanced-pip/module_to_install_in_editable_mode/setup.py", + "lib/python3.11/site-packages/tests/conda_env/support/channels_with_envvars.yml", + "lib/python3.11/site-packages/tests/conda_env/support/empty_env.yml", + "lib/python3.11/site-packages/tests/conda_env/support/env_with_dependencies.yml", + "lib/python3.11/site-packages/tests/conda_env/support/example-yaml/environment.yaml", + "lib/python3.11/site-packages/tests/conda_env/support/example/environment.yml", + "lib/python3.11/site-packages/tests/conda_env/support/example/environment_host_port.yml", + "lib/python3.11/site-packages/tests/conda_env/support/example/environment_pinned.yml", + "lib/python3.11/site-packages/tests/conda_env/support/example/environment_pinned_updated.yml", + "lib/python3.11/site-packages/tests/conda_env/support/foo/bar/baz/readme", + "lib/python3.11/site-packages/tests/conda_env/support/foo/bar/readme", + "lib/python3.11/site-packages/tests/conda_env/support/foo/environment.yml", + "lib/python3.11/site-packages/tests/conda_env/support/invalid_keys.yml", + "lib/python3.11/site-packages/tests/conda_env/support/notebook.ipynb", + "lib/python3.11/site-packages/tests/conda_env/support/notebook_with_env.ipynb", + "lib/python3.11/site-packages/tests/conda_env/support/pip_argh.yml", + "lib/python3.11/site-packages/tests/conda_env/support/requirements.txt", + "lib/python3.11/site-packages/tests/conda_env/support/saved-env/environment.yml", + "lib/python3.11/site-packages/tests/conda_env/support/simple.yml", + "lib/python3.11/site-packages/tests/conda_env/support/valid_keys.yml", + "lib/python3.11/site-packages/tests/conda_env/support/with-pip.yml", + "lib/python3.11/site-packages/tests/conda_env/test_cli.py", + "lib/python3.11/site-packages/tests/conda_env/test_create.py", + "lib/python3.11/site-packages/tests/conda_env/test_env.py", + "lib/python3.11/site-packages/tests/conda_env/test_pip_util.py", + "lib/python3.11/site-packages/tests/conda_env/utils.py", + "lib/python3.11/site-packages/tests/test-recipes/activate_deactivate_package/src/etc/conda/activate.d/activate.bat", + "lib/python3.11/site-packages/tests/test-recipes/activate_deactivate_package/src/etc/conda/activate.d/activate.sh", + "lib/python3.11/site-packages/tests/test-recipes/activate_deactivate_package/src/etc/conda/deactivate.d/deactivate.bat", + "lib/python3.11/site-packages/tests/test-recipes/activate_deactivate_package/src/etc/conda/deactivate.d/deactivate.sh", + "lib/python3.11/site-packages/xontrib/conda.xsh", + "shell/condabin/Conda.psm1", + "shell/condabin/conda-hook.ps1" + ], + "fn": "conda-23.11.0-py311hca03da5_0.conda", + "license": "BSD-3-Clause", + "link": { + "source": "/Users/donjayamanne/miniconda3/pkgs/conda-23.11.0-py311hca03da5_0", + "type": 1 + }, + "md5": "d40f56a649df2d05c5468713732e005e", + "name": "conda", + "package_tarball_full_path": "/Users/donjayamanne/miniconda3/pkgs/conda-23.11.0-py311hca03da5_0.conda", + "paths_data": { + "paths": [ + { + "_path": "bin/activate", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "92dd3f5997c70939665a9000ba114ba13f28c5ce1341fa75060f48dcb808a127", + "sha256_in_prefix": "4270a26a4429c0dd5a4c35900f8b2211b35c7447367b6f2b8470bdedc1f240ca", + "size_in_bytes": 429 + }, + { + "_path": "bin/conda", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "c6380d731f573d898f146d5580e0447dd44d068d619bda7aff326095f8bc4f88", + "sha256_in_prefix": "b5dd14921f011aa934757f31b62e0fa2be17a1a9f99ccb2d26a1f12a864d64e8", + "size_in_bytes": 756 + }, + { + "_path": "bin/conda-env", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "c7e6fa37766fe556ef4f95c0860a0eb7f7817c6f057ba9369e248bcdd7f37c9d", + "sha256_in_prefix": "88be67a0d6c47edbd65fa3d860a3514daed6b6bac830ec93800cf43fd778379c", + "size_in_bytes": 393 + }, + { + "_path": "bin/deactivate", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "a69da038fee96660c3f47c2c393c05b54986ba0c929aada61cd410df6e09746e", + "sha256_in_prefix": "2af9834dc0f7c2fb9db2f9e67829700c6828774d9ad7996602324c5a5387a89c", + "size_in_bytes": 517 + }, + { + "_path": "condabin/conda", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "c6380d731f573d898f146d5580e0447dd44d068d619bda7aff326095f8bc4f88", + "sha256_in_prefix": "b5dd14921f011aa934757f31b62e0fa2be17a1a9f99ccb2d26a1f12a864d64e8", + "size_in_bytes": 756 + }, + { + "_path": "etc/fish/conf.d/conda.fish", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "85caec3d76f3239e105f88cbafc6acbe04cd97fd4c1db4da4e0dcf4d357a631e", + "sha256_in_prefix": "a1ab61539200ab52ec85d9bf7de9b1cfe4a7fbdd4da2f6a7882d417ea8c7d3e1", + "size_in_bytes": 4880 + }, + { + "_path": "etc/profile.d/conda.csh", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "966581001ffd439152bf4432c7c436e25014aa2386668a00145b4087aa354604", + "sha256_in_prefix": "85a53ef7d70dcb1c16695b970bbc3880b74eaa23fff43dde57796e34fcb2ead7", + "size_in_bytes": 3163 + }, + { + "_path": "etc/profile.d/conda.sh", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "a147ccd49f1579e69c49cb12114421d95b84a1e02ef1df7c4f8c51d44cd026d1", + "sha256_in_prefix": "920d3be6a977141273da05e8d0a1867352013f1e2702a313fea15a101432f344", + "size_in_bytes": 2552 + }, + { + "_path": "lib/python3.11/site-packages/xontrib/conda.xsh", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "e0e9fb9f5d108c70434802b45e51910671b409a3cddd7b4ec887af2b07e2ce05", + "sha256_in_prefix": "c0650607c2cf90f2ce94f3b7370349922fdac5901e3316fa9f065d8773b3f944", + "size_in_bytes": 7565 + }, + { + "_path": "shell/condabin/conda-hook.ps1", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_e1pbeimigh/croot/conda_1701719523512/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", + "sha256": "94f9a90527bf021292a113a9e546e3f5dd042ae3afc0ed2a7a5763ef312ac756", + "sha256_in_prefix": "4edd554f34b2aa567876996da1be4cbc89d866e0e3d958f42d7889ccff8f617f", + "size_in_bytes": 1047 + } + ], + "paths_version": 1 + }, + "requested_spec": "defaults/osx-arm64::conda==23.11.0=py311hca03da5_0[md5=d40f56a649df2d05c5468713732e005e]", + "sha256": "63ade392153a88ba334593059bfce7ab3b6df1dbbd6622655c8a7db587f70a78", + "size": 1317120, + "subdir": "osx-arm64", + "timestamp": 1701719702000, + "track_features": "", + "url": "https://repo.anaconda.com/pkgs/main/osx-arm64/conda-23.11.0-py311hca03da5_0.conda", + "version": "23.11.0" +} \ No newline at end of file diff --git a/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniforge3-4.11.0-1/conda-meta/history b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniforge3-4.11.0-1/conda-meta/history new file mode 100644 index 000000000000..b196a3e5922b --- /dev/null +++ b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniforge3-4.11.0-1/conda-meta/history @@ -0,0 +1,72 @@ +==> 2024-02-14 17:04:16 <== +# cmd: /Users/donjayamanne/miniconda3/conda.exe install --offline --file /Users/donjayamanne/miniconda3/pkgs/env.txt -yp /Users/donjayamanne/miniconda3 +# conda version: 23.10.0 ++defaults/noarch::archspec-0.2.1-pyhd3eb1b0_0 ++defaults/noarch::charset-normalizer-2.0.4-pyhd3eb1b0_0 ++defaults/noarch::conda-libmamba-solver-23.12.0-pyhd3eb1b0_1 ++defaults/noarch::jsonpatch-1.32-pyhd3eb1b0_0 ++defaults/noarch::jsonpointer-2.1-pyhd3eb1b0_0 ++defaults/noarch::pybind11-abi-4-hd3eb1b0_1 ++defaults/noarch::pycparser-2.21-pyhd3eb1b0_0 ++defaults/noarch::tzdata-2023c-h04d1e81_0 ++defaults/osx-arm64::boltons-23.0.0-py311hca03da5_0 ++defaults/osx-arm64::brotli-python-1.0.9-py311h313beb8_7 ++defaults/osx-arm64::bzip2-1.0.8-h620ffc9_4 ++defaults/osx-arm64::c-ares-1.19.1-h80987f9_0 ++defaults/osx-arm64::ca-certificates-2023.12.12-hca03da5_0 ++defaults/osx-arm64::certifi-2023.11.17-py311hca03da5_0 ++defaults/osx-arm64::cffi-1.16.0-py311h80987f9_0 ++defaults/osx-arm64::conda-23.11.0-py311hca03da5_0 ++defaults/osx-arm64::conda-content-trust-0.2.0-py311hca03da5_0 ++defaults/osx-arm64::conda-package-handling-2.2.0-py311hca03da5_0 ++defaults/osx-arm64::conda-package-streaming-0.9.0-py311hca03da5_0 ++defaults/osx-arm64::cryptography-41.0.7-py311hd4332d6_0 ++defaults/osx-arm64::distro-1.8.0-py311hca03da5_0 ++defaults/osx-arm64::fmt-9.1.0-h48ca7d4_0 ++defaults/osx-arm64::icu-73.1-h313beb8_0 ++defaults/osx-arm64::idna-3.4-py311hca03da5_0 ++defaults/osx-arm64::krb5-1.20.1-hf3e1bf2_1 ++defaults/osx-arm64::libarchive-3.6.2-h62fee54_2 ++defaults/osx-arm64::libcurl-8.4.0-h3e2b118_1 ++defaults/osx-arm64::libcxx-14.0.6-h848a8c0_0 ++defaults/osx-arm64::libedit-3.1.20230828-h80987f9_0 ++defaults/osx-arm64::libev-4.33-h1a28f6b_1 ++defaults/osx-arm64::libffi-3.4.4-hca03da5_0 ++defaults/osx-arm64::libiconv-1.16-h1a28f6b_2 ++defaults/osx-arm64::libmamba-1.5.3-h15e39b3_0 ++defaults/osx-arm64::libmambapy-1.5.3-py311h1c5506f_0 ++defaults/osx-arm64::libnghttp2-1.57.0-h62f6fdd_0 ++defaults/osx-arm64::libsolv-0.7.24-h514c7bf_0 ++defaults/osx-arm64::libssh2-1.10.0-h02f6b3c_2 ++defaults/osx-arm64::libxml2-2.10.4-h0dcf63f_1 ++defaults/osx-arm64::lz4-c-1.9.4-h313beb8_0 ++defaults/osx-arm64::menuinst-2.0.1-py311hca03da5_1 ++defaults/osx-arm64::ncurses-6.4-h313beb8_0 ++defaults/osx-arm64::openssl-3.0.12-h1a28f6b_0 ++defaults/osx-arm64::packaging-23.1-py311hca03da5_0 ++defaults/osx-arm64::pcre2-10.42-hb066dcc_0 ++defaults/osx-arm64::pip-23.3.1-py311hca03da5_0 ++defaults/osx-arm64::platformdirs-3.10.0-py311hca03da5_0 ++defaults/osx-arm64::pluggy-1.0.0-py311hca03da5_1 ++defaults/osx-arm64::pycosat-0.6.6-py311h80987f9_0 ++defaults/osx-arm64::pyopenssl-23.2.0-py311hca03da5_0 ++defaults/osx-arm64::pysocks-1.7.1-py311hca03da5_0 ++defaults/osx-arm64::python-3.11.5-hb885b13_0 ++defaults/osx-arm64::python.app-3-py311h80987f9_0 ++defaults/osx-arm64::readline-8.2-h1a28f6b_0 ++defaults/osx-arm64::reproc-14.2.4-hc377ac9_1 ++defaults/osx-arm64::reproc-cpp-14.2.4-hc377ac9_1 ++defaults/osx-arm64::requests-2.31.0-py311hca03da5_0 ++defaults/osx-arm64::ruamel.yaml-0.17.21-py311h80987f9_0 ++defaults/osx-arm64::setuptools-68.2.2-py311hca03da5_0 ++defaults/osx-arm64::sqlite-3.41.2-h80987f9_0 ++defaults/osx-arm64::tk-8.6.12-hb8d0fd4_0 ++defaults/osx-arm64::tqdm-4.65.0-py311hb6e6a13_0 ++defaults/osx-arm64::truststore-0.8.0-py311hca03da5_0 ++defaults/osx-arm64::urllib3-1.26.18-py311hca03da5_0 ++defaults/osx-arm64::wheel-0.41.2-py311hca03da5_0 ++defaults/osx-arm64::xz-5.4.5-h80987f9_0 ++defaults/osx-arm64::yaml-cpp-0.8.0-h313beb8_0 ++defaults/osx-arm64::zlib-1.2.13-h5a0b063_0 ++defaults/osx-arm64::zstandard-0.19.0-py311h80987f9_0 ++defaults/osx-arm64::zstd-1.5.5-hd90d995_0 diff --git a/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniforge3-4.11.0-1/conda-meta/python-3.11.5-hb885b13_0.json b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniforge3-4.11.0-1/conda-meta/python-3.11.5-hb885b13_0.json new file mode 100644 index 000000000000..90b9af01a4e0 --- /dev/null +++ b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniforge3-4.11.0-1/conda-meta/python-3.11.5-hb885b13_0.json @@ -0,0 +1,2280 @@ +{ + "build": "hb885b13_0", + "build_number": 0, + "channel": "https://repo.anaconda.com/pkgs/main/osx-arm64", + "constrains": [], + "depends": [ + "bzip2 >=1.0.8,<2.0a0", + "libffi >=3.4,<3.5", + "libffi >=3.4,<4.0a0", + "ncurses >=6.4,<7.0a0", + "openssl >=3.0.10,<4.0a0", + "readline >=8.1.2,<9.0a0", + "sqlite >=3.41.2,<4.0a0", + "tk >=8.6.12,<8.7.0a0", + "tzdata", + "xz >=5.4.2,<6.0a0", + "zlib >=1.2.13,<1.3.0a0", + "pip" + ], + "extracted_package_dir": "/Users/donjayamanne/miniconda3/pkgs/python-3.11.5-hb885b13_0", + "features": "", + "files": [ + "bin/2to3", + "bin/2to3-3.11", + "bin/idle3", + "bin/idle3.11", + "bin/pydoc", + "bin/pydoc3", + "bin/pydoc3.11", + "bin/python", + "bin/python3", + "bin/python3-config", + "bin/python3.1", + "bin/python3.11", + "bin/python3.11-config", + "include/python3.11/Python.h", + "include/python3.11/abstract.h", + "include/python3.11/bltinmodule.h", + "include/python3.11/boolobject.h", + "include/python3.11/bytearrayobject.h", + "include/python3.11/bytesobject.h", + "include/python3.11/ceval.h", + "include/python3.11/codecs.h", + "include/python3.11/compile.h", + "include/python3.11/complexobject.h", + "include/python3.11/cpython/abstract.h", + "include/python3.11/cpython/bytearrayobject.h", + "include/python3.11/cpython/bytesobject.h", + "include/python3.11/cpython/cellobject.h", + "include/python3.11/cpython/ceval.h", + "include/python3.11/cpython/classobject.h", + "include/python3.11/cpython/code.h", + "include/python3.11/cpython/compile.h", + "include/python3.11/cpython/complexobject.h", + "include/python3.11/cpython/context.h", + "include/python3.11/cpython/descrobject.h", + "include/python3.11/cpython/dictobject.h", + "include/python3.11/cpython/fileobject.h", + "include/python3.11/cpython/fileutils.h", + "include/python3.11/cpython/floatobject.h", + "include/python3.11/cpython/frameobject.h", + "include/python3.11/cpython/funcobject.h", + "include/python3.11/cpython/genobject.h", + "include/python3.11/cpython/import.h", + "include/python3.11/cpython/initconfig.h", + "include/python3.11/cpython/listobject.h", + "include/python3.11/cpython/longintrepr.h", + "include/python3.11/cpython/longobject.h", + "include/python3.11/cpython/methodobject.h", + "include/python3.11/cpython/modsupport.h", + "include/python3.11/cpython/object.h", + "include/python3.11/cpython/objimpl.h", + "include/python3.11/cpython/odictobject.h", + "include/python3.11/cpython/picklebufobject.h", + "include/python3.11/cpython/pthread_stubs.h", + "include/python3.11/cpython/pyctype.h", + "include/python3.11/cpython/pydebug.h", + "include/python3.11/cpython/pyerrors.h", + "include/python3.11/cpython/pyfpe.h", + "include/python3.11/cpython/pyframe.h", + "include/python3.11/cpython/pylifecycle.h", + "include/python3.11/cpython/pymem.h", + "include/python3.11/cpython/pystate.h", + "include/python3.11/cpython/pythonrun.h", + "include/python3.11/cpython/pythread.h", + "include/python3.11/cpython/pytime.h", + "include/python3.11/cpython/setobject.h", + "include/python3.11/cpython/sysmodule.h", + "include/python3.11/cpython/traceback.h", + "include/python3.11/cpython/tupleobject.h", + "include/python3.11/cpython/unicodeobject.h", + "include/python3.11/cpython/warnings.h", + "include/python3.11/cpython/weakrefobject.h", + "include/python3.11/datetime.h", + "include/python3.11/descrobject.h", + "include/python3.11/dictobject.h", + "include/python3.11/dynamic_annotations.h", + "include/python3.11/enumobject.h", + "include/python3.11/errcode.h", + "include/python3.11/exports.h", + "include/python3.11/fileobject.h", + "include/python3.11/fileutils.h", + "include/python3.11/floatobject.h", + "include/python3.11/frameobject.h", + "include/python3.11/genericaliasobject.h", + "include/python3.11/import.h", + "include/python3.11/internal/pycore_abstract.h", + "include/python3.11/internal/pycore_accu.h", + "include/python3.11/internal/pycore_asdl.h", + "include/python3.11/internal/pycore_ast.h", + "include/python3.11/internal/pycore_ast_state.h", + "include/python3.11/internal/pycore_atomic.h", + "include/python3.11/internal/pycore_atomic_funcs.h", + "include/python3.11/internal/pycore_bitutils.h", + "include/python3.11/internal/pycore_blocks_output_buffer.h", + "include/python3.11/internal/pycore_bytes_methods.h", + "include/python3.11/internal/pycore_bytesobject.h", + "include/python3.11/internal/pycore_call.h", + "include/python3.11/internal/pycore_ceval.h", + "include/python3.11/internal/pycore_code.h", + "include/python3.11/internal/pycore_compile.h", + "include/python3.11/internal/pycore_condvar.h", + "include/python3.11/internal/pycore_context.h", + "include/python3.11/internal/pycore_dict.h", + "include/python3.11/internal/pycore_dtoa.h", + "include/python3.11/internal/pycore_emscripten_signal.h", + "include/python3.11/internal/pycore_exceptions.h", + "include/python3.11/internal/pycore_fileutils.h", + "include/python3.11/internal/pycore_floatobject.h", + "include/python3.11/internal/pycore_format.h", + "include/python3.11/internal/pycore_frame.h", + "include/python3.11/internal/pycore_function.h", + "include/python3.11/internal/pycore_gc.h", + "include/python3.11/internal/pycore_genobject.h", + "include/python3.11/internal/pycore_getopt.h", + "include/python3.11/internal/pycore_gil.h", + "include/python3.11/internal/pycore_global_objects.h", + "include/python3.11/internal/pycore_global_strings.h", + "include/python3.11/internal/pycore_hamt.h", + "include/python3.11/internal/pycore_hashtable.h", + "include/python3.11/internal/pycore_import.h", + "include/python3.11/internal/pycore_initconfig.h", + "include/python3.11/internal/pycore_interp.h", + "include/python3.11/internal/pycore_interpreteridobject.h", + "include/python3.11/internal/pycore_list.h", + "include/python3.11/internal/pycore_long.h", + "include/python3.11/internal/pycore_moduleobject.h", + "include/python3.11/internal/pycore_namespace.h", + "include/python3.11/internal/pycore_object.h", + "include/python3.11/internal/pycore_opcode.h", + "include/python3.11/internal/pycore_parser.h", + "include/python3.11/internal/pycore_pathconfig.h", + "include/python3.11/internal/pycore_pyarena.h", + "include/python3.11/internal/pycore_pyerrors.h", + "include/python3.11/internal/pycore_pyhash.h", + "include/python3.11/internal/pycore_pylifecycle.h", + "include/python3.11/internal/pycore_pymath.h", + "include/python3.11/internal/pycore_pymem.h", + "include/python3.11/internal/pycore_pystate.h", + "include/python3.11/internal/pycore_runtime.h", + "include/python3.11/internal/pycore_runtime_init.h", + "include/python3.11/internal/pycore_signal.h", + "include/python3.11/internal/pycore_sliceobject.h", + "include/python3.11/internal/pycore_strhex.h", + "include/python3.11/internal/pycore_structseq.h", + "include/python3.11/internal/pycore_symtable.h", + "include/python3.11/internal/pycore_sysmodule.h", + "include/python3.11/internal/pycore_traceback.h", + "include/python3.11/internal/pycore_tuple.h", + "include/python3.11/internal/pycore_typeobject.h", + "include/python3.11/internal/pycore_ucnhash.h", + "include/python3.11/internal/pycore_unicodeobject.h", + "include/python3.11/internal/pycore_unionobject.h", + "include/python3.11/internal/pycore_warnings.h", + "include/python3.11/intrcheck.h", + "include/python3.11/iterobject.h", + "include/python3.11/listobject.h", + "include/python3.11/longobject.h", + "include/python3.11/marshal.h", + "include/python3.11/memoryobject.h", + "include/python3.11/methodobject.h", + "include/python3.11/modsupport.h", + "include/python3.11/moduleobject.h", + "include/python3.11/object.h", + "include/python3.11/objimpl.h", + "include/python3.11/opcode.h", + "include/python3.11/osdefs.h", + "include/python3.11/osmodule.h", + "include/python3.11/patchlevel.h", + "include/python3.11/py_curses.h", + "include/python3.11/pybuffer.h", + "include/python3.11/pycapsule.h", + "include/python3.11/pyconfig.h", + "include/python3.11/pydtrace.h", + "include/python3.11/pyerrors.h", + "include/python3.11/pyexpat.h", + "include/python3.11/pyframe.h", + "include/python3.11/pyhash.h", + "include/python3.11/pylifecycle.h", + "include/python3.11/pymacconfig.h", + "include/python3.11/pymacro.h", + "include/python3.11/pymath.h", + "include/python3.11/pymem.h", + "include/python3.11/pyport.h", + "include/python3.11/pystate.h", + "include/python3.11/pystrcmp.h", + "include/python3.11/pystrtod.h", + "include/python3.11/pythonrun.h", + "include/python3.11/pythread.h", + "include/python3.11/pytypedefs.h", + "include/python3.11/rangeobject.h", + "include/python3.11/setobject.h", + "include/python3.11/sliceobject.h", + "include/python3.11/structmember.h", + "include/python3.11/structseq.h", + "include/python3.11/sysmodule.h", + "include/python3.11/token.h", + "include/python3.11/traceback.h", + "include/python3.11/tracemalloc.h", + "include/python3.11/tupleobject.h", + "include/python3.11/typeslots.h", + "include/python3.11/unicodeobject.h", + "include/python3.11/warnings.h", + "include/python3.11/weakrefobject.h", + "lib/libpython3.11.dylib", + "lib/pkgconfig/python-3.11-embed.pc", + "lib/pkgconfig/python-3.11.pc", + "lib/pkgconfig/python3-embed.pc", + "lib/pkgconfig/python3.pc", + "lib/python3.1", + "lib/python3.11/LICENSE.txt", + "lib/python3.11/__future__.py", + "lib/python3.11/__hello__.py", + "lib/python3.11/__phello__/__init__.py", + "lib/python3.11/__phello__/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/__phello__/__pycache__/spam.cpython-311.pyc", + "lib/python3.11/__phello__/spam.py", + "lib/python3.11/__pycache__/__future__.cpython-311.pyc", + "lib/python3.11/__pycache__/__hello__.cpython-311.pyc", + "lib/python3.11/__pycache__/_aix_support.cpython-311.pyc", + "lib/python3.11/__pycache__/_bootsubprocess.cpython-311.pyc", + "lib/python3.11/__pycache__/_collections_abc.cpython-311.pyc", + "lib/python3.11/__pycache__/_compat_pickle.cpython-311.pyc", + "lib/python3.11/__pycache__/_compression.cpython-311.pyc", + "lib/python3.11/__pycache__/_markupbase.cpython-311.pyc", + "lib/python3.11/__pycache__/_osx_support.cpython-311.pyc", + "lib/python3.11/__pycache__/_py_abc.cpython-311.pyc", + "lib/python3.11/__pycache__/_pydecimal.cpython-311.pyc", + "lib/python3.11/__pycache__/_pyio.cpython-311.pyc", + "lib/python3.11/__pycache__/_sitebuiltins.cpython-311.pyc", + "lib/python3.11/__pycache__/_strptime.cpython-311.pyc", + "lib/python3.11/__pycache__/_sysconfigdata__darwin_darwin.cpython-311.pyc", + "lib/python3.11/__pycache__/_sysconfigdata_arm64_apple_darwin20_0_0.cpython-311.pyc", + "lib/python3.11/__pycache__/_threading_local.cpython-311.pyc", + "lib/python3.11/__pycache__/_weakrefset.cpython-311.pyc", + "lib/python3.11/__pycache__/abc.cpython-311.pyc", + "lib/python3.11/__pycache__/aifc.cpython-311.pyc", + "lib/python3.11/__pycache__/antigravity.cpython-311.pyc", + "lib/python3.11/__pycache__/argparse.cpython-311.pyc", + "lib/python3.11/__pycache__/ast.cpython-311.pyc", + "lib/python3.11/__pycache__/asynchat.cpython-311.pyc", + "lib/python3.11/__pycache__/asyncore.cpython-311.pyc", + "lib/python3.11/__pycache__/base64.cpython-311.pyc", + "lib/python3.11/__pycache__/bdb.cpython-311.pyc", + "lib/python3.11/__pycache__/bisect.cpython-311.pyc", + "lib/python3.11/__pycache__/bz2.cpython-311.pyc", + "lib/python3.11/__pycache__/cProfile.cpython-311.pyc", + "lib/python3.11/__pycache__/calendar.cpython-311.pyc", + "lib/python3.11/__pycache__/cgi.cpython-311.pyc", + "lib/python3.11/__pycache__/cgitb.cpython-311.pyc", + "lib/python3.11/__pycache__/chunk.cpython-311.pyc", + "lib/python3.11/__pycache__/cmd.cpython-311.pyc", + "lib/python3.11/__pycache__/code.cpython-311.pyc", + "lib/python3.11/__pycache__/codecs.cpython-311.pyc", + "lib/python3.11/__pycache__/codeop.cpython-311.pyc", + "lib/python3.11/__pycache__/colorsys.cpython-311.pyc", + "lib/python3.11/__pycache__/compileall.cpython-311.pyc", + "lib/python3.11/__pycache__/configparser.cpython-311.pyc", + "lib/python3.11/__pycache__/contextlib.cpython-311.pyc", + "lib/python3.11/__pycache__/contextvars.cpython-311.pyc", + "lib/python3.11/__pycache__/copy.cpython-311.pyc", + "lib/python3.11/__pycache__/copyreg.cpython-311.pyc", + "lib/python3.11/__pycache__/crypt.cpython-311.pyc", + "lib/python3.11/__pycache__/csv.cpython-311.pyc", + "lib/python3.11/__pycache__/dataclasses.cpython-311.pyc", + "lib/python3.11/__pycache__/datetime.cpython-311.pyc", + "lib/python3.11/__pycache__/decimal.cpython-311.pyc", + "lib/python3.11/__pycache__/difflib.cpython-311.pyc", + "lib/python3.11/__pycache__/dis.cpython-311.pyc", + "lib/python3.11/__pycache__/doctest.cpython-311.pyc", + "lib/python3.11/__pycache__/enum.cpython-311.pyc", + "lib/python3.11/__pycache__/filecmp.cpython-311.pyc", + "lib/python3.11/__pycache__/fileinput.cpython-311.pyc", + "lib/python3.11/__pycache__/fnmatch.cpython-311.pyc", + "lib/python3.11/__pycache__/fractions.cpython-311.pyc", + "lib/python3.11/__pycache__/ftplib.cpython-311.pyc", + "lib/python3.11/__pycache__/functools.cpython-311.pyc", + "lib/python3.11/__pycache__/genericpath.cpython-311.pyc", + "lib/python3.11/__pycache__/getopt.cpython-311.pyc", + "lib/python3.11/__pycache__/getpass.cpython-311.pyc", + "lib/python3.11/__pycache__/gettext.cpython-311.pyc", + "lib/python3.11/__pycache__/glob.cpython-311.pyc", + "lib/python3.11/__pycache__/graphlib.cpython-311.pyc", + "lib/python3.11/__pycache__/gzip.cpython-311.pyc", + "lib/python3.11/__pycache__/hashlib.cpython-311.pyc", + "lib/python3.11/__pycache__/heapq.cpython-311.pyc", + "lib/python3.11/__pycache__/hmac.cpython-311.pyc", + "lib/python3.11/__pycache__/imaplib.cpython-311.pyc", + "lib/python3.11/__pycache__/imghdr.cpython-311.pyc", + "lib/python3.11/__pycache__/imp.cpython-311.pyc", + "lib/python3.11/__pycache__/inspect.cpython-311.pyc", + "lib/python3.11/__pycache__/io.cpython-311.pyc", + "lib/python3.11/__pycache__/ipaddress.cpython-311.pyc", + "lib/python3.11/__pycache__/keyword.cpython-311.pyc", + "lib/python3.11/__pycache__/linecache.cpython-311.pyc", + "lib/python3.11/__pycache__/locale.cpython-311.pyc", + "lib/python3.11/__pycache__/lzma.cpython-311.pyc", + "lib/python3.11/__pycache__/mailbox.cpython-311.pyc", + "lib/python3.11/__pycache__/mailcap.cpython-311.pyc", + "lib/python3.11/__pycache__/mimetypes.cpython-311.pyc", + "lib/python3.11/__pycache__/modulefinder.cpython-311.pyc", + "lib/python3.11/__pycache__/netrc.cpython-311.pyc", + "lib/python3.11/__pycache__/nntplib.cpython-311.pyc", + "lib/python3.11/__pycache__/ntpath.cpython-311.pyc", + "lib/python3.11/__pycache__/nturl2path.cpython-311.pyc", + "lib/python3.11/__pycache__/numbers.cpython-311.pyc", + "lib/python3.11/__pycache__/opcode.cpython-311.pyc", + "lib/python3.11/__pycache__/operator.cpython-311.pyc", + "lib/python3.11/__pycache__/optparse.cpython-311.pyc", + "lib/python3.11/__pycache__/os.cpython-311.pyc", + "lib/python3.11/__pycache__/pathlib.cpython-311.pyc", + "lib/python3.11/__pycache__/pdb.cpython-311.pyc", + "lib/python3.11/__pycache__/pickle.cpython-311.pyc", + "lib/python3.11/__pycache__/pickletools.cpython-311.pyc", + "lib/python3.11/__pycache__/pipes.cpython-311.pyc", + "lib/python3.11/__pycache__/pkgutil.cpython-311.pyc", + "lib/python3.11/__pycache__/platform.cpython-311.pyc", + "lib/python3.11/__pycache__/plistlib.cpython-311.pyc", + "lib/python3.11/__pycache__/poplib.cpython-311.pyc", + "lib/python3.11/__pycache__/posixpath.cpython-311.pyc", + "lib/python3.11/__pycache__/pprint.cpython-311.pyc", + "lib/python3.11/__pycache__/profile.cpython-311.pyc", + "lib/python3.11/__pycache__/pstats.cpython-311.pyc", + "lib/python3.11/__pycache__/pty.cpython-311.pyc", + "lib/python3.11/__pycache__/py_compile.cpython-311.pyc", + "lib/python3.11/__pycache__/pyclbr.cpython-311.pyc", + "lib/python3.11/__pycache__/pydoc.cpython-311.pyc", + "lib/python3.11/__pycache__/queue.cpython-311.pyc", + "lib/python3.11/__pycache__/quopri.cpython-311.pyc", + "lib/python3.11/__pycache__/random.cpython-311.pyc", + "lib/python3.11/__pycache__/reprlib.cpython-311.pyc", + "lib/python3.11/__pycache__/rlcompleter.cpython-311.pyc", + "lib/python3.11/__pycache__/runpy.cpython-311.pyc", + "lib/python3.11/__pycache__/sched.cpython-311.pyc", + "lib/python3.11/__pycache__/secrets.cpython-311.pyc", + "lib/python3.11/__pycache__/selectors.cpython-311.pyc", + "lib/python3.11/__pycache__/shelve.cpython-311.pyc", + "lib/python3.11/__pycache__/shlex.cpython-311.pyc", + "lib/python3.11/__pycache__/shutil.cpython-311.pyc", + "lib/python3.11/__pycache__/signal.cpython-311.pyc", + "lib/python3.11/__pycache__/site.cpython-311.pyc", + "lib/python3.11/__pycache__/smtpd.cpython-311.pyc", + "lib/python3.11/__pycache__/smtplib.cpython-311.pyc", + "lib/python3.11/__pycache__/sndhdr.cpython-311.pyc", + "lib/python3.11/__pycache__/socket.cpython-311.pyc", + "lib/python3.11/__pycache__/socketserver.cpython-311.pyc", + "lib/python3.11/__pycache__/sre_compile.cpython-311.pyc", + "lib/python3.11/__pycache__/sre_constants.cpython-311.pyc", + "lib/python3.11/__pycache__/sre_parse.cpython-311.pyc", + "lib/python3.11/__pycache__/ssl.cpython-311.pyc", + "lib/python3.11/__pycache__/stat.cpython-311.pyc", + "lib/python3.11/__pycache__/statistics.cpython-311.pyc", + "lib/python3.11/__pycache__/string.cpython-311.pyc", + "lib/python3.11/__pycache__/stringprep.cpython-311.pyc", + "lib/python3.11/__pycache__/struct.cpython-311.pyc", + "lib/python3.11/__pycache__/subprocess.cpython-311.pyc", + "lib/python3.11/__pycache__/sunau.cpython-311.pyc", + "lib/python3.11/__pycache__/symtable.cpython-311.pyc", + "lib/python3.11/__pycache__/sysconfig.cpython-311.pyc", + "lib/python3.11/__pycache__/tabnanny.cpython-311.pyc", + "lib/python3.11/__pycache__/tarfile.cpython-311.pyc", + "lib/python3.11/__pycache__/telnetlib.cpython-311.pyc", + "lib/python3.11/__pycache__/tempfile.cpython-311.pyc", + "lib/python3.11/__pycache__/textwrap.cpython-311.pyc", + "lib/python3.11/__pycache__/this.cpython-311.pyc", + "lib/python3.11/__pycache__/threading.cpython-311.pyc", + "lib/python3.11/__pycache__/timeit.cpython-311.pyc", + "lib/python3.11/__pycache__/token.cpython-311.pyc", + "lib/python3.11/__pycache__/tokenize.cpython-311.pyc", + "lib/python3.11/__pycache__/trace.cpython-311.pyc", + "lib/python3.11/__pycache__/traceback.cpython-311.pyc", + "lib/python3.11/__pycache__/tracemalloc.cpython-311.pyc", + "lib/python3.11/__pycache__/tty.cpython-311.pyc", + "lib/python3.11/__pycache__/turtle.cpython-311.pyc", + "lib/python3.11/__pycache__/types.cpython-311.pyc", + "lib/python3.11/__pycache__/typing.cpython-311.pyc", + "lib/python3.11/__pycache__/uu.cpython-311.pyc", + "lib/python3.11/__pycache__/uuid.cpython-311.pyc", + "lib/python3.11/__pycache__/warnings.cpython-311.pyc", + "lib/python3.11/__pycache__/wave.cpython-311.pyc", + "lib/python3.11/__pycache__/weakref.cpython-311.pyc", + "lib/python3.11/__pycache__/webbrowser.cpython-311.pyc", + "lib/python3.11/__pycache__/xdrlib.cpython-311.pyc", + "lib/python3.11/__pycache__/zipapp.cpython-311.pyc", + "lib/python3.11/__pycache__/zipfile.cpython-311.pyc", + "lib/python3.11/__pycache__/zipimport.cpython-311.pyc", + "lib/python3.11/_aix_support.py", + "lib/python3.11/_bootsubprocess.py", + "lib/python3.11/_collections_abc.py", + "lib/python3.11/_compat_pickle.py", + "lib/python3.11/_compression.py", + "lib/python3.11/_markupbase.py", + "lib/python3.11/_osx_support.py", + "lib/python3.11/_py_abc.py", + "lib/python3.11/_pydecimal.py", + "lib/python3.11/_pyio.py", + "lib/python3.11/_sitebuiltins.py", + "lib/python3.11/_strptime.py", + "lib/python3.11/_sysconfigdata__darwin_darwin.py", + "lib/python3.11/_sysconfigdata__darwin_darwin.py.orig", + "lib/python3.11/_sysconfigdata_arm64_apple_darwin20_0_0.py", + "lib/python3.11/_threading_local.py", + "lib/python3.11/_weakrefset.py", + "lib/python3.11/abc.py", + "lib/python3.11/aifc.py", + "lib/python3.11/antigravity.py", + "lib/python3.11/argparse.py", + "lib/python3.11/ast.py", + "lib/python3.11/asynchat.py", + "lib/python3.11/asyncio/__init__.py", + "lib/python3.11/asyncio/__main__.py", + "lib/python3.11/asyncio/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/base_events.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/base_futures.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/base_subprocess.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/base_tasks.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/constants.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/coroutines.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/events.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/exceptions.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/format_helpers.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/futures.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/locks.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/log.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/mixins.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/proactor_events.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/protocols.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/queues.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/runners.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/selector_events.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/sslproto.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/staggered.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/streams.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/subprocess.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/taskgroups.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/tasks.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/threads.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/timeouts.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/transports.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/trsock.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/unix_events.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/windows_events.cpython-311.pyc", + "lib/python3.11/asyncio/__pycache__/windows_utils.cpython-311.pyc", + "lib/python3.11/asyncio/base_events.py", + "lib/python3.11/asyncio/base_futures.py", + "lib/python3.11/asyncio/base_subprocess.py", + "lib/python3.11/asyncio/base_tasks.py", + "lib/python3.11/asyncio/constants.py", + "lib/python3.11/asyncio/coroutines.py", + "lib/python3.11/asyncio/events.py", + "lib/python3.11/asyncio/exceptions.py", + "lib/python3.11/asyncio/format_helpers.py", + "lib/python3.11/asyncio/futures.py", + "lib/python3.11/asyncio/locks.py", + "lib/python3.11/asyncio/log.py", + "lib/python3.11/asyncio/mixins.py", + "lib/python3.11/asyncio/proactor_events.py", + "lib/python3.11/asyncio/protocols.py", + "lib/python3.11/asyncio/queues.py", + "lib/python3.11/asyncio/runners.py", + "lib/python3.11/asyncio/selector_events.py", + "lib/python3.11/asyncio/sslproto.py", + "lib/python3.11/asyncio/staggered.py", + "lib/python3.11/asyncio/streams.py", + "lib/python3.11/asyncio/subprocess.py", + "lib/python3.11/asyncio/taskgroups.py", + "lib/python3.11/asyncio/tasks.py", + "lib/python3.11/asyncio/threads.py", + "lib/python3.11/asyncio/timeouts.py", + "lib/python3.11/asyncio/transports.py", + "lib/python3.11/asyncio/trsock.py", + "lib/python3.11/asyncio/unix_events.py", + "lib/python3.11/asyncio/windows_events.py", + "lib/python3.11/asyncio/windows_utils.py", + "lib/python3.11/asyncore.py", + "lib/python3.11/base64.py", + "lib/python3.11/bdb.py", + "lib/python3.11/bisect.py", + "lib/python3.11/bz2.py", + "lib/python3.11/cProfile.py", + "lib/python3.11/calendar.py", + "lib/python3.11/cgi.py", + "lib/python3.11/cgitb.py", + "lib/python3.11/chunk.py", + "lib/python3.11/cmd.py", + "lib/python3.11/code.py", + "lib/python3.11/codecs.py", + "lib/python3.11/codeop.py", + "lib/python3.11/collections/__init__.py", + "lib/python3.11/collections/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/collections/__pycache__/abc.cpython-311.pyc", + "lib/python3.11/collections/abc.py", + "lib/python3.11/colorsys.py", + "lib/python3.11/compileall.py", + "lib/python3.11/concurrent/__init__.py", + "lib/python3.11/concurrent/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/concurrent/futures/__init__.py", + "lib/python3.11/concurrent/futures/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/concurrent/futures/__pycache__/_base.cpython-311.pyc", + "lib/python3.11/concurrent/futures/__pycache__/process.cpython-311.pyc", + "lib/python3.11/concurrent/futures/__pycache__/thread.cpython-311.pyc", + "lib/python3.11/concurrent/futures/_base.py", + "lib/python3.11/concurrent/futures/process.py", + "lib/python3.11/concurrent/futures/thread.py", + "lib/python3.11/config-3.11-darwin/Makefile", + "lib/python3.11/config-3.11-darwin/Setup", + "lib/python3.11/config-3.11-darwin/Setup.bootstrap", + "lib/python3.11/config-3.11-darwin/Setup.local", + "lib/python3.11/config-3.11-darwin/Setup.stdlib", + "lib/python3.11/config-3.11-darwin/__pycache__/python-config.cpython-311.pyc", + "lib/python3.11/config-3.11-darwin/config.c", + "lib/python3.11/config-3.11-darwin/config.c.in", + "lib/python3.11/config-3.11-darwin/install-sh", + "lib/python3.11/config-3.11-darwin/makesetup", + "lib/python3.11/config-3.11-darwin/python-config.py", + "lib/python3.11/config-3.11-darwin/python.o", + "lib/python3.11/configparser.py", + "lib/python3.11/contextlib.py", + "lib/python3.11/contextvars.py", + "lib/python3.11/copy.py", + "lib/python3.11/copyreg.py", + "lib/python3.11/crypt.py", + "lib/python3.11/csv.py", + "lib/python3.11/ctypes/__init__.py", + "lib/python3.11/ctypes/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/ctypes/__pycache__/_aix.cpython-311.pyc", + "lib/python3.11/ctypes/__pycache__/_endian.cpython-311.pyc", + "lib/python3.11/ctypes/__pycache__/util.cpython-311.pyc", + "lib/python3.11/ctypes/__pycache__/wintypes.cpython-311.pyc", + "lib/python3.11/ctypes/_aix.py", + "lib/python3.11/ctypes/_endian.py", + "lib/python3.11/ctypes/macholib/README.ctypes", + "lib/python3.11/ctypes/macholib/__init__.py", + "lib/python3.11/ctypes/macholib/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/ctypes/macholib/__pycache__/dyld.cpython-311.pyc", + "lib/python3.11/ctypes/macholib/__pycache__/dylib.cpython-311.pyc", + "lib/python3.11/ctypes/macholib/__pycache__/framework.cpython-311.pyc", + "lib/python3.11/ctypes/macholib/dyld.py", + "lib/python3.11/ctypes/macholib/dylib.py", + "lib/python3.11/ctypes/macholib/fetch_macholib", + "lib/python3.11/ctypes/macholib/fetch_macholib.bat", + "lib/python3.11/ctypes/macholib/framework.py", + "lib/python3.11/ctypes/util.py", + "lib/python3.11/ctypes/wintypes.py", + "lib/python3.11/curses/__init__.py", + "lib/python3.11/curses/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/curses/__pycache__/ascii.cpython-311.pyc", + "lib/python3.11/curses/__pycache__/has_key.cpython-311.pyc", + "lib/python3.11/curses/__pycache__/panel.cpython-311.pyc", + "lib/python3.11/curses/__pycache__/textpad.cpython-311.pyc", + "lib/python3.11/curses/ascii.py", + "lib/python3.11/curses/has_key.py", + "lib/python3.11/curses/panel.py", + "lib/python3.11/curses/textpad.py", + "lib/python3.11/dataclasses.py", + "lib/python3.11/datetime.py", + "lib/python3.11/dbm/__init__.py", + "lib/python3.11/dbm/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/dbm/__pycache__/dumb.cpython-311.pyc", + "lib/python3.11/dbm/__pycache__/gnu.cpython-311.pyc", + "lib/python3.11/dbm/__pycache__/ndbm.cpython-311.pyc", + "lib/python3.11/dbm/dumb.py", + "lib/python3.11/dbm/gnu.py", + "lib/python3.11/dbm/ndbm.py", + "lib/python3.11/decimal.py", + "lib/python3.11/difflib.py", + "lib/python3.11/dis.py", + "lib/python3.11/distutils/README", + "lib/python3.11/distutils/__init__.py", + "lib/python3.11/distutils/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/_msvccompiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/archive_util.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/bcppcompiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/ccompiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/cmd.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/config.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/core.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/cygwinccompiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/debug.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/dep_util.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/dir_util.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/dist.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/errors.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/extension.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/fancy_getopt.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/file_util.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/filelist.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/log.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/msvc9compiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/msvccompiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/spawn.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/sysconfig.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/text_file.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/unixccompiler.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/util.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/version.cpython-311.pyc", + "lib/python3.11/distutils/__pycache__/versionpredicate.cpython-311.pyc", + "lib/python3.11/distutils/_msvccompiler.py", + "lib/python3.11/distutils/archive_util.py", + "lib/python3.11/distutils/bcppcompiler.py", + "lib/python3.11/distutils/ccompiler.py", + "lib/python3.11/distutils/cmd.py", + "lib/python3.11/distutils/command/__init__.py", + "lib/python3.11/distutils/command/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/bdist.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/bdist_dumb.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/bdist_rpm.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/build.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/build_clib.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/build_ext.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/build_py.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/build_scripts.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/check.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/clean.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/config.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/install.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/install_data.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/install_egg_info.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/install_headers.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/install_lib.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/install_scripts.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/register.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/sdist.cpython-311.pyc", + "lib/python3.11/distutils/command/__pycache__/upload.cpython-311.pyc", + "lib/python3.11/distutils/command/bdist.py", + "lib/python3.11/distutils/command/bdist_dumb.py", + "lib/python3.11/distutils/command/bdist_rpm.py", + "lib/python3.11/distutils/command/build.py", + "lib/python3.11/distutils/command/build_clib.py", + "lib/python3.11/distutils/command/build_ext.py", + "lib/python3.11/distutils/command/build_py.py", + "lib/python3.11/distutils/command/build_scripts.py", + "lib/python3.11/distutils/command/check.py", + "lib/python3.11/distutils/command/clean.py", + "lib/python3.11/distutils/command/command_template", + "lib/python3.11/distutils/command/config.py", + "lib/python3.11/distutils/command/install.py", + "lib/python3.11/distutils/command/install_data.py", + "lib/python3.11/distutils/command/install_egg_info.py", + "lib/python3.11/distutils/command/install_headers.py", + "lib/python3.11/distutils/command/install_lib.py", + "lib/python3.11/distutils/command/install_scripts.py", + "lib/python3.11/distutils/command/register.py", + "lib/python3.11/distutils/command/sdist.py", + "lib/python3.11/distutils/command/upload.py", + "lib/python3.11/distutils/config.py", + "lib/python3.11/distutils/core.py", + "lib/python3.11/distutils/cygwinccompiler.py", + "lib/python3.11/distutils/debug.py", + "lib/python3.11/distutils/dep_util.py", + "lib/python3.11/distutils/dir_util.py", + "lib/python3.11/distutils/dist.py", + "lib/python3.11/distutils/errors.py", + "lib/python3.11/distutils/extension.py", + "lib/python3.11/distutils/fancy_getopt.py", + "lib/python3.11/distutils/file_util.py", + "lib/python3.11/distutils/filelist.py", + "lib/python3.11/distutils/log.py", + "lib/python3.11/distutils/msvc9compiler.py", + "lib/python3.11/distutils/msvccompiler.py", + "lib/python3.11/distutils/spawn.py", + "lib/python3.11/distutils/sysconfig.py", + "lib/python3.11/distutils/tests/Setup.sample", + "lib/python3.11/distutils/tests/__init__.py", + "lib/python3.11/distutils/tests/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/support.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_archive_util.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_bdist.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_bdist_dumb.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_bdist_rpm.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_build.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_build_clib.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_build_ext.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_build_py.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_build_scripts.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_check.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_clean.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_cmd.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_config.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_config_cmd.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_core.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_cygwinccompiler.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_dep_util.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_dir_util.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_dist.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_extension.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_file_util.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_filelist.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_install.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_install_data.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_install_headers.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_install_lib.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_install_scripts.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_log.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_msvc9compiler.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_msvccompiler.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_register.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_sdist.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_spawn.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_sysconfig.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_text_file.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_unixccompiler.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_upload.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_util.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_version.cpython-311.pyc", + "lib/python3.11/distutils/tests/__pycache__/test_versionpredicate.cpython-311.pyc", + "lib/python3.11/distutils/tests/includetest.rst", + "lib/python3.11/distutils/tests/support.py", + "lib/python3.11/distutils/tests/test_archive_util.py", + "lib/python3.11/distutils/tests/test_bdist.py", + "lib/python3.11/distutils/tests/test_bdist_dumb.py", + "lib/python3.11/distutils/tests/test_bdist_rpm.py", + "lib/python3.11/distutils/tests/test_build.py", + "lib/python3.11/distutils/tests/test_build_clib.py", + "lib/python3.11/distutils/tests/test_build_ext.py", + "lib/python3.11/distutils/tests/test_build_py.py", + "lib/python3.11/distutils/tests/test_build_scripts.py", + "lib/python3.11/distutils/tests/test_check.py", + "lib/python3.11/distutils/tests/test_clean.py", + "lib/python3.11/distutils/tests/test_cmd.py", + "lib/python3.11/distutils/tests/test_config.py", + "lib/python3.11/distutils/tests/test_config_cmd.py", + "lib/python3.11/distutils/tests/test_core.py", + "lib/python3.11/distutils/tests/test_cygwinccompiler.py", + "lib/python3.11/distutils/tests/test_dep_util.py", + "lib/python3.11/distutils/tests/test_dir_util.py", + "lib/python3.11/distutils/tests/test_dist.py", + "lib/python3.11/distutils/tests/test_extension.py", + "lib/python3.11/distutils/tests/test_file_util.py", + "lib/python3.11/distutils/tests/test_filelist.py", + "lib/python3.11/distutils/tests/test_install.py", + "lib/python3.11/distutils/tests/test_install_data.py", + "lib/python3.11/distutils/tests/test_install_headers.py", + "lib/python3.11/distutils/tests/test_install_lib.py", + "lib/python3.11/distutils/tests/test_install_scripts.py", + "lib/python3.11/distutils/tests/test_log.py", + "lib/python3.11/distutils/tests/test_msvc9compiler.py", + "lib/python3.11/distutils/tests/test_msvccompiler.py", + "lib/python3.11/distutils/tests/test_register.py", + "lib/python3.11/distutils/tests/test_sdist.py", + "lib/python3.11/distutils/tests/test_spawn.py", + "lib/python3.11/distutils/tests/test_sysconfig.py", + "lib/python3.11/distutils/tests/test_text_file.py", + "lib/python3.11/distutils/tests/test_unixccompiler.py", + "lib/python3.11/distutils/tests/test_upload.py", + "lib/python3.11/distutils/tests/test_util.py", + "lib/python3.11/distutils/tests/test_version.py", + "lib/python3.11/distutils/tests/test_versionpredicate.py", + "lib/python3.11/distutils/tests/xxmodule.c", + "lib/python3.11/distutils/text_file.py", + "lib/python3.11/distutils/unixccompiler.py", + "lib/python3.11/distutils/util.py", + "lib/python3.11/distutils/version.py", + "lib/python3.11/distutils/versionpredicate.py", + "lib/python3.11/doctest.py", + "lib/python3.11/email/__init__.py", + "lib/python3.11/email/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/email/__pycache__/_encoded_words.cpython-311.pyc", + "lib/python3.11/email/__pycache__/_header_value_parser.cpython-311.pyc", + "lib/python3.11/email/__pycache__/_parseaddr.cpython-311.pyc", + "lib/python3.11/email/__pycache__/_policybase.cpython-311.pyc", + "lib/python3.11/email/__pycache__/base64mime.cpython-311.pyc", + "lib/python3.11/email/__pycache__/charset.cpython-311.pyc", + "lib/python3.11/email/__pycache__/contentmanager.cpython-311.pyc", + "lib/python3.11/email/__pycache__/encoders.cpython-311.pyc", + "lib/python3.11/email/__pycache__/errors.cpython-311.pyc", + "lib/python3.11/email/__pycache__/feedparser.cpython-311.pyc", + "lib/python3.11/email/__pycache__/generator.cpython-311.pyc", + "lib/python3.11/email/__pycache__/header.cpython-311.pyc", + "lib/python3.11/email/__pycache__/headerregistry.cpython-311.pyc", + "lib/python3.11/email/__pycache__/iterators.cpython-311.pyc", + "lib/python3.11/email/__pycache__/message.cpython-311.pyc", + "lib/python3.11/email/__pycache__/parser.cpython-311.pyc", + "lib/python3.11/email/__pycache__/policy.cpython-311.pyc", + "lib/python3.11/email/__pycache__/quoprimime.cpython-311.pyc", + "lib/python3.11/email/__pycache__/utils.cpython-311.pyc", + "lib/python3.11/email/_encoded_words.py", + "lib/python3.11/email/_header_value_parser.py", + "lib/python3.11/email/_parseaddr.py", + "lib/python3.11/email/_policybase.py", + "lib/python3.11/email/architecture.rst", + "lib/python3.11/email/base64mime.py", + "lib/python3.11/email/charset.py", + "lib/python3.11/email/contentmanager.py", + "lib/python3.11/email/encoders.py", + "lib/python3.11/email/errors.py", + "lib/python3.11/email/feedparser.py", + "lib/python3.11/email/generator.py", + "lib/python3.11/email/header.py", + "lib/python3.11/email/headerregistry.py", + "lib/python3.11/email/iterators.py", + "lib/python3.11/email/message.py", + "lib/python3.11/email/mime/__init__.py", + "lib/python3.11/email/mime/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/application.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/audio.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/base.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/image.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/message.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/multipart.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/nonmultipart.cpython-311.pyc", + "lib/python3.11/email/mime/__pycache__/text.cpython-311.pyc", + "lib/python3.11/email/mime/application.py", + "lib/python3.11/email/mime/audio.py", + "lib/python3.11/email/mime/base.py", + "lib/python3.11/email/mime/image.py", + "lib/python3.11/email/mime/message.py", + "lib/python3.11/email/mime/multipart.py", + "lib/python3.11/email/mime/nonmultipart.py", + "lib/python3.11/email/mime/text.py", + "lib/python3.11/email/parser.py", + "lib/python3.11/email/policy.py", + "lib/python3.11/email/quoprimime.py", + "lib/python3.11/email/utils.py", + "lib/python3.11/encodings/__init__.py", + "lib/python3.11/encodings/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/aliases.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/ascii.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/base64_codec.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/big5.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/big5hkscs.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/bz2_codec.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/charmap.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp037.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1006.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1026.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1125.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1140.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1250.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1251.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1252.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1253.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1254.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1255.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1256.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1257.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp1258.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp273.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp424.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp437.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp500.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp720.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp737.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp775.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp850.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp852.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp855.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp856.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp857.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp858.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp860.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp861.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp862.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp863.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp864.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp865.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp866.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp869.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp874.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp875.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp932.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp949.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/cp950.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/euc_jis_2004.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/euc_jisx0213.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/euc_jp.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/euc_kr.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/gb18030.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/gb2312.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/gbk.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/hex_codec.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/hp_roman8.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/hz.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/idna.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_jp.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_jp_1.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_jp_2.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_jp_2004.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_jp_3.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_jp_ext.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso2022_kr.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_1.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_10.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_11.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_13.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_14.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_15.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_16.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_2.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_3.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_4.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_5.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_6.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_7.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_8.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/iso8859_9.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/johab.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/koi8_r.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/koi8_t.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/koi8_u.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/kz1048.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/latin_1.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_arabic.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_croatian.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_cyrillic.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_farsi.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_greek.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_iceland.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_latin2.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_roman.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_romanian.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mac_turkish.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/mbcs.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/oem.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/palmos.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/ptcp154.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/punycode.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/quopri_codec.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/raw_unicode_escape.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/rot_13.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/shift_jis.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/shift_jis_2004.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/shift_jisx0213.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/tis_620.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/undefined.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/unicode_escape.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_16.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_16_be.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_16_le.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_32.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_32_be.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_32_le.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_7.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_8.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/utf_8_sig.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/uu_codec.cpython-311.pyc", + "lib/python3.11/encodings/__pycache__/zlib_codec.cpython-311.pyc", + "lib/python3.11/encodings/aliases.py", + "lib/python3.11/encodings/ascii.py", + "lib/python3.11/encodings/base64_codec.py", + "lib/python3.11/encodings/big5.py", + "lib/python3.11/encodings/big5hkscs.py", + "lib/python3.11/encodings/bz2_codec.py", + "lib/python3.11/encodings/charmap.py", + "lib/python3.11/encodings/cp037.py", + "lib/python3.11/encodings/cp1006.py", + "lib/python3.11/encodings/cp1026.py", + "lib/python3.11/encodings/cp1125.py", + "lib/python3.11/encodings/cp1140.py", + "lib/python3.11/encodings/cp1250.py", + "lib/python3.11/encodings/cp1251.py", + "lib/python3.11/encodings/cp1252.py", + "lib/python3.11/encodings/cp1253.py", + "lib/python3.11/encodings/cp1254.py", + "lib/python3.11/encodings/cp1255.py", + "lib/python3.11/encodings/cp1256.py", + "lib/python3.11/encodings/cp1257.py", + "lib/python3.11/encodings/cp1258.py", + "lib/python3.11/encodings/cp273.py", + "lib/python3.11/encodings/cp424.py", + "lib/python3.11/encodings/cp437.py", + "lib/python3.11/encodings/cp500.py", + "lib/python3.11/encodings/cp720.py", + "lib/python3.11/encodings/cp737.py", + "lib/python3.11/encodings/cp775.py", + "lib/python3.11/encodings/cp850.py", + "lib/python3.11/encodings/cp852.py", + "lib/python3.11/encodings/cp855.py", + "lib/python3.11/encodings/cp856.py", + "lib/python3.11/encodings/cp857.py", + "lib/python3.11/encodings/cp858.py", + "lib/python3.11/encodings/cp860.py", + "lib/python3.11/encodings/cp861.py", + "lib/python3.11/encodings/cp862.py", + "lib/python3.11/encodings/cp863.py", + "lib/python3.11/encodings/cp864.py", + "lib/python3.11/encodings/cp865.py", + "lib/python3.11/encodings/cp866.py", + "lib/python3.11/encodings/cp869.py", + "lib/python3.11/encodings/cp874.py", + "lib/python3.11/encodings/cp875.py", + "lib/python3.11/encodings/cp932.py", + "lib/python3.11/encodings/cp949.py", + "lib/python3.11/encodings/cp950.py", + "lib/python3.11/encodings/euc_jis_2004.py", + "lib/python3.11/encodings/euc_jisx0213.py", + "lib/python3.11/encodings/euc_jp.py", + "lib/python3.11/encodings/euc_kr.py", + "lib/python3.11/encodings/gb18030.py", + "lib/python3.11/encodings/gb2312.py", + "lib/python3.11/encodings/gbk.py", + "lib/python3.11/encodings/hex_codec.py", + "lib/python3.11/encodings/hp_roman8.py", + "lib/python3.11/encodings/hz.py", + "lib/python3.11/encodings/idna.py", + "lib/python3.11/encodings/iso2022_jp.py", + "lib/python3.11/encodings/iso2022_jp_1.py", + "lib/python3.11/encodings/iso2022_jp_2.py", + "lib/python3.11/encodings/iso2022_jp_2004.py", + "lib/python3.11/encodings/iso2022_jp_3.py", + "lib/python3.11/encodings/iso2022_jp_ext.py", + "lib/python3.11/encodings/iso2022_kr.py", + "lib/python3.11/encodings/iso8859_1.py", + "lib/python3.11/encodings/iso8859_10.py", + "lib/python3.11/encodings/iso8859_11.py", + "lib/python3.11/encodings/iso8859_13.py", + "lib/python3.11/encodings/iso8859_14.py", + "lib/python3.11/encodings/iso8859_15.py", + "lib/python3.11/encodings/iso8859_16.py", + "lib/python3.11/encodings/iso8859_2.py", + "lib/python3.11/encodings/iso8859_3.py", + "lib/python3.11/encodings/iso8859_4.py", + "lib/python3.11/encodings/iso8859_5.py", + "lib/python3.11/encodings/iso8859_6.py", + "lib/python3.11/encodings/iso8859_7.py", + "lib/python3.11/encodings/iso8859_8.py", + "lib/python3.11/encodings/iso8859_9.py", + "lib/python3.11/encodings/johab.py", + "lib/python3.11/encodings/koi8_r.py", + "lib/python3.11/encodings/koi8_t.py", + "lib/python3.11/encodings/koi8_u.py", + "lib/python3.11/encodings/kz1048.py", + "lib/python3.11/encodings/latin_1.py", + "lib/python3.11/encodings/mac_arabic.py", + "lib/python3.11/encodings/mac_croatian.py", + "lib/python3.11/encodings/mac_cyrillic.py", + "lib/python3.11/encodings/mac_farsi.py", + "lib/python3.11/encodings/mac_greek.py", + "lib/python3.11/encodings/mac_iceland.py", + "lib/python3.11/encodings/mac_latin2.py", + "lib/python3.11/encodings/mac_roman.py", + "lib/python3.11/encodings/mac_romanian.py", + "lib/python3.11/encodings/mac_turkish.py", + "lib/python3.11/encodings/mbcs.py", + "lib/python3.11/encodings/oem.py", + "lib/python3.11/encodings/palmos.py", + "lib/python3.11/encodings/ptcp154.py", + "lib/python3.11/encodings/punycode.py", + "lib/python3.11/encodings/quopri_codec.py", + "lib/python3.11/encodings/raw_unicode_escape.py", + "lib/python3.11/encodings/rot_13.py", + "lib/python3.11/encodings/shift_jis.py", + "lib/python3.11/encodings/shift_jis_2004.py", + "lib/python3.11/encodings/shift_jisx0213.py", + "lib/python3.11/encodings/tis_620.py", + "lib/python3.11/encodings/undefined.py", + "lib/python3.11/encodings/unicode_escape.py", + "lib/python3.11/encodings/utf_16.py", + "lib/python3.11/encodings/utf_16_be.py", + "lib/python3.11/encodings/utf_16_le.py", + "lib/python3.11/encodings/utf_32.py", + "lib/python3.11/encodings/utf_32_be.py", + "lib/python3.11/encodings/utf_32_le.py", + "lib/python3.11/encodings/utf_7.py", + "lib/python3.11/encodings/utf_8.py", + "lib/python3.11/encodings/utf_8_sig.py", + "lib/python3.11/encodings/uu_codec.py", + "lib/python3.11/encodings/zlib_codec.py", + "lib/python3.11/ensurepip/__init__.py", + "lib/python3.11/ensurepip/__main__.py", + "lib/python3.11/ensurepip/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/ensurepip/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/ensurepip/__pycache__/_uninstall.cpython-311.pyc", + "lib/python3.11/ensurepip/_bundled/pip-23.2.1-py3-none-any.whl", + "lib/python3.11/ensurepip/_bundled/setuptools-65.5.0-py3-none-any.whl", + "lib/python3.11/ensurepip/_uninstall.py", + "lib/python3.11/enum.py", + "lib/python3.11/filecmp.py", + "lib/python3.11/fileinput.py", + "lib/python3.11/fnmatch.py", + "lib/python3.11/fractions.py", + "lib/python3.11/ftplib.py", + "lib/python3.11/functools.py", + "lib/python3.11/genericpath.py", + "lib/python3.11/getopt.py", + "lib/python3.11/getpass.py", + "lib/python3.11/gettext.py", + "lib/python3.11/glob.py", + "lib/python3.11/graphlib.py", + "lib/python3.11/gzip.py", + "lib/python3.11/hashlib.py", + "lib/python3.11/heapq.py", + "lib/python3.11/hmac.py", + "lib/python3.11/html/__init__.py", + "lib/python3.11/html/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/html/__pycache__/entities.cpython-311.pyc", + "lib/python3.11/html/__pycache__/parser.cpython-311.pyc", + "lib/python3.11/html/entities.py", + "lib/python3.11/html/parser.py", + "lib/python3.11/http/__init__.py", + "lib/python3.11/http/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/http/__pycache__/client.cpython-311.pyc", + "lib/python3.11/http/__pycache__/cookiejar.cpython-311.pyc", + "lib/python3.11/http/__pycache__/cookies.cpython-311.pyc", + "lib/python3.11/http/__pycache__/server.cpython-311.pyc", + "lib/python3.11/http/client.py", + "lib/python3.11/http/cookiejar.py", + "lib/python3.11/http/cookies.py", + "lib/python3.11/http/server.py", + "lib/python3.11/idlelib/CREDITS.txt", + "lib/python3.11/idlelib/ChangeLog", + "lib/python3.11/idlelib/HISTORY.txt", + "lib/python3.11/idlelib/Icons/README.txt", + "lib/python3.11/idlelib/Icons/folder.gif", + "lib/python3.11/idlelib/Icons/idle.ico", + "lib/python3.11/idlelib/Icons/idle_16.gif", + "lib/python3.11/idlelib/Icons/idle_16.png", + "lib/python3.11/idlelib/Icons/idle_256.png", + "lib/python3.11/idlelib/Icons/idle_32.gif", + "lib/python3.11/idlelib/Icons/idle_32.png", + "lib/python3.11/idlelib/Icons/idle_48.gif", + "lib/python3.11/idlelib/Icons/idle_48.png", + "lib/python3.11/idlelib/Icons/minusnode.gif", + "lib/python3.11/idlelib/Icons/openfolder.gif", + "lib/python3.11/idlelib/Icons/plusnode.gif", + "lib/python3.11/idlelib/Icons/python.gif", + "lib/python3.11/idlelib/Icons/tk.gif", + "lib/python3.11/idlelib/NEWS.txt", + "lib/python3.11/idlelib/NEWS2x.txt", + "lib/python3.11/idlelib/README.txt", + "lib/python3.11/idlelib/TODO.txt", + "lib/python3.11/idlelib/__init__.py", + "lib/python3.11/idlelib/__main__.py", + "lib/python3.11/idlelib/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/autocomplete.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/autocomplete_w.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/autoexpand.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/browser.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/calltip.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/calltip_w.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/codecontext.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/colorizer.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/config.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/config_key.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/configdialog.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/debugger.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/debugger_r.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/debugobj.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/debugobj_r.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/delegator.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/dynoption.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/editor.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/filelist.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/format.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/grep.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/help.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/help_about.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/history.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/hyperparser.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/idle.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/iomenu.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/macosx.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/mainmenu.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/multicall.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/outwin.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/parenmatch.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/pathbrowser.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/percolator.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/pyparse.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/pyshell.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/query.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/redirector.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/replace.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/rpc.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/run.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/runscript.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/scrolledlist.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/search.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/searchbase.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/searchengine.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/sidebar.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/squeezer.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/stackviewer.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/statusbar.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/textview.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/tooltip.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/tree.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/undo.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/util.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/window.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/zoomheight.cpython-311.pyc", + "lib/python3.11/idlelib/__pycache__/zzdummy.cpython-311.pyc", + "lib/python3.11/idlelib/autocomplete.py", + "lib/python3.11/idlelib/autocomplete_w.py", + "lib/python3.11/idlelib/autoexpand.py", + "lib/python3.11/idlelib/browser.py", + "lib/python3.11/idlelib/calltip.py", + "lib/python3.11/idlelib/calltip_w.py", + "lib/python3.11/idlelib/codecontext.py", + "lib/python3.11/idlelib/colorizer.py", + "lib/python3.11/idlelib/config-extensions.def", + "lib/python3.11/idlelib/config-highlight.def", + "lib/python3.11/idlelib/config-keys.def", + "lib/python3.11/idlelib/config-main.def", + "lib/python3.11/idlelib/config.py", + "lib/python3.11/idlelib/config_key.py", + "lib/python3.11/idlelib/configdialog.py", + "lib/python3.11/idlelib/debugger.py", + "lib/python3.11/idlelib/debugger_r.py", + "lib/python3.11/idlelib/debugobj.py", + "lib/python3.11/idlelib/debugobj_r.py", + "lib/python3.11/idlelib/delegator.py", + "lib/python3.11/idlelib/dynoption.py", + "lib/python3.11/idlelib/editor.py", + "lib/python3.11/idlelib/extend.txt", + "lib/python3.11/idlelib/filelist.py", + "lib/python3.11/idlelib/format.py", + "lib/python3.11/idlelib/grep.py", + "lib/python3.11/idlelib/help.html", + "lib/python3.11/idlelib/help.py", + "lib/python3.11/idlelib/help_about.py", + "lib/python3.11/idlelib/history.py", + "lib/python3.11/idlelib/hyperparser.py", + "lib/python3.11/idlelib/idle.bat", + "lib/python3.11/idlelib/idle.py", + "lib/python3.11/idlelib/idle.pyw", + "lib/python3.11/idlelib/idle_test/README.txt", + "lib/python3.11/idlelib/idle_test/__init__.py", + "lib/python3.11/idlelib/idle_test/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/htest.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/mock_idle.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/mock_tk.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/template.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_autocomplete.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_autocomplete_w.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_autoexpand.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_browser.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_calltip.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_calltip_w.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_codecontext.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_colorizer.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_config.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_config_key.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_configdialog.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_debugger.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_debugger_r.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_debugobj.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_debugobj_r.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_delegator.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_editmenu.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_editor.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_filelist.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_format.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_grep.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_help.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_help_about.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_history.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_hyperparser.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_iomenu.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_macosx.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_mainmenu.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_multicall.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_outwin.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_parenmatch.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_pathbrowser.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_percolator.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_pyparse.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_pyshell.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_query.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_redirector.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_replace.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_rpc.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_run.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_runscript.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_scrolledlist.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_search.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_searchbase.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_searchengine.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_sidebar.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_squeezer.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_stackviewer.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_statusbar.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_text.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_textview.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_tooltip.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_tree.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_undo.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_util.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_warning.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_window.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_zoomheight.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/test_zzdummy.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/__pycache__/tkinter_testing_utils.cpython-311.pyc", + "lib/python3.11/idlelib/idle_test/example_noext", + "lib/python3.11/idlelib/idle_test/example_stub.pyi", + "lib/python3.11/idlelib/idle_test/htest.py", + "lib/python3.11/idlelib/idle_test/mock_idle.py", + "lib/python3.11/idlelib/idle_test/mock_tk.py", + "lib/python3.11/idlelib/idle_test/template.py", + "lib/python3.11/idlelib/idle_test/test_autocomplete.py", + "lib/python3.11/idlelib/idle_test/test_autocomplete_w.py", + "lib/python3.11/idlelib/idle_test/test_autoexpand.py", + "lib/python3.11/idlelib/idle_test/test_browser.py", + "lib/python3.11/idlelib/idle_test/test_calltip.py", + "lib/python3.11/idlelib/idle_test/test_calltip_w.py", + "lib/python3.11/idlelib/idle_test/test_codecontext.py", + "lib/python3.11/idlelib/idle_test/test_colorizer.py", + "lib/python3.11/idlelib/idle_test/test_config.py", + "lib/python3.11/idlelib/idle_test/test_config_key.py", + "lib/python3.11/idlelib/idle_test/test_configdialog.py", + "lib/python3.11/idlelib/idle_test/test_debugger.py", + "lib/python3.11/idlelib/idle_test/test_debugger_r.py", + "lib/python3.11/idlelib/idle_test/test_debugobj.py", + "lib/python3.11/idlelib/idle_test/test_debugobj_r.py", + "lib/python3.11/idlelib/idle_test/test_delegator.py", + "lib/python3.11/idlelib/idle_test/test_editmenu.py", + "lib/python3.11/idlelib/idle_test/test_editor.py", + "lib/python3.11/idlelib/idle_test/test_filelist.py", + "lib/python3.11/idlelib/idle_test/test_format.py", + "lib/python3.11/idlelib/idle_test/test_grep.py", + "lib/python3.11/idlelib/idle_test/test_help.py", + "lib/python3.11/idlelib/idle_test/test_help_about.py", + "lib/python3.11/idlelib/idle_test/test_history.py", + "lib/python3.11/idlelib/idle_test/test_hyperparser.py", + "lib/python3.11/idlelib/idle_test/test_iomenu.py", + "lib/python3.11/idlelib/idle_test/test_macosx.py", + "lib/python3.11/idlelib/idle_test/test_mainmenu.py", + "lib/python3.11/idlelib/idle_test/test_multicall.py", + "lib/python3.11/idlelib/idle_test/test_outwin.py", + "lib/python3.11/idlelib/idle_test/test_parenmatch.py", + "lib/python3.11/idlelib/idle_test/test_pathbrowser.py", + "lib/python3.11/idlelib/idle_test/test_percolator.py", + "lib/python3.11/idlelib/idle_test/test_pyparse.py", + "lib/python3.11/idlelib/idle_test/test_pyshell.py", + "lib/python3.11/idlelib/idle_test/test_query.py", + "lib/python3.11/idlelib/idle_test/test_redirector.py", + "lib/python3.11/idlelib/idle_test/test_replace.py", + "lib/python3.11/idlelib/idle_test/test_rpc.py", + "lib/python3.11/idlelib/idle_test/test_run.py", + "lib/python3.11/idlelib/idle_test/test_runscript.py", + "lib/python3.11/idlelib/idle_test/test_scrolledlist.py", + "lib/python3.11/idlelib/idle_test/test_search.py", + "lib/python3.11/idlelib/idle_test/test_searchbase.py", + "lib/python3.11/idlelib/idle_test/test_searchengine.py", + "lib/python3.11/idlelib/idle_test/test_sidebar.py", + "lib/python3.11/idlelib/idle_test/test_squeezer.py", + "lib/python3.11/idlelib/idle_test/test_stackviewer.py", + "lib/python3.11/idlelib/idle_test/test_statusbar.py", + "lib/python3.11/idlelib/idle_test/test_text.py", + "lib/python3.11/idlelib/idle_test/test_textview.py", + "lib/python3.11/idlelib/idle_test/test_tooltip.py", + "lib/python3.11/idlelib/idle_test/test_tree.py", + "lib/python3.11/idlelib/idle_test/test_undo.py", + "lib/python3.11/idlelib/idle_test/test_util.py", + "lib/python3.11/idlelib/idle_test/test_warning.py", + "lib/python3.11/idlelib/idle_test/test_window.py", + "lib/python3.11/idlelib/idle_test/test_zoomheight.py", + "lib/python3.11/idlelib/idle_test/test_zzdummy.py", + "lib/python3.11/idlelib/idle_test/tkinter_testing_utils.py", + "lib/python3.11/idlelib/iomenu.py", + "lib/python3.11/idlelib/macosx.py", + "lib/python3.11/idlelib/mainmenu.py", + "lib/python3.11/idlelib/multicall.py", + "lib/python3.11/idlelib/outwin.py", + "lib/python3.11/idlelib/parenmatch.py", + "lib/python3.11/idlelib/pathbrowser.py", + "lib/python3.11/idlelib/percolator.py", + "lib/python3.11/idlelib/pyparse.py", + "lib/python3.11/idlelib/pyshell.py", + "lib/python3.11/idlelib/query.py", + "lib/python3.11/idlelib/redirector.py", + "lib/python3.11/idlelib/replace.py", + "lib/python3.11/idlelib/rpc.py", + "lib/python3.11/idlelib/run.py", + "lib/python3.11/idlelib/runscript.py", + "lib/python3.11/idlelib/scrolledlist.py", + "lib/python3.11/idlelib/search.py", + "lib/python3.11/idlelib/searchbase.py", + "lib/python3.11/idlelib/searchengine.py", + "lib/python3.11/idlelib/sidebar.py", + "lib/python3.11/idlelib/squeezer.py", + "lib/python3.11/idlelib/stackviewer.py", + "lib/python3.11/idlelib/statusbar.py", + "lib/python3.11/idlelib/textview.py", + "lib/python3.11/idlelib/tooltip.py", + "lib/python3.11/idlelib/tree.py", + "lib/python3.11/idlelib/undo.py", + "lib/python3.11/idlelib/util.py", + "lib/python3.11/idlelib/window.py", + "lib/python3.11/idlelib/zoomheight.py", + "lib/python3.11/idlelib/zzdummy.py", + "lib/python3.11/imaplib.py", + "lib/python3.11/imghdr.py", + "lib/python3.11/imp.py", + "lib/python3.11/importlib/__init__.py", + "lib/python3.11/importlib/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/_abc.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/_bootstrap.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/_bootstrap_external.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/abc.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/machinery.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/readers.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/simple.cpython-311.pyc", + "lib/python3.11/importlib/__pycache__/util.cpython-311.pyc", + "lib/python3.11/importlib/_abc.py", + "lib/python3.11/importlib/_bootstrap.py", + "lib/python3.11/importlib/_bootstrap_external.py", + "lib/python3.11/importlib/abc.py", + "lib/python3.11/importlib/machinery.py", + "lib/python3.11/importlib/metadata/__init__.py", + "lib/python3.11/importlib/metadata/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/importlib/metadata/__pycache__/_adapters.cpython-311.pyc", + "lib/python3.11/importlib/metadata/__pycache__/_collections.cpython-311.pyc", + "lib/python3.11/importlib/metadata/__pycache__/_functools.cpython-311.pyc", + "lib/python3.11/importlib/metadata/__pycache__/_itertools.cpython-311.pyc", + "lib/python3.11/importlib/metadata/__pycache__/_meta.cpython-311.pyc", + "lib/python3.11/importlib/metadata/__pycache__/_text.cpython-311.pyc", + "lib/python3.11/importlib/metadata/_adapters.py", + "lib/python3.11/importlib/metadata/_collections.py", + "lib/python3.11/importlib/metadata/_functools.py", + "lib/python3.11/importlib/metadata/_itertools.py", + "lib/python3.11/importlib/metadata/_meta.py", + "lib/python3.11/importlib/metadata/_text.py", + "lib/python3.11/importlib/readers.py", + "lib/python3.11/importlib/resources/__init__.py", + "lib/python3.11/importlib/resources/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/_adapters.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/_common.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/_itertools.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/_legacy.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/abc.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/readers.cpython-311.pyc", + "lib/python3.11/importlib/resources/__pycache__/simple.cpython-311.pyc", + "lib/python3.11/importlib/resources/_adapters.py", + "lib/python3.11/importlib/resources/_common.py", + "lib/python3.11/importlib/resources/_itertools.py", + "lib/python3.11/importlib/resources/_legacy.py", + "lib/python3.11/importlib/resources/abc.py", + "lib/python3.11/importlib/resources/readers.py", + "lib/python3.11/importlib/resources/simple.py", + "lib/python3.11/importlib/simple.py", + "lib/python3.11/importlib/util.py", + "lib/python3.11/inspect.py", + "lib/python3.11/io.py", + "lib/python3.11/ipaddress.py", + "lib/python3.11/json/__init__.py", + "lib/python3.11/json/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/json/__pycache__/decoder.cpython-311.pyc", + "lib/python3.11/json/__pycache__/encoder.cpython-311.pyc", + "lib/python3.11/json/__pycache__/scanner.cpython-311.pyc", + "lib/python3.11/json/__pycache__/tool.cpython-311.pyc", + "lib/python3.11/json/decoder.py", + "lib/python3.11/json/encoder.py", + "lib/python3.11/json/scanner.py", + "lib/python3.11/json/tool.py", + "lib/python3.11/keyword.py", + "lib/python3.11/lib-dynload/_asyncio.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_bisect.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_blake2.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_bz2.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_codecs_cn.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_codecs_hk.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_codecs_iso2022.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_codecs_jp.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_codecs_kr.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_codecs_tw.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_contextvars.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_crypt.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_csv.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_ctypes.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_ctypes_test.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_curses.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_curses_panel.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_datetime.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_dbm.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_decimal.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_elementtree.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_hashlib.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_heapq.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_json.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_lsprof.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_lzma.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_md5.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_multibytecodec.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_multiprocessing.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_opcode.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_pickle.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_posixshmem.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_posixsubprocess.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_queue.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_random.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_scproxy.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_sha1.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_sha256.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_sha3.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_sha512.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_socket.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_sqlite3.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_ssl.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_statistics.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_struct.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_testbuffer.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_testcapi.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_testclinic.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_testimportmultiple.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_testinternalcapi.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_testmultiphase.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_tkinter.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_typing.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_uuid.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_xxsubinterpreters.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_xxtestfuzz.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/_zoneinfo.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/array.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/audioop.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/binascii.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/cmath.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/fcntl.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/grp.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/math.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/mmap.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/nis.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/pyexpat.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/readline.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/resource.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/select.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/syslog.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/termios.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/unicodedata.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/xxlimited.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/xxlimited_35.cpython-311-darwin.so", + "lib/python3.11/lib-dynload/zlib.cpython-311-darwin.so", + "lib/python3.11/lib2to3/Grammar.txt", + "lib/python3.11/lib2to3/Grammar3.11.5.final.0.pickle", + "lib/python3.11/lib2to3/PatternGrammar.txt", + "lib/python3.11/lib2to3/PatternGrammar3.11.5.final.0.pickle", + "lib/python3.11/lib2to3/__init__.py", + "lib/python3.11/lib2to3/__main__.py", + "lib/python3.11/lib2to3/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/btm_matcher.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/btm_utils.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/fixer_base.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/fixer_util.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/main.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/patcomp.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/pygram.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/pytree.cpython-311.pyc", + "lib/python3.11/lib2to3/__pycache__/refactor.cpython-311.pyc", + "lib/python3.11/lib2to3/btm_matcher.py", + "lib/python3.11/lib2to3/btm_utils.py", + "lib/python3.11/lib2to3/fixer_base.py", + "lib/python3.11/lib2to3/fixer_util.py", + "lib/python3.11/lib2to3/fixes/__init__.py", + "lib/python3.11/lib2to3/fixes/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_apply.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_asserts.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_basestring.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_buffer.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_dict.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_except.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_exec.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_execfile.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_exitfunc.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_filter.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_funcattrs.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_future.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_getcwdu.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_has_key.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_idioms.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_import.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_imports.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_imports2.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_input.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_intern.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_isinstance.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_itertools.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_itertools_imports.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_long.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_map.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_metaclass.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_methodattrs.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_ne.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_next.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_nonzero.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_numliterals.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_operator.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_paren.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_print.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_raise.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_raw_input.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_reduce.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_reload.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_renames.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_repr.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_set_literal.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_standarderror.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_sys_exc.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_throw.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_tuple_params.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_types.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_unicode.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_urllib.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_ws_comma.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_xrange.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_xreadlines.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/__pycache__/fix_zip.cpython-311.pyc", + "lib/python3.11/lib2to3/fixes/fix_apply.py", + "lib/python3.11/lib2to3/fixes/fix_asserts.py", + "lib/python3.11/lib2to3/fixes/fix_basestring.py", + "lib/python3.11/lib2to3/fixes/fix_buffer.py", + "lib/python3.11/lib2to3/fixes/fix_dict.py", + "lib/python3.11/lib2to3/fixes/fix_except.py", + "lib/python3.11/lib2to3/fixes/fix_exec.py", + "lib/python3.11/lib2to3/fixes/fix_execfile.py", + "lib/python3.11/lib2to3/fixes/fix_exitfunc.py", + "lib/python3.11/lib2to3/fixes/fix_filter.py", + "lib/python3.11/lib2to3/fixes/fix_funcattrs.py", + "lib/python3.11/lib2to3/fixes/fix_future.py", + "lib/python3.11/lib2to3/fixes/fix_getcwdu.py", + "lib/python3.11/lib2to3/fixes/fix_has_key.py", + "lib/python3.11/lib2to3/fixes/fix_idioms.py", + "lib/python3.11/lib2to3/fixes/fix_import.py", + "lib/python3.11/lib2to3/fixes/fix_imports.py", + "lib/python3.11/lib2to3/fixes/fix_imports2.py", + "lib/python3.11/lib2to3/fixes/fix_input.py", + "lib/python3.11/lib2to3/fixes/fix_intern.py", + "lib/python3.11/lib2to3/fixes/fix_isinstance.py", + "lib/python3.11/lib2to3/fixes/fix_itertools.py", + "lib/python3.11/lib2to3/fixes/fix_itertools_imports.py", + "lib/python3.11/lib2to3/fixes/fix_long.py", + "lib/python3.11/lib2to3/fixes/fix_map.py", + "lib/python3.11/lib2to3/fixes/fix_metaclass.py", + "lib/python3.11/lib2to3/fixes/fix_methodattrs.py", + "lib/python3.11/lib2to3/fixes/fix_ne.py", + "lib/python3.11/lib2to3/fixes/fix_next.py", + "lib/python3.11/lib2to3/fixes/fix_nonzero.py", + "lib/python3.11/lib2to3/fixes/fix_numliterals.py", + "lib/python3.11/lib2to3/fixes/fix_operator.py", + "lib/python3.11/lib2to3/fixes/fix_paren.py", + "lib/python3.11/lib2to3/fixes/fix_print.py", + "lib/python3.11/lib2to3/fixes/fix_raise.py", + "lib/python3.11/lib2to3/fixes/fix_raw_input.py", + "lib/python3.11/lib2to3/fixes/fix_reduce.py", + "lib/python3.11/lib2to3/fixes/fix_reload.py", + "lib/python3.11/lib2to3/fixes/fix_renames.py", + "lib/python3.11/lib2to3/fixes/fix_repr.py", + "lib/python3.11/lib2to3/fixes/fix_set_literal.py", + "lib/python3.11/lib2to3/fixes/fix_standarderror.py", + "lib/python3.11/lib2to3/fixes/fix_sys_exc.py", + "lib/python3.11/lib2to3/fixes/fix_throw.py", + "lib/python3.11/lib2to3/fixes/fix_tuple_params.py", + "lib/python3.11/lib2to3/fixes/fix_types.py", + "lib/python3.11/lib2to3/fixes/fix_unicode.py", + "lib/python3.11/lib2to3/fixes/fix_urllib.py", + "lib/python3.11/lib2to3/fixes/fix_ws_comma.py", + "lib/python3.11/lib2to3/fixes/fix_xrange.py", + "lib/python3.11/lib2to3/fixes/fix_xreadlines.py", + "lib/python3.11/lib2to3/fixes/fix_zip.py", + "lib/python3.11/lib2to3/main.py", + "lib/python3.11/lib2to3/patcomp.py", + "lib/python3.11/lib2to3/pgen2/__init__.py", + "lib/python3.11/lib2to3/pgen2/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/conv.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/driver.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/grammar.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/literals.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/parse.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/pgen.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/token.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/__pycache__/tokenize.cpython-311.pyc", + "lib/python3.11/lib2to3/pgen2/conv.py", + "lib/python3.11/lib2to3/pgen2/driver.py", + "lib/python3.11/lib2to3/pgen2/grammar.py", + "lib/python3.11/lib2to3/pgen2/literals.py", + "lib/python3.11/lib2to3/pgen2/parse.py", + "lib/python3.11/lib2to3/pgen2/pgen.py", + "lib/python3.11/lib2to3/pgen2/token.py", + "lib/python3.11/lib2to3/pgen2/tokenize.py", + "lib/python3.11/lib2to3/pygram.py", + "lib/python3.11/lib2to3/pytree.py", + "lib/python3.11/lib2to3/refactor.py", + "lib/python3.11/lib2to3/tests/__init__.py", + "lib/python3.11/lib2to3/tests/__main__.py", + "lib/python3.11/lib2to3/tests/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/pytree_idempotency.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/support.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_all_fixers.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_fixers.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_main.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_parser.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_pytree.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_refactor.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/__pycache__/test_util.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/README", + "lib/python3.11/lib2to3/tests/data/__pycache__/infinite_recursion.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/__pycache__/py3_test_grammar.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/bom.py", + "lib/python3.11/lib2to3/tests/data/crlf.py", + "lib/python3.11/lib2to3/tests/data/different_encoding.py", + "lib/python3.11/lib2to3/tests/data/false_encoding.py", + "lib/python3.11/lib2to3/tests/data/fixers/__pycache__/bad_order.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/__pycache__/no_fixer_cls.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/__pycache__/parrot_example.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/bad_order.py", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__init__.py", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__pycache__/fix_explicit.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__pycache__/fix_first.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__pycache__/fix_last.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__pycache__/fix_parrot.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/__pycache__/fix_preorder.cpython-311.pyc", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/fix_explicit.py", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/fix_first.py", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/fix_last.py", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/fix_parrot.py", + "lib/python3.11/lib2to3/tests/data/fixers/myfixes/fix_preorder.py", + "lib/python3.11/lib2to3/tests/data/fixers/no_fixer_cls.py", + "lib/python3.11/lib2to3/tests/data/fixers/parrot_example.py", + "lib/python3.11/lib2to3/tests/data/infinite_recursion.py", + "lib/python3.11/lib2to3/tests/data/py2_test_grammar.py", + "lib/python3.11/lib2to3/tests/data/py3_test_grammar.py", + "lib/python3.11/lib2to3/tests/pytree_idempotency.py", + "lib/python3.11/lib2to3/tests/support.py", + "lib/python3.11/lib2to3/tests/test_all_fixers.py", + "lib/python3.11/lib2to3/tests/test_fixers.py", + "lib/python3.11/lib2to3/tests/test_main.py", + "lib/python3.11/lib2to3/tests/test_parser.py", + "lib/python3.11/lib2to3/tests/test_pytree.py", + "lib/python3.11/lib2to3/tests/test_refactor.py", + "lib/python3.11/lib2to3/tests/test_util.py", + "lib/python3.11/linecache.py", + "lib/python3.11/locale.py", + "lib/python3.11/logging/__init__.py", + "lib/python3.11/logging/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/logging/__pycache__/config.cpython-311.pyc", + "lib/python3.11/logging/__pycache__/handlers.cpython-311.pyc", + "lib/python3.11/logging/config.py", + "lib/python3.11/logging/handlers.py", + "lib/python3.11/lzma.py", + "lib/python3.11/mailbox.py", + "lib/python3.11/mailcap.py", + "lib/python3.11/mimetypes.py", + "lib/python3.11/modulefinder.py", + "lib/python3.11/multiprocessing/__init__.py", + "lib/python3.11/multiprocessing/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/connection.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/context.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/forkserver.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/heap.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/managers.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/pool.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/popen_fork.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/popen_forkserver.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/popen_spawn_posix.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/popen_spawn_win32.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/process.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/queues.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/reduction.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/resource_sharer.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/resource_tracker.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/shared_memory.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/sharedctypes.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/spawn.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/synchronize.cpython-311.pyc", + "lib/python3.11/multiprocessing/__pycache__/util.cpython-311.pyc", + "lib/python3.11/multiprocessing/connection.py", + "lib/python3.11/multiprocessing/context.py", + "lib/python3.11/multiprocessing/dummy/__init__.py", + "lib/python3.11/multiprocessing/dummy/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/multiprocessing/dummy/__pycache__/connection.cpython-311.pyc", + "lib/python3.11/multiprocessing/dummy/connection.py", + "lib/python3.11/multiprocessing/forkserver.py", + "lib/python3.11/multiprocessing/heap.py", + "lib/python3.11/multiprocessing/managers.py", + "lib/python3.11/multiprocessing/pool.py", + "lib/python3.11/multiprocessing/popen_fork.py", + "lib/python3.11/multiprocessing/popen_forkserver.py", + "lib/python3.11/multiprocessing/popen_spawn_posix.py", + "lib/python3.11/multiprocessing/popen_spawn_win32.py", + "lib/python3.11/multiprocessing/process.py", + "lib/python3.11/multiprocessing/queues.py", + "lib/python3.11/multiprocessing/reduction.py", + "lib/python3.11/multiprocessing/resource_sharer.py", + "lib/python3.11/multiprocessing/resource_tracker.py", + "lib/python3.11/multiprocessing/shared_memory.py", + "lib/python3.11/multiprocessing/sharedctypes.py", + "lib/python3.11/multiprocessing/spawn.py", + "lib/python3.11/multiprocessing/synchronize.py", + "lib/python3.11/multiprocessing/util.py", + "lib/python3.11/netrc.py", + "lib/python3.11/nntplib.py", + "lib/python3.11/ntpath.py", + "lib/python3.11/nturl2path.py", + "lib/python3.11/numbers.py", + "lib/python3.11/opcode.py", + "lib/python3.11/operator.py", + "lib/python3.11/optparse.py", + "lib/python3.11/os.py", + "lib/python3.11/pathlib.py", + "lib/python3.11/pdb.py", + "lib/python3.11/pickle.py", + "lib/python3.11/pickletools.py", + "lib/python3.11/pipes.py", + "lib/python3.11/pkgutil.py", + "lib/python3.11/platform.py", + "lib/python3.11/plistlib.py", + "lib/python3.11/poplib.py", + "lib/python3.11/posixpath.py", + "lib/python3.11/pprint.py", + "lib/python3.11/profile.py", + "lib/python3.11/pstats.py", + "lib/python3.11/pty.py", + "lib/python3.11/py_compile.py", + "lib/python3.11/pyclbr.py", + "lib/python3.11/pydoc.py", + "lib/python3.11/pydoc_data/__init__.py", + "lib/python3.11/pydoc_data/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/pydoc_data/__pycache__/topics.cpython-311.pyc", + "lib/python3.11/pydoc_data/_pydoc.css", + "lib/python3.11/pydoc_data/topics.py", + "lib/python3.11/queue.py", + "lib/python3.11/quopri.py", + "lib/python3.11/random.py", + "lib/python3.11/re/__init__.py", + "lib/python3.11/re/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/re/__pycache__/_casefix.cpython-311.pyc", + "lib/python3.11/re/__pycache__/_compiler.cpython-311.pyc", + "lib/python3.11/re/__pycache__/_constants.cpython-311.pyc", + "lib/python3.11/re/__pycache__/_parser.cpython-311.pyc", + "lib/python3.11/re/_casefix.py", + "lib/python3.11/re/_compiler.py", + "lib/python3.11/re/_constants.py", + "lib/python3.11/re/_parser.py", + "lib/python3.11/reprlib.py", + "lib/python3.11/rlcompleter.py", + "lib/python3.11/runpy.py", + "lib/python3.11/sched.py", + "lib/python3.11/secrets.py", + "lib/python3.11/selectors.py", + "lib/python3.11/shelve.py", + "lib/python3.11/shlex.py", + "lib/python3.11/shutil.py", + "lib/python3.11/signal.py", + "lib/python3.11/site-packages/README.txt", + "lib/python3.11/site.py", + "lib/python3.11/smtpd.py", + "lib/python3.11/smtplib.py", + "lib/python3.11/sndhdr.py", + "lib/python3.11/socket.py", + "lib/python3.11/socketserver.py", + "lib/python3.11/sqlite3/__init__.py", + "lib/python3.11/sqlite3/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/sqlite3/__pycache__/dbapi2.cpython-311.pyc", + "lib/python3.11/sqlite3/__pycache__/dump.cpython-311.pyc", + "lib/python3.11/sqlite3/dbapi2.py", + "lib/python3.11/sqlite3/dump.py", + "lib/python3.11/sre_compile.py", + "lib/python3.11/sre_constants.py", + "lib/python3.11/sre_parse.py", + "lib/python3.11/ssl.py", + "lib/python3.11/stat.py", + "lib/python3.11/statistics.py", + "lib/python3.11/string.py", + "lib/python3.11/stringprep.py", + "lib/python3.11/struct.py", + "lib/python3.11/subprocess.py", + "lib/python3.11/sunau.py", + "lib/python3.11/symtable.py", + "lib/python3.11/sysconfig.py", + "lib/python3.11/tabnanny.py", + "lib/python3.11/tarfile.py", + "lib/python3.11/telnetlib.py", + "lib/python3.11/tempfile.py", + "lib/python3.11/test/__init__.py", + "lib/python3.11/test/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/test/__pycache__/test_script_helper.cpython-311.pyc", + "lib/python3.11/test/__pycache__/test_support.cpython-311.pyc", + "lib/python3.11/test/support/__init__.py", + "lib/python3.11/test/support/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/bytecode_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/hashlib_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/import_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/interpreters.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/logging_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/os_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/script_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/socket_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/testresult.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/threading_helper.cpython-311.pyc", + "lib/python3.11/test/support/__pycache__/warnings_helper.cpython-311.pyc", + "lib/python3.11/test/support/bytecode_helper.py", + "lib/python3.11/test/support/hashlib_helper.py", + "lib/python3.11/test/support/import_helper.py", + "lib/python3.11/test/support/interpreters.py", + "lib/python3.11/test/support/logging_helper.py", + "lib/python3.11/test/support/os_helper.py", + "lib/python3.11/test/support/script_helper.py", + "lib/python3.11/test/support/socket_helper.py", + "lib/python3.11/test/support/testresult.py", + "lib/python3.11/test/support/threading_helper.py", + "lib/python3.11/test/support/warnings_helper.py", + "lib/python3.11/test/test_script_helper.py", + "lib/python3.11/test/test_support.py", + "lib/python3.11/textwrap.py", + "lib/python3.11/this.py", + "lib/python3.11/threading.py", + "lib/python3.11/timeit.py", + "lib/python3.11/tkinter/__init__.py", + "lib/python3.11/tkinter/__main__.py", + "lib/python3.11/tkinter/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/colorchooser.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/commondialog.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/constants.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/dialog.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/dnd.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/filedialog.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/font.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/messagebox.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/scrolledtext.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/simpledialog.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/tix.cpython-311.pyc", + "lib/python3.11/tkinter/__pycache__/ttk.cpython-311.pyc", + "lib/python3.11/tkinter/colorchooser.py", + "lib/python3.11/tkinter/commondialog.py", + "lib/python3.11/tkinter/constants.py", + "lib/python3.11/tkinter/dialog.py", + "lib/python3.11/tkinter/dnd.py", + "lib/python3.11/tkinter/filedialog.py", + "lib/python3.11/tkinter/font.py", + "lib/python3.11/tkinter/messagebox.py", + "lib/python3.11/tkinter/scrolledtext.py", + "lib/python3.11/tkinter/simpledialog.py", + "lib/python3.11/tkinter/tix.py", + "lib/python3.11/tkinter/ttk.py", + "lib/python3.11/token.py", + "lib/python3.11/tokenize.py", + "lib/python3.11/tomllib/__init__.py", + "lib/python3.11/tomllib/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/tomllib/__pycache__/_parser.cpython-311.pyc", + "lib/python3.11/tomllib/__pycache__/_re.cpython-311.pyc", + "lib/python3.11/tomllib/__pycache__/_types.cpython-311.pyc", + "lib/python3.11/tomllib/_parser.py", + "lib/python3.11/tomllib/_re.py", + "lib/python3.11/tomllib/_types.py", + "lib/python3.11/trace.py", + "lib/python3.11/traceback.py", + "lib/python3.11/tracemalloc.py", + "lib/python3.11/tty.py", + "lib/python3.11/turtle.py", + "lib/python3.11/turtledemo/__init__.py", + "lib/python3.11/turtledemo/__main__.py", + "lib/python3.11/turtledemo/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/bytedesign.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/chaos.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/clock.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/colormixer.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/forest.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/fractalcurves.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/lindenmayer.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/minimal_hanoi.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/nim.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/paint.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/peace.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/penrose.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/planet_and_moon.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/rosette.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/round_dance.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/sorting_animate.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/tree.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/two_canvases.cpython-311.pyc", + "lib/python3.11/turtledemo/__pycache__/yinyang.cpython-311.pyc", + "lib/python3.11/turtledemo/bytedesign.py", + "lib/python3.11/turtledemo/chaos.py", + "lib/python3.11/turtledemo/clock.py", + "lib/python3.11/turtledemo/colormixer.py", + "lib/python3.11/turtledemo/forest.py", + "lib/python3.11/turtledemo/fractalcurves.py", + "lib/python3.11/turtledemo/lindenmayer.py", + "lib/python3.11/turtledemo/minimal_hanoi.py", + "lib/python3.11/turtledemo/nim.py", + "lib/python3.11/turtledemo/paint.py", + "lib/python3.11/turtledemo/peace.py", + "lib/python3.11/turtledemo/penrose.py", + "lib/python3.11/turtledemo/planet_and_moon.py", + "lib/python3.11/turtledemo/rosette.py", + "lib/python3.11/turtledemo/round_dance.py", + "lib/python3.11/turtledemo/sorting_animate.py", + "lib/python3.11/turtledemo/tree.py", + "lib/python3.11/turtledemo/turtle.cfg", + "lib/python3.11/turtledemo/two_canvases.py", + "lib/python3.11/turtledemo/yinyang.py", + "lib/python3.11/types.py", + "lib/python3.11/typing.py", + "lib/python3.11/unittest/__init__.py", + "lib/python3.11/unittest/__main__.py", + "lib/python3.11/unittest/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/_log.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/async_case.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/case.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/loader.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/main.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/mock.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/result.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/runner.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/signals.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/suite.cpython-311.pyc", + "lib/python3.11/unittest/__pycache__/util.cpython-311.pyc", + "lib/python3.11/unittest/_log.py", + "lib/python3.11/unittest/async_case.py", + "lib/python3.11/unittest/case.py", + "lib/python3.11/unittest/loader.py", + "lib/python3.11/unittest/main.py", + "lib/python3.11/unittest/mock.py", + "lib/python3.11/unittest/result.py", + "lib/python3.11/unittest/runner.py", + "lib/python3.11/unittest/signals.py", + "lib/python3.11/unittest/suite.py", + "lib/python3.11/unittest/util.py", + "lib/python3.11/urllib/__init__.py", + "lib/python3.11/urllib/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/urllib/__pycache__/error.cpython-311.pyc", + "lib/python3.11/urllib/__pycache__/parse.cpython-311.pyc", + "lib/python3.11/urllib/__pycache__/request.cpython-311.pyc", + "lib/python3.11/urllib/__pycache__/response.cpython-311.pyc", + "lib/python3.11/urllib/__pycache__/robotparser.cpython-311.pyc", + "lib/python3.11/urllib/error.py", + "lib/python3.11/urllib/parse.py", + "lib/python3.11/urllib/request.py", + "lib/python3.11/urllib/response.py", + "lib/python3.11/urllib/robotparser.py", + "lib/python3.11/uu.py", + "lib/python3.11/uuid.py", + "lib/python3.11/venv/__init__.py", + "lib/python3.11/venv/__main__.py", + "lib/python3.11/venv/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/venv/__pycache__/__main__.cpython-311.pyc", + "lib/python3.11/venv/scripts/common/Activate.ps1", + "lib/python3.11/venv/scripts/common/activate", + "lib/python3.11/venv/scripts/posix/activate.csh", + "lib/python3.11/venv/scripts/posix/activate.fish", + "lib/python3.11/warnings.py", + "lib/python3.11/wave.py", + "lib/python3.11/weakref.py", + "lib/python3.11/webbrowser.py", + "lib/python3.11/wsgiref/__init__.py", + "lib/python3.11/wsgiref/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/wsgiref/__pycache__/handlers.cpython-311.pyc", + "lib/python3.11/wsgiref/__pycache__/headers.cpython-311.pyc", + "lib/python3.11/wsgiref/__pycache__/simple_server.cpython-311.pyc", + "lib/python3.11/wsgiref/__pycache__/types.cpython-311.pyc", + "lib/python3.11/wsgiref/__pycache__/util.cpython-311.pyc", + "lib/python3.11/wsgiref/__pycache__/validate.cpython-311.pyc", + "lib/python3.11/wsgiref/handlers.py", + "lib/python3.11/wsgiref/headers.py", + "lib/python3.11/wsgiref/simple_server.py", + "lib/python3.11/wsgiref/types.py", + "lib/python3.11/wsgiref/util.py", + "lib/python3.11/wsgiref/validate.py", + "lib/python3.11/xdrlib.py", + "lib/python3.11/xml/__init__.py", + "lib/python3.11/xml/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/xml/dom/NodeFilter.py", + "lib/python3.11/xml/dom/__init__.py", + "lib/python3.11/xml/dom/__pycache__/NodeFilter.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/domreg.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/expatbuilder.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/minicompat.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/minidom.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/pulldom.cpython-311.pyc", + "lib/python3.11/xml/dom/__pycache__/xmlbuilder.cpython-311.pyc", + "lib/python3.11/xml/dom/domreg.py", + "lib/python3.11/xml/dom/expatbuilder.py", + "lib/python3.11/xml/dom/minicompat.py", + "lib/python3.11/xml/dom/minidom.py", + "lib/python3.11/xml/dom/pulldom.py", + "lib/python3.11/xml/dom/xmlbuilder.py", + "lib/python3.11/xml/etree/ElementInclude.py", + "lib/python3.11/xml/etree/ElementPath.py", + "lib/python3.11/xml/etree/ElementTree.py", + "lib/python3.11/xml/etree/__init__.py", + "lib/python3.11/xml/etree/__pycache__/ElementInclude.cpython-311.pyc", + "lib/python3.11/xml/etree/__pycache__/ElementPath.cpython-311.pyc", + "lib/python3.11/xml/etree/__pycache__/ElementTree.cpython-311.pyc", + "lib/python3.11/xml/etree/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/xml/etree/__pycache__/cElementTree.cpython-311.pyc", + "lib/python3.11/xml/etree/cElementTree.py", + "lib/python3.11/xml/parsers/__init__.py", + "lib/python3.11/xml/parsers/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/xml/parsers/__pycache__/expat.cpython-311.pyc", + "lib/python3.11/xml/parsers/expat.py", + "lib/python3.11/xml/sax/__init__.py", + "lib/python3.11/xml/sax/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/xml/sax/__pycache__/_exceptions.cpython-311.pyc", + "lib/python3.11/xml/sax/__pycache__/expatreader.cpython-311.pyc", + "lib/python3.11/xml/sax/__pycache__/handler.cpython-311.pyc", + "lib/python3.11/xml/sax/__pycache__/saxutils.cpython-311.pyc", + "lib/python3.11/xml/sax/__pycache__/xmlreader.cpython-311.pyc", + "lib/python3.11/xml/sax/_exceptions.py", + "lib/python3.11/xml/sax/expatreader.py", + "lib/python3.11/xml/sax/handler.py", + "lib/python3.11/xml/sax/saxutils.py", + "lib/python3.11/xml/sax/xmlreader.py", + "lib/python3.11/xmlrpc/__init__.py", + "lib/python3.11/xmlrpc/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/xmlrpc/__pycache__/client.cpython-311.pyc", + "lib/python3.11/xmlrpc/__pycache__/server.cpython-311.pyc", + "lib/python3.11/xmlrpc/client.py", + "lib/python3.11/xmlrpc/server.py", + "lib/python3.11/zipapp.py", + "lib/python3.11/zipfile.py", + "lib/python3.11/zipimport.py", + "lib/python3.11/zoneinfo/__init__.py", + "lib/python3.11/zoneinfo/__pycache__/__init__.cpython-311.pyc", + "lib/python3.11/zoneinfo/__pycache__/_common.cpython-311.pyc", + "lib/python3.11/zoneinfo/__pycache__/_tzpath.cpython-311.pyc", + "lib/python3.11/zoneinfo/__pycache__/_zoneinfo.cpython-311.pyc", + "lib/python3.11/zoneinfo/_common.py", + "lib/python3.11/zoneinfo/_tzpath.py", + "lib/python3.11/zoneinfo/_zoneinfo.py", + "share/man/man1/python3.1", + "share/man/man1/python3.11.1" + ], + "fn": "python-3.11.5-hb885b13_0.conda", + "license": "PSF-2.0", + "link": { + "source": "/Users/donjayamanne/miniconda3/pkgs/python-3.11.5-hb885b13_0", + "type": 1 + }, + "md5": "6f528bdf159139704ab578df329dee70", + "name": "python", + "package_tarball_full_path": "/Users/donjayamanne/miniconda3/pkgs/python-3.11.5-hb885b13_0.conda", + "paths_data": { + "paths": [ + { + "_path": "bin/2to3-3.11", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "0eb2a68730c6910e60374b6231605a8fe9e4b1ef889fe6bf6955f00607263096", + "sha256_in_prefix": "db867f95c7e5e3d486928ab316afc7ee322118eace698a5fd9c35dd62a7c77e0", + "size_in_bytes": 347 + }, + { + "_path": "bin/idle3.11", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "9e7c5708a61f7b75f0fa84106b3698fc81e0632eea511e9635cc012d95e8ccec", + "sha256_in_prefix": "2daba7590451fb1240f116ad6c50dfb3fe12ab0d0c90450453672dc5f7992345", + "size_in_bytes": 345 + }, + { + "_path": "bin/pydoc3.11", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "af4b3f428ef9f3708c93b8d6a9c9b211c3e531ad480bac0644e18be3d675de15", + "sha256_in_prefix": "29373357dfd57b431809af8ab17e111c47011f8ed325e4b74075551cfd728dc0", + "size_in_bytes": 330 + }, + { + "_path": "bin/python3.11", + "file_mode": "binary", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "ea6aacf75da0a6e048c0acc7d6f9e7e67f4af4af635965ab25aad7956ed07b40", + "sha256_in_prefix": "5309a862e537b7e20d382f479a016995d2b60e7382673e57a98a8644d62a011a", + "size_in_bytes": 6019216 + }, + { + "_path": "bin/python3.11-config", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "48e7f0c28858cd7dd610f089ebce9d090b15273d6f965b5a665418880b9ad017", + "sha256_in_prefix": "178fb9ee8ae853adc2840a51642fbdfe239d4c189e632be37552f83ee881a9d5", + "size_in_bytes": 2289 + }, + { + "_path": "lib/libpython3.11.dylib", + "file_mode": "binary", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "813d7657214af2a40d6f98ed5ad6cd25bdaf9e1b52299dcc22457b6431f46226", + "sha256_in_prefix": "690e286e2a59750500c44dd3eb0fcc3f607604fd1a24a20da1d5877d9ac09cd0", + "size_in_bytes": 6019152 + }, + { + "_path": "lib/pkgconfig/python-3.11-embed.pc", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "5ce92c1022c5d4af2383596197f518fc12687f8f32bf3f42b96c7ee22ac9dc8d", + "sha256_in_prefix": "2ccb5bf00ff727b7941ad8be49360b25f86860ae2f49931743f628dafc9caac1", + "size_in_bytes": 558 + }, + { + "_path": "lib/pkgconfig/python-3.11.pc", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "46ac102bbce0c0b1ff9cabf905c7d44f3e3ff2911127a08b620cd1231a8a70c4", + "sha256_in_prefix": "01f5747180571713792597c3a4b2278f2e2b0e46aaa926e95cc007a373b589aa", + "size_in_bytes": 531 + }, + { + "_path": "lib/python3.11/_sysconfigdata__darwin_darwin.py", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "49c03531794c8e17dbf3bc3b28b5c731c19647b8430e74a7f05967863a73cd89", + "sha256_in_prefix": "d1fed13472229dad30d35c5cd3e497e4cbb16e5aa2fb66abc1919d55f9fa415c", + "size_in_bytes": 85118 + }, + { + "_path": "lib/python3.11/_sysconfigdata__darwin_darwin.py.orig", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "4e1b965e2665c46a97f8df38da25dc3e2636e6e62a2b525d38bfd9304978f7c9", + "sha256_in_prefix": "dbc742fac6650f3e6159c08dc75d77bbe5704af80a671c3ca09aa3e061ddd992", + "size_in_bytes": 97066 + }, + { + "_path": "lib/python3.11/_sysconfigdata_arm64_apple_darwin20_0_0.py", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "810dab3b07b0633c5d5b180351daecb4d1ebf51ee2216019c5dc08afb5c54fd1", + "sha256_in_prefix": "44ad76b97a9bc58243271c310c497b085745bbe5451b4cbf60d6afb475b49465", + "size_in_bytes": 87139 + }, + { + "_path": "lib/python3.11/config-3.11-darwin/Makefile", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "2a78da281edcb631ddd844a43a4e30d166eb6b13651e43a1664f0e1aa9384d3b", + "sha256_in_prefix": "fee789b4cc5318f60fd6d1b4294c7789bf333b55d6c4f8afa1dd4476e7fa4d5b", + "size_in_bytes": 126865 + }, + { + "_path": "lib/python3.11/config-3.11-darwin/python-config.py", + "file_mode": "text", + "path_type": "hardlink", + "prefix_placeholder": "/var/folders/k1/30mswbxs7r1g6zwn8y4fyt500000gp/T/abs_0f560twzby/croot/python-split_1694437904896/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_p", + "sha256": "48e7f0c28858cd7dd610f089ebce9d090b15273d6f965b5a665418880b9ad017", + "sha256_in_prefix": "178fb9ee8ae853adc2840a51642fbdfe239d4c189e632be37552f83ee881a9d5", + "size_in_bytes": 2289 + } + ], + "paths_version": 1 + }, + "requested_spec": "defaults/osx-arm64::python==3.11.5=hb885b13_0[md5=6f528bdf159139704ab578df329dee70]", + "sha256": "e6ae393f2072f9857ffbd78c56ea28ca345beeba4f0ab2e0d5975e424f71b252", + "size": 16161485, + "subdir": "osx-arm64", + "timestamp": 1694439441000, + "track_features": "", + "url": "https://repo.anaconda.com/pkgs/main/osx-arm64/python-3.11.5-hb885b13_0.conda", + "version": "3.11.5" +} \ No newline at end of file diff --git a/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniforge3-4.11.0-1/conda-meta/python-slugify-5.0.2-pyhd3eb1b0_0.json b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniforge3-4.11.0-1/conda-meta/python-slugify-5.0.2-pyhd3eb1b0_0.json new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniforge3-4.11.0-1/envs/.conda_envs_dir_test b/native_locator/tests/unix/pyenv/user_home/.pyenv/versions/miniforge3-4.11.0-1/envs/.conda_envs_dir_test new file mode 100644 index 000000000000..e69de29bb2d1 From 2f2b9ac0f09544c5b54b39a0223c89ac2a82ccc7 Mon Sep 17 00:00:00 2001 From: Don Jayamanne Date: Mon, 27 May 2024 15:02:12 +1000 Subject: [PATCH 06/15] Fix `starts_with` for homebrew --- native_locator/src/homebrew.rs | 181 +++++++++++++++++++------ native_locator/src/windows_registry.rs | 20 ++- native_locator/src/windows_store.rs | 14 +- 3 files changed, 165 insertions(+), 50 deletions(-) diff --git a/native_locator/src/homebrew.rs b/native_locator/src/homebrew.rs index bdc6cc1fa471..5428d7c092da 100644 --- a/native_locator/src/homebrew.rs +++ b/native_locator/src/homebrew.rs @@ -58,11 +58,7 @@ fn get_env_path(python_exe_from_bin_dir: &PathBuf, resolved_file: &PathBuf) -> O let resolved_file = resolved_file.to_str()?; // 1. MacOS Silicon - if python_exe_from_bin_dir - .to_string_lossy() - .to_lowercase() - .starts_with("/opt/homebrew/bin/python") - { + if resolved_file.starts_with("/opt/homebrew") { // Resolved exe is something like `/opt/homebrew/Cellar/python@3.12/3.12.3/Frameworks/Python.framework/Versions/3.12/bin/python3.12` let reg_ex = Regex::new("/opt/homebrew/Cellar/python@((\\d+\\.?)*)/(\\d+\\.?)*/Frameworks/Python.framework/Versions/(\\d+\\.?)*/bin/python(\\d+\\.?)*").unwrap(); let captures = reg_ex.captures(&resolved_file)?; @@ -81,11 +77,7 @@ fn get_env_path(python_exe_from_bin_dir: &PathBuf, resolved_file: &PathBuf) -> O } // 2. Linux - if python_exe_from_bin_dir - .to_string_lossy() - .to_lowercase() - .starts_with("/usr/local/bin/python") - { + if resolved_file.starts_with("/home/linuxbrew/.linuxbrew/Cellar") { // Resolved exe is something like `/home/linuxbrew/.linuxbrew/Cellar/python@3.12/3.12.3/bin/python3.12` let reg_ex = Regex::new("/home/linuxbrew/.linuxbrew/Cellar/python@(\\d+\\.?\\d+\\.?)/(\\d+\\.?\\d+\\.?\\d+\\.?)/bin/python.*").unwrap(); let captures = reg_ex.captures(&resolved_file)?; @@ -105,11 +97,7 @@ fn get_env_path(python_exe_from_bin_dir: &PathBuf, resolved_file: &PathBuf) -> O } // 3. MacOS Intel - if python_exe_from_bin_dir - .to_string_lossy() - .to_lowercase() - .starts_with("/usr/local/bin/python") - { + if resolved_file.starts_with("/usr/local/Cellar") { // Resolved exe is something like `/usr/local/Cellar/python@3.12/3.12.3/Frameworks/Python.framework/Versions/3.12/bin/python3.12` let reg_ex = Regex::new("/usr/local/Cellar/python@(\\d+\\.?\\d+\\.?)/(\\d+\\.?\\d+\\.?\\d+\\.?)/Frameworks/Python.framework/Versions/(\\d+\\.?\\d+\\.?)/bin/python.*").unwrap(); let captures = reg_ex.captures(&resolved_file)?; @@ -130,6 +118,121 @@ fn get_env_path(python_exe_from_bin_dir: &PathBuf, resolved_file: &PathBuf) -> O None } +fn get_known_symlinks(python_exe: &PathBuf, full_version: &String) -> Vec { + if python_exe.starts_with("/opt/homebrew/Cellar") { + // Real exe - /opt/homebrew/Cellar/python@3.12/3.12.3/Frameworks/Python.framework/Versions/3.12/bin/python3.12 + + // Known symlinks include + // /opt/homebrew/bin/python3.12 + // /opt/homebrew/opt/python3/bin/python3.12 + // /opt/homebrew/Cellar/python@3.12/3.12.3/bin/python3.12 + // /opt/homebrew/opt/python@3.12/bin/python3.12 + // /opt/homebrew/Cellar/python@3.12/3.12.3/Frameworks/Python.framework/Versions/3.12/bin/python3.12 + // /opt/homebrew/Cellar/python@3.12/3.12.3/Frameworks/Python.framework/Versions/Current/bin/python3.12 + // /opt/homebrew/Frameworks/Python.framework/Versions/3.12/bin/python3.12 + // /opt/homebrew/Frameworks/Python.framework/Versions/Current/bin/python3.12 + // /opt/homebrew/Cellar/python@3.12/3.12.3/Frameworks/Python.framework/Versions/3.12/bin/python3.12 + let python_regex = Regex::new(r"/python@((\d+\.?)*)/").unwrap(); + match python_regex.captures(&python_exe.to_str().unwrap_or_default()) { + Some(captures) => match captures.get(1) { + Some(version) => { + let version = version.as_str().to_string(); + vec![ + PathBuf::from(format!("/opt/homebrew/bin/python{}", version)), + PathBuf::from(format!("/opt/homebrew/opt/python3/bin/python{}",version)), + PathBuf::from(format!("/opt/homebrew/Cellar/python@{}/{}/bin/python{}",version, full_version, version)), + PathBuf::from(format!("/opt/homebrew/opt/python@{}/bin/python{}", version, version)), + PathBuf::from(format!("/opt/homebrew/Cellar/python@{}/{}/Frameworks/Python.framework/Versions/{}/bin/python{}", version, full_version, version, version)), + PathBuf::from(format!("/opt/homebrew/Cellar/python@{}/{}/Frameworks/Python.framework/Versions/Current/bin/python{}", version, full_version, version)), + PathBuf::from(format!("/opt/homebrew/Frameworks/Python.framework/Versions/{}/bin/python{}", version, version)), + PathBuf::from(format!("/opt/homebrew/Frameworks/Python.framework/Versions/Current/bin/python{}", version)), + PathBuf::from(format!("/opt/homebrew/Cellar/python@{}/{}/Frameworks/Python.framework/Versions/{}/bin/python{}",version, full_version, version, version)), + ] + } + None => vec![], + }, + None => vec![], + } + } else if python_exe.starts_with("/usr/local/Cellar") { + // Real exe - /usr/local/Cellar/python@3.8/3.8.19/Frameworks/Python.framework/Versions/3.8/bin/python3.8 + + // Known symlinks include + // /usr/local/bin/python3.8 + // /usr/local/opt/python@3.8/bin/python3.8 + // /usr/local/Cellar/python@3.8/3.8.19/bin/python3.8 + let python_regex = Regex::new(r"/python@((\d+\.?)*)/").unwrap(); + match python_regex.captures(&python_exe.to_str().unwrap_or_default()) { + Some(captures) => match captures.get(1) { + Some(version) => { + let version = version.as_str().to_string(); + let mut symlinks = vec![ + PathBuf::from(format!( + "/usr/local/opt/python@{}/bin/python{}", + version, version + )), + PathBuf::from(format!( + "/usr/local/Cellar/python@{}/{}/bin/python{}", + version, full_version, version + )), + ]; + + let user_bin_symlink = + PathBuf::from(format!("/usr/local/bin/python{}", version)); + // This is a special folder, if users install python using other means, this file + // might get overridden. So we should only add this if this files points to the same place + if let Some(real_file) = is_symlinked_python_executable(&user_bin_symlink) { + if real_file == *python_exe { + symlinks.push(user_bin_symlink); + } + } + + symlinks + } + None => vec![], + }, + None => vec![], + } + } else if python_exe.starts_with("/home/linuxbrew/.linuxbrew/Cellar") { + // Real exe - /home/linuxbrew/.linuxbrew/Cellar/python@3.12/3.12.3/bin/python3.12 + + // Known symlinks include + // /usr/local/bin/python3.12 + // /home/linuxbrew/.linuxbrew/bin/python3.12 + // /home/linuxbrew/.linuxbrew/opt/python@3.12/bin/python3.12 + let python_regex = Regex::new(r"/python@((\d+\.?)*)/").unwrap(); + match python_regex.captures(&python_exe.to_str().unwrap_or_default()) { + Some(captures) => match captures.get(1) { + Some(version) => { + let version = version.as_str().to_string(); + let mut symlinks = vec![ + PathBuf::from(format!("/home/linuxbrew/.linuxbrew/bin/python{}", version)), + PathBuf::from(format!( + "/home/linuxbrew/.linuxbrew/opt/python@{}/bin/python{}", + version, version + )), + ]; + + let user_bin_symlink = + PathBuf::from(format!("/usr/local/bin/python{}", version)); + // This is a special folder, if users install python using other means, this file + // might get overridden. So we should only add this if this files points to the same place + if let Some(real_file) = is_symlinked_python_executable(&user_bin_symlink) { + if real_file == *python_exe { + symlinks.push(user_bin_symlink); + } + } + + symlinks + } + None => vec![], + }, + None => vec![], + } + } else { + vec![] + } +} + fn get_python_info( python_exe_from_bin_dir: &PathBuf, reported: &mut HashSet, @@ -150,6 +253,12 @@ fn get_python_info( if reported.contains(&resolved_exe.to_string_lossy().to_string()) { return None; } + + let mut symlinks: Option> = None; + if let Some(version) = &version { + symlinks = Some(get_known_symlinks(&resolved_exe, &version)); + } + reported.insert(resolved_exe.to_string_lossy().to_string()); let mut env = PythonEnvironment::new( None, @@ -161,7 +270,7 @@ fn get_python_info( None, Some(vec![user_friendly_exe.to_string_lossy().to_string()]), ); - env.symlinks = Some(vec![resolved_exe.clone(), python_exe_from_bin_dir.clone()]); + env.symlinks = symlinks; return Some(env); } None @@ -184,12 +293,8 @@ impl Locator for Homebrew<'_> { let exe = env.executable.clone(); let exe_file_name = exe.file_name()?; let mut reported: HashSet = HashSet::new(); - if exe.starts_with("/opt/homebrew/bin/python") - || exe.starts_with("/opt/homebrew/Cellar/python@") - || exe.starts_with("/opt/homebrew/opt/python@") - || exe.starts_with("/opt/homebrew/opt/python") - || exe.starts_with("/opt/homebrew/Frameworks/Python.framework/Versions/") - { + let resolved_file = is_symlinked_python_executable(&exe).unwrap_or(exe.clone()); + if resolved_file.starts_with("/opt/homebrew/Cellar") { // Symlink - /opt/homebrew/bin/python3.12 // Symlink - /opt/homebrew/opt/python3/bin/python3.12 // Symlink - /opt/homebrew/Cellar/python@3.12/3.12.3/bin/python3.12 @@ -205,31 +310,23 @@ impl Locator for Homebrew<'_> { &mut reported, &python_regex, ) - } else if exe.starts_with("/usr/local/bin/python") - || exe.starts_with("/usr/local/opt/python@") - || exe.starts_with("/usr/local/Cellar/python@") - { - // Symlink - /usr/local/bin/python3.8 - // Symlink - /usr/local/opt/python@3.8/bin/python3.8 - // Symlink - /usr/local/Cellar/python@3.8/3.8.19/bin/python3.8 - // Real exe - /usr/local/Cellar/python@3.8/3.8.19/Frameworks/Python.framework/Versions/3.8/bin/python3.8 - // SysPrefix- /usr/local/Cellar/python@3.8/3.8.19/Frameworks/Python.framework/Versions/3.8 - get_python_info( - &PathBuf::from("/usr/local/bin").join(exe_file_name), - &mut reported, - &python_regex, - ) - } else if exe.starts_with("/usr/local/bin/python") - || exe.starts_with("/home/linuxbrew/.linuxbrew/bin/python") - || exe.starts_with("/home/linuxbrew/.linuxbrew/opt/python@") - || exe.starts_with("/home/linuxbrew/.linuxbrew/Cellar/python") - { + } else if resolved_file.starts_with("/home/linuxbrew/.linuxbrew/Cellar") { // Symlink - /usr/local/bin/python3.12 // Symlink - /home/linuxbrew/.linuxbrew/bin/python3.12 // Symlink - /home/linuxbrew/.linuxbrew/opt/python@3.12/bin/python3.12 // Real exe - /home/linuxbrew/.linuxbrew/Cellar/python@3.12/3.12.3/bin/python3.12 // SysPrefix- /home/linuxbrew/.linuxbrew/Cellar/python@3.12/3.12.3 - + get_python_info( + &PathBuf::from("/usr/local/bin").join(exe_file_name), + &mut reported, + &python_regex, + ) + } else if resolved_file.starts_with("/usr/local/Cellar") { + // Symlink - /usr/local/bin/python3.8 + // Symlink - /usr/local/opt/python@3.8/bin/python3.8 + // Symlink - /usr/local/Cellar/python@3.8/3.8.19/bin/python3.8 + // Real exe - /usr/local/Cellar/python@3.8/3.8.19/Frameworks/Python.framework/Versions/3.8/bin/python3.8 + // SysPrefix- /usr/local/Cellar/python@3.8/3.8.19/Frameworks/Python.framework/Versions/3.8 get_python_info( &PathBuf::from("/usr/local/bin").join(exe_file_name), &mut reported, diff --git a/native_locator/src/windows_registry.rs b/native_locator/src/windows_registry.rs index 2f3c6d04a42e..63f20aff442f 100644 --- a/native_locator/src/windows_registry.rs +++ b/native_locator/src/windows_registry.rs @@ -1,6 +1,8 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. +#[cfg(windows)] +use crate::conda::{is_conda_env_location, is_conda_install_location}; #[cfg(windows)] use crate::conda::CondaLocator; #[cfg(windows)] @@ -227,7 +229,23 @@ impl WindowsRegistry<'_> { #[cfg(windows)] impl Locator for WindowsRegistry<'_> { - fn resolve(&self, _env: &PythonEnv) -> Option { + fn resolve(&self, env: &PythonEnv) -> Option { + if let Some(env_path) = &env.path { + if is_conda_env_location(&env_path){ + return None; + } + if is_conda_install_location(&env_path){ + return None; + } + } + if let Some(result) = get_registry_pythons(self.conda_locator) { + // Find the same env here + for found_env in result.environments { + if env.executable == env.executable { + return Some(env); + } + } + } None } diff --git a/native_locator/src/windows_store.rs b/native_locator/src/windows_store.rs index f9ed251f9674..32e969a5937d 100644 --- a/native_locator/src/windows_store.rs +++ b/native_locator/src/windows_store.rs @@ -218,13 +218,13 @@ impl WindowsStore<'_> { #[cfg(windows)] impl Locator for WindowsStore<'_> { fn resolve(&self, env: &PythonEnv) -> Option { - if is_windows_python_executable(&env.executable) { - return Some(PythonEnvironment { - python_executable_path: Some(env.executable.clone()), - category: crate::messaging::PythonEnvironmentCategory::WindowsStore, - python_run_command: Some(vec![env.executable.to_str().unwrap().to_string()]), - ..Default::default() - }); + let environments = list_windows_store_python_executables(self.environment)?; + for found_env in environments { + if let Some(ref python_executable_path) = found_env.python_executable_path { + if python_executable_path == &env.executable { + return Some(found_env); + } + } } None } From 3f9bd8c5bcfe6f543ec7d5f66f57a8e06997aaf0 Mon Sep 17 00:00:00 2001 From: Don Jayamanne Date: Mon, 27 May 2024 15:05:38 +1000 Subject: [PATCH 07/15] Remove comments --- native_locator/src/conda.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/native_locator/src/conda.rs b/native_locator/src/conda.rs index 02f32aaf71f4..a64695ad75d8 100644 --- a/native_locator/src/conda.rs +++ b/native_locator/src/conda.rs @@ -105,8 +105,6 @@ pub fn get_conda_package_json_path(path: &Path, package: &str) -> Option = None; // Sample contents From ce5f10797dba48d1a11f3a9dcf87fb71c3c3f374 Mon Sep 17 00:00:00 2001 From: Don Jayamanne Date: Mon, 27 May 2024 15:07:54 +1000 Subject: [PATCH 08/15] Update comments --- native_locator/src/conda.rs | 14 +++++++------- native_locator/tests/conda_test.rs | 6 +++--- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/native_locator/src/conda.rs b/native_locator/src/conda.rs index a64695ad75d8..1dff2ad02a3e 100644 --- a/native_locator/src/conda.rs +++ b/native_locator/src/conda.rs @@ -88,8 +88,8 @@ struct CondaMetaPackageStructure { version: Option, } -/// Get the path to the json file along with the version of a package in the conda environment from the 'conda-meta' directory. -pub fn get_conda_package_json_path(path: &Path, package: &str) -> Option { +/// Get the details of a conda package from the 'conda-meta' directory. +pub fn get_conda_package_info(path: &Path, package: &str) -> Option { // conda-meta is in the root of the conda installation folder let path = path.join("conda-meta"); @@ -306,7 +306,7 @@ pub fn find_conda_binary(environment: &dyn known::Environment) -> Option Option { let conda_exe = get_conda_executable(path)?; - let conda_pkg = get_conda_package_json_path(path, "conda")?; + let conda_pkg = get_conda_package_info(path, "conda")?; Some(EnvManager { executable_path: conda_exe, @@ -357,7 +357,7 @@ fn get_conda_environment_info(env_path: &PathBuf, named: bool) -> Option Option Option { if parent.ends_with("Library") { parent = parent.parent()?; } - match get_conda_package_json_path(&parent, "conda") { + match get_conda_package_info(&parent, "conda") { Some(result) => Some(result.version), - None => match get_conda_package_json_path(&parent.parent()?, "conda") { + None => match get_conda_package_info(&parent.parent()?, "conda") { Some(result) => Some(result.version), None => None, }, diff --git a/native_locator/tests/conda_test.rs b/native_locator/tests/conda_test.rs index dd2ab7fe42d7..10c1dc7f36dd 100644 --- a/native_locator/tests/conda_test.rs +++ b/native_locator/tests/conda_test.rs @@ -552,13 +552,13 @@ fn detect_conda_envs_from_project_dir_created_using_p_flag() { #[cfg(unix)] fn get_conda_package_info() { use crate::common::{join_test_paths, test_file_path}; - use python_finder::conda::{get_conda_package_json_path, CondaPackage}; + use python_finder::conda::{get_conda_package_info, CondaPackage}; use python_finder::messaging::Architecture; let conda_dir = test_file_path(&["tests/unix/conda/user_home/anaconda3"]); - let conda_package = get_conda_package_json_path(&conda_dir, "conda").unwrap(); + let conda_package = get_conda_package_info(&conda_dir, "conda").unwrap(); assert_eq!( conda_package, CondaPackage { @@ -571,7 +571,7 @@ fn get_conda_package_info() { arch: Some(Architecture::X64), } ); - let python_package = get_conda_package_json_path(&conda_dir, "python").unwrap(); + let python_package = get_conda_package_info(&conda_dir, "python").unwrap(); assert_eq!( python_package, CondaPackage { From 3df79aed9882f8ab3e7d7a58596df547871c124d Mon Sep 17 00:00:00 2001 From: Don Jayamanne Date: Mon, 27 May 2024 16:22:19 +1000 Subject: [PATCH 09/15] Detect multiple homebrew locations --- native_locator/src/homebrew.rs | 64 ++++++++++++++++++---------------- 1 file changed, 34 insertions(+), 30 deletions(-) diff --git a/native_locator/src/homebrew.rs b/native_locator/src/homebrew.rs index 5428d7c092da..19be57bdd5b9 100644 --- a/native_locator/src/homebrew.rs +++ b/native_locator/src/homebrew.rs @@ -32,23 +32,26 @@ fn get_homebrew_prefix_env_var(environment: &dyn Environment) -> Option None } -fn get_homebrew_prefix_bin(environment: &dyn Environment) -> Option { - if let Some(homebrew_prefix) = get_homebrew_prefix_env_var(environment) { - return Some(homebrew_prefix); - } - +fn get_homebrew_prefix_bin(environment: &dyn Environment) -> Vec { // Homebrew install folders documented here https://docs.brew.sh/Installation // /opt/homebrew for Apple Silicon, // /usr/local for macOS Intel // /home/linuxbrew/.linuxbrew for Linux - [ + let mut homebrew_prefixes = [ "/home/linuxbrew/.linuxbrew/bin", "/opt/homebrew/bin", "/usr/local/bin", ] .iter() .map(|p| PathBuf::from(p)) - .find(|p| p.exists()) + .filter(|p| p.exists()) + .collect::>(); + if let Some(homebrew_prefix) = get_homebrew_prefix_env_var(environment) { + if !homebrew_prefixes.contains(&homebrew_prefix) { + homebrew_prefixes.push(homebrew_prefix); + } + } + homebrew_prefixes } fn get_env_path(python_exe_from_bin_dir: &PathBuf, resolved_file: &PathBuf) -> Option { @@ -338,38 +341,39 @@ impl Locator for Homebrew<'_> { } fn find(&mut self) -> Option { - let homebrew_prefix_bin = get_homebrew_prefix_bin(self.environment)?; let mut reported: HashSet = HashSet::new(); - let python_regex = Regex::new(r"/(\d+\.\d+\.\d+)/").unwrap(); let mut environments: Vec = vec![]; - for file in std::fs::read_dir(&homebrew_prefix_bin) - .ok()? - .filter_map(Result::ok) - { - // If this file name is `python3`, then ignore this for now. - // We would prefer to use `python3.x` instead of `python3`. - // That way its more consistent and future proof - if let Some(file_name) = file.file_name().to_str() { - if file_name.to_lowercase() == "python3" { - continue; + let python_regex = Regex::new(r"/(\d+\.\d+\.\d+)/").unwrap(); + for homebrew_prefix_bin in get_homebrew_prefix_bin(self.environment) { + for file in std::fs::read_dir(&homebrew_prefix_bin) + .ok()? + .filter_map(Result::ok) + { + // If this file name is `python3`, then ignore this for now. + // We would prefer to use `python3.x` instead of `python3`. + // That way its more consistent and future proof + if let Some(file_name) = file.file_name().to_str() { + if file_name.to_lowercase() == "python3" { + continue; + } + } + + if let Some(env) = get_python_info(&file.path(), &mut reported, &python_regex) { + environments.push(env); } } - if let Some(env) = get_python_info(&file.path(), &mut reported, &python_regex) { + // Possible we do not have python3.12 or the like in bin directory + // & we have only python3, in that case we should add python3 to the list + if let Some(env) = get_python_info( + &homebrew_prefix_bin.join("python3"), + &mut reported, + &python_regex, + ) { environments.push(env); } } - // Possible we do not have python3.12 or the like in bin directory - // & we have only python3, in that case we should add python3 to the list - if let Some(env) = get_python_info( - &homebrew_prefix_bin.join("python3"), - &mut reported, - &python_regex, - ) { - environments.push(env); - } - if environments.is_empty() { None } else { From 432c4e95cdb45d4294ff2f7e0101758f7287c9aa Mon Sep 17 00:00:00 2001 From: Don Jayamanne Date: Mon, 27 May 2024 16:23:42 +1000 Subject: [PATCH 10/15] add comments --- native_locator/src/homebrew.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/native_locator/src/homebrew.rs b/native_locator/src/homebrew.rs index 19be57bdd5b9..ac46a24fbc99 100644 --- a/native_locator/src/homebrew.rs +++ b/native_locator/src/homebrew.rs @@ -37,6 +37,8 @@ fn get_homebrew_prefix_bin(environment: &dyn Environment) -> Vec { // /opt/homebrew for Apple Silicon, // /usr/local for macOS Intel // /home/linuxbrew/.linuxbrew for Linux + // If user has rosetta enabled, then its possible we have homebrew installed via rosetta as well as apple silicon + // I.e. we can have multiple home brews on the same machine, hence search all, let mut homebrew_prefixes = [ "/home/linuxbrew/.linuxbrew/bin", "/opt/homebrew/bin", From 32ca4a86fe40f001c6aa109ecf9caf65b0cd842d Mon Sep 17 00:00:00 2001 From: Don Jayamanne Date: Mon, 27 May 2024 16:24:10 +1000 Subject: [PATCH 11/15] remove unused arg --- native_locator/src/homebrew.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/native_locator/src/homebrew.rs b/native_locator/src/homebrew.rs index ac46a24fbc99..8bcbe749ce9b 100644 --- a/native_locator/src/homebrew.rs +++ b/native_locator/src/homebrew.rs @@ -56,7 +56,7 @@ fn get_homebrew_prefix_bin(environment: &dyn Environment) -> Vec { homebrew_prefixes } -fn get_env_path(python_exe_from_bin_dir: &PathBuf, resolved_file: &PathBuf) -> Option { +fn get_env_path(resolved_file: &PathBuf) -> Option { // If the fully resolved file path contains the words `/homebrew/` or `/linuxbrew/` // Then we know this is definitely a home brew version of python. // And in these cases we can compute the sysprefix. @@ -271,7 +271,7 @@ fn get_python_info( Some(user_friendly_exe.clone()), crate::messaging::PythonEnvironmentCategory::Homebrew, version, - get_env_path(python_exe_from_bin_dir, &resolved_exe), + get_env_path(&resolved_exe), None, Some(vec![user_friendly_exe.to_string_lossy().to_string()]), ); From 75412ff2821549cae2245a691388e62e1321f035 Mon Sep 17 00:00:00 2001 From: Don Jayamanne Date: Mon, 27 May 2024 16:30:18 +1000 Subject: [PATCH 12/15] add comments --- native_locator/src/homebrew.rs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/native_locator/src/homebrew.rs b/native_locator/src/homebrew.rs index 8bcbe749ce9b..aff5c0a2c513 100644 --- a/native_locator/src/homebrew.rs +++ b/native_locator/src/homebrew.rs @@ -142,6 +142,16 @@ fn get_known_symlinks(python_exe: &PathBuf, full_version: &String) -> Vec match captures.get(1) { Some(version) => { let version = version.as_str().to_string(); + // Never include `/opt/homebrew/bin/python` into this list. + // Yes its possible that the file `/opt/homebrew/bin/python` is a symlink to this same version. + // However what happens if user installed 3.10 and 3.11/ + // Then /opt/homebrew/bin/python will most likely point to 3.11, thats fine. + // Now assume we return the path `/opt/homebrew/bin/python` as a symlink to 3.11. + // Then user installs 3.12, how we will end up looking at the symlinks and treat + // /opt/homebrew/bin/python as 3.11, when in fact its entirely possible that + // during the installtion of 3.12, that symlink was updated to point to 3.12. + // Hence in such cases we just rely on `resolve` to always return the right information. + // & we never deal with those paths. vec![ PathBuf::from(format!("/opt/homebrew/bin/python{}", version)), PathBuf::from(format!("/opt/homebrew/opt/python3/bin/python{}",version)), @@ -170,6 +180,9 @@ fn get_known_symlinks(python_exe: &PathBuf, full_version: &String) -> Vec match captures.get(1) { Some(version) => { let version = version.as_str().to_string(); + // Never include `/usr/local/bin/python` into this list. + // See previous explanation + let mut symlinks = vec![ PathBuf::from(format!( "/usr/local/opt/python@{}/bin/python{}", @@ -209,6 +222,8 @@ fn get_known_symlinks(python_exe: &PathBuf, full_version: &String) -> Vec match captures.get(1) { Some(version) => { let version = version.as_str().to_string(); + // Never include `/usr/local/bin/python` into this list. + // See previous explanation let mut symlinks = vec![ PathBuf::from(format!("/home/linuxbrew/.linuxbrew/bin/python{}", version)), PathBuf::from(format!( From 3ddcdb76792f16fb47a677b2a3e9a2369e72c18a Mon Sep 17 00:00:00 2001 From: Don Jayamanne Date: Mon, 27 May 2024 17:36:55 +1000 Subject: [PATCH 13/15] Ensure non-home brew is not discovered as homebrew --- native_locator/src/homebrew.rs | 203 ++++++++++++++++++--------------- 1 file changed, 108 insertions(+), 95 deletions(-) diff --git a/native_locator/src/homebrew.rs b/native_locator/src/homebrew.rs index aff5c0a2c513..d9a27d97a2e7 100644 --- a/native_locator/src/homebrew.rs +++ b/native_locator/src/homebrew.rs @@ -8,7 +8,7 @@ use crate::{ utils::PythonEnv, }; use regex::Regex; -use std::{collections::HashSet, path::PathBuf}; +use std::{collections::HashSet, env, path::PathBuf}; fn is_symlinked_python_executable(path: &PathBuf) -> Option { let name = path.file_name()?.to_string_lossy(); @@ -257,43 +257,39 @@ fn get_python_info( python_exe_from_bin_dir: &PathBuf, reported: &mut HashSet, python_version_regex: &Regex, + resolved_exe: &PathBuf, ) -> Option { - // Possible we do not have python3.12 or the like in bin directory - // & we have only python3, in that case we should add python3 to the list - if let Some(resolved_exe) = is_symlinked_python_executable(python_exe_from_bin_dir) { - let user_friendly_exe = python_exe_from_bin_dir; - let python_version = resolved_exe.to_string_lossy().to_string(); - let version = match python_version_regex.captures(&python_version) { - Some(captures) => match captures.get(1) { - Some(version) => Some(version.as_str().to_string()), - None => None, - }, + let user_friendly_exe = python_exe_from_bin_dir; + let python_version = resolved_exe.to_string_lossy().to_string(); + let version = match python_version_regex.captures(&python_version) { + Some(captures) => match captures.get(1) { + Some(version) => Some(version.as_str().to_string()), None => None, - }; - if reported.contains(&resolved_exe.to_string_lossy().to_string()) { - return None; - } - - let mut symlinks: Option> = None; - if let Some(version) = &version { - symlinks = Some(get_known_symlinks(&resolved_exe, &version)); - } + }, + None => None, + }; + if reported.contains(&resolved_exe.to_string_lossy().to_string()) { + return None; + } - reported.insert(resolved_exe.to_string_lossy().to_string()); - let mut env = PythonEnvironment::new( - None, - None, - Some(user_friendly_exe.clone()), - crate::messaging::PythonEnvironmentCategory::Homebrew, - version, - get_env_path(&resolved_exe), - None, - Some(vec![user_friendly_exe.to_string_lossy().to_string()]), - ); - env.symlinks = symlinks; - return Some(env); + let mut symlinks: Option> = None; + if let Some(version) = &version { + symlinks = Some(get_known_symlinks(&resolved_exe, &version)); } - None + + reported.insert(resolved_exe.to_string_lossy().to_string()); + let mut env = PythonEnvironment::new( + None, + None, + Some(user_friendly_exe.clone()), + crate::messaging::PythonEnvironmentCategory::Homebrew, + version, + get_env_path(&resolved_exe), + None, + Some(vec![user_friendly_exe.to_string_lossy().to_string()]), + ); + env.symlinks = symlinks; + Some(env) } pub struct Homebrew<'a> { @@ -307,86 +303,103 @@ impl Homebrew<'_> { } } +fn resolve(env: &PythonEnv, reported: &mut HashSet) -> Option { + let python_regex = Regex::new(r"/(\d+\.\d+\.\d+)/").unwrap(); + let exe = env.executable.clone(); + let exe_file_name = exe.file_name()?; + let resolved_file = is_symlinked_python_executable(&exe).unwrap_or(exe.clone()); + if resolved_file.starts_with("/opt/homebrew/Cellar") { + // Symlink - /opt/homebrew/bin/python3.12 + // Symlink - /opt/homebrew/opt/python3/bin/python3.12 + // Symlink - /opt/homebrew/Cellar/python@3.12/3.12.3/bin/python3.12 + // Symlink - /opt/homebrew/opt/python@3.12/bin/python3.12 + // Symlink - /opt/homebrew/Cellar/python@3.12/3.12.3/Frameworks/Python.framework/Versions/3.12/bin/python3.12 + // Symlink - /opt/homebrew/Cellar/python@3.12/3.12.3/Frameworks/Python.framework/Versions/Current/bin/python3.12 + // Symlink - /opt/homebrew/Frameworks/Python.framework/Versions/3.12/bin/python3.12 + // Symlink - /opt/homebrew/Frameworks/Python.framework/Versions/Current/bin/python3.12 + // Real exe - /opt/homebrew/Cellar/python@3.12/3.12.3/Frameworks/Python.framework/Versions/3.12/bin/python3.12 + // SysPrefix- /opt/homebrew/opt/python@3.12/Frameworks/Python.framework/Versions/3.12 + get_python_info( + &PathBuf::from("/opt/homebrew/bin").join(exe_file_name), + reported, + &python_regex, + &resolved_file, + ) + } else if resolved_file.starts_with("/home/linuxbrew/.linuxbrew/Cellar") { + // Symlink - /usr/local/bin/python3.12 + // Symlink - /home/linuxbrew/.linuxbrew/bin/python3.12 + // Symlink - /home/linuxbrew/.linuxbrew/opt/python@3.12/bin/python3.12 + // Real exe - /home/linuxbrew/.linuxbrew/Cellar/python@3.12/3.12.3/bin/python3.12 + // SysPrefix- /home/linuxbrew/.linuxbrew/Cellar/python@3.12/3.12.3 + get_python_info( + &PathBuf::from("/usr/local/bin").join(exe_file_name), + reported, + &python_regex, + &resolved_file, + ) + } else if resolved_file.starts_with("/usr/local/Cellar") { + // Symlink - /usr/local/bin/python3.8 + // Symlink - /usr/local/opt/python@3.8/bin/python3.8 + // Symlink - /usr/local/Cellar/python@3.8/3.8.19/bin/python3.8 + // Real exe - /usr/local/Cellar/python@3.8/3.8.19/Frameworks/Python.framework/Versions/3.8/bin/python3.8 + // SysPrefix- /usr/local/Cellar/python@3.8/3.8.19/Frameworks/Python.framework/Versions/3.8 + get_python_info( + &PathBuf::from("/usr/local/bin").join(exe_file_name), + reported, + &python_regex, + &resolved_file, + ) + } else { + None + } +} + impl Locator for Homebrew<'_> { fn resolve(&self, env: &PythonEnv) -> Option { - let python_regex = Regex::new(r"/(\d+\.\d+\.\d+)/").unwrap(); - let exe = env.executable.clone(); - let exe_file_name = exe.file_name()?; let mut reported: HashSet = HashSet::new(); - let resolved_file = is_symlinked_python_executable(&exe).unwrap_or(exe.clone()); - if resolved_file.starts_with("/opt/homebrew/Cellar") { - // Symlink - /opt/homebrew/bin/python3.12 - // Symlink - /opt/homebrew/opt/python3/bin/python3.12 - // Symlink - /opt/homebrew/Cellar/python@3.12/3.12.3/bin/python3.12 - // Symlink - /opt/homebrew/opt/python@3.12/bin/python3.12 - // Symlink - /opt/homebrew/Cellar/python@3.12/3.12.3/Frameworks/Python.framework/Versions/3.12/bin/python3.12 - // Symlink - /opt/homebrew/Cellar/python@3.12/3.12.3/Frameworks/Python.framework/Versions/Current/bin/python3.12 - // Symlink - /opt/homebrew/Frameworks/Python.framework/Versions/3.12/bin/python3.12 - // Symlink - /opt/homebrew/Frameworks/Python.framework/Versions/Current/bin/python3.12 - // Real exe - /opt/homebrew/Cellar/python@3.12/3.12.3/Frameworks/Python.framework/Versions/3.12/bin/python3.12 - // SysPrefix- /opt/homebrew/opt/python@3.12/Frameworks/Python.framework/Versions/3.12 - get_python_info( - &PathBuf::from("/opt/homebrew/bin").join(exe_file_name), - &mut reported, - &python_regex, - ) - } else if resolved_file.starts_with("/home/linuxbrew/.linuxbrew/Cellar") { - // Symlink - /usr/local/bin/python3.12 - // Symlink - /home/linuxbrew/.linuxbrew/bin/python3.12 - // Symlink - /home/linuxbrew/.linuxbrew/opt/python@3.12/bin/python3.12 - // Real exe - /home/linuxbrew/.linuxbrew/Cellar/python@3.12/3.12.3/bin/python3.12 - // SysPrefix- /home/linuxbrew/.linuxbrew/Cellar/python@3.12/3.12.3 - get_python_info( - &PathBuf::from("/usr/local/bin").join(exe_file_name), - &mut reported, - &python_regex, - ) - } else if resolved_file.starts_with("/usr/local/Cellar") { - // Symlink - /usr/local/bin/python3.8 - // Symlink - /usr/local/opt/python@3.8/bin/python3.8 - // Symlink - /usr/local/Cellar/python@3.8/3.8.19/bin/python3.8 - // Real exe - /usr/local/Cellar/python@3.8/3.8.19/Frameworks/Python.framework/Versions/3.8/bin/python3.8 - // SysPrefix- /usr/local/Cellar/python@3.8/3.8.19/Frameworks/Python.framework/Versions/3.8 - get_python_info( - &PathBuf::from("/usr/local/bin").join(exe_file_name), - &mut reported, - &python_regex, - ) - } else { - None - } + resolve(env, &mut reported) } fn find(&mut self) -> Option { let mut reported: HashSet = HashSet::new(); let mut environments: Vec = vec![]; - let python_regex = Regex::new(r"/(\d+\.\d+\.\d+)/").unwrap(); for homebrew_prefix_bin in get_homebrew_prefix_bin(self.environment) { for file in std::fs::read_dir(&homebrew_prefix_bin) .ok()? .filter_map(Result::ok) + .filter(|f| { + let file_name = f.file_name().to_str().unwrap_or_default().to_lowercase(); + return file_name.starts_with("python") + // If this file name is `python3`, then ignore this for now. + // We would prefer to use `python3.x` instead of `python3`. + // That way its more consistent and future proof + && file_name != "python3" + && file_name != "python"; + }) { - // If this file name is `python3`, then ignore this for now. - // We would prefer to use `python3.x` instead of `python3`. - // That way its more consistent and future proof - if let Some(file_name) = file.file_name().to_str() { - if file_name.to_lowercase() == "python3" { - continue; - } - } - - if let Some(env) = get_python_info(&file.path(), &mut reported, &python_regex) { + // Sometimes we end up with other python installs in the Homebrew bin directory. + // E.g. /usr/local/bin is treated as a location where homebrew can be found (homebrew bin) + // However this is a very generic location, and we might end up with other python installs here. + // Hence call `resolve` to correctly identify homebrew python installs. + let env_to_resolve = PythonEnv { + executable: file.path(), + path: None, + version: None, + }; + if let Some(env) = resolve(&env_to_resolve, &mut reported) { environments.push(env); } } // Possible we do not have python3.12 or the like in bin directory // & we have only python3, in that case we should add python3 to the list - if let Some(env) = get_python_info( - &homebrew_prefix_bin.join("python3"), - &mut reported, - &python_regex, - ) { + let file = homebrew_prefix_bin.join("python3"); + let env_to_resolve = PythonEnv { + executable: file, + path: None, + version: None, + }; + if let Some(env) = resolve(&env_to_resolve, &mut reported) { environments.push(env); } } From 26a7ac16bc2a00f7f717c2b68970df7a62bd66b1 Mon Sep 17 00:00:00 2001 From: Don Jayamanne Date: Mon, 27 May 2024 19:21:07 +1000 Subject: [PATCH 14/15] Fixes for known path search --- native_locator/src/common_python.rs | 60 ++++++++++++++++--------- native_locator/src/homebrew.rs | 14 +----- native_locator/src/utils.rs | 68 ++++++++++++++++++++++++----- 3 files changed, 99 insertions(+), 43 deletions(-) diff --git a/native_locator/src/common_python.rs b/native_locator/src/common_python.rs index 67ad94ed40a1..67588ee6aeb6 100644 --- a/native_locator/src/common_python.rs +++ b/native_locator/src/common_python.rs @@ -1,10 +1,15 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. +use regex::Regex; + use crate::known::Environment; use crate::locator::{Locator, LocatorResult}; use crate::messaging::PythonEnvironment; -use crate::utils::{self, PythonEnv}; +use crate::utils::{ + self, find_python_binary_path, get_version_from_header_files, is_symlinked_python_executable, + PythonEnv, +}; use std::env; use std::path::{Path, PathBuf}; @@ -29,32 +34,44 @@ impl PythonOnPath<'_> { impl Locator for PythonOnPath<'_> { fn resolve(&self, env: &PythonEnv) -> Option { - let bin = if cfg!(windows) { - "python.exe" - } else { - "python" - }; - if env.executable.file_name().unwrap().to_ascii_lowercase() != bin { - return None; - } - Some(PythonEnvironment { + let exe = &env.executable; + let mut env = PythonEnvironment { display_name: None, - python_executable_path: Some(env.executable.clone()), + python_executable_path: Some(exe.clone()), version: env.version.clone(), category: crate::messaging::PythonEnvironmentCategory::System, env_path: env.path.clone(), - python_run_command: Some(vec![env.executable.to_str().unwrap().to_string()]), + python_run_command: Some(vec![exe.clone().to_str().unwrap().to_string()]), ..Default::default() - }) + }; + + if let Some(symlink) = is_symlinked_python_executable(&exe) { + env.symlinks = Some(vec![symlink.clone(), exe.clone()]); + // Getting version this way is more accurate than the above regex. + // Sample paths + // /Library/Frameworks/Python.framework/Versions/3.10/bin/python3.10 + if symlink.starts_with("/Library/Frameworks/Python.framework/Versions") { + let python_regex = Regex::new(r"/Versions/((\d+\.?)*)/bin").unwrap(); + if let Some(captures) = python_regex.captures(symlink.to_str().unwrap()) { + let version = captures.get(1).map_or("", |m| m.as_str()); + if version.len() > 0 { + env.version = Some(version.to_string()); + } + } + // Sample paths + // /Library/Frameworks/Python.framework/Versions/3.10/bin/python3.10 + if let Some(parent) = symlink.ancestors().nth(2) { + if let Some(version) = get_version_from_header_files(parent) { + env.version = Some(version); + } + } + } + } + Some(env) } fn find(&mut self) -> Option { let paths = self.environment.get_env_var("PATH".to_string())?; - let bin = if cfg!(windows) { - "python.exe" - } else { - "python" - }; // Exclude files from this folder, as they would have been discovered elsewhere (widows_store) // Also the exe is merely a pointer to another file. @@ -67,8 +84,11 @@ impl Locator for PythonOnPath<'_> { let mut environments: Vec = vec![]; env::split_paths(&paths) .filter(|p| !p.starts_with(apps_path.clone())) - .map(|p| p.join(bin)) - .filter(|p| p.exists()) + // Paths like /Library/Frameworks/Python.framework/Versions/3.10/bin can end up in the current PATH variable. + // Hence do not just look for files in a bin directory of the path. + .map(|p| find_python_binary_path(&p)) + .filter(Option::is_some) + .map(Option::unwrap) .for_each(|full_path| { let version = utils::get_version(&full_path); let env_path = get_env_path(&full_path); diff --git a/native_locator/src/homebrew.rs b/native_locator/src/homebrew.rs index d9a27d97a2e7..894ef2b659e6 100644 --- a/native_locator/src/homebrew.rs +++ b/native_locator/src/homebrew.rs @@ -5,23 +5,11 @@ use crate::{ known::Environment, locator::{Locator, LocatorResult}, messaging::PythonEnvironment, - utils::PythonEnv, + utils::{is_symlinked_python_executable, PythonEnv}, }; use regex::Regex; use std::{collections::HashSet, env, path::PathBuf}; -fn is_symlinked_python_executable(path: &PathBuf) -> Option { - let name = path.file_name()?.to_string_lossy(); - if !name.starts_with("python") || name.ends_with("-config") || name.ends_with("-build") { - return None; - } - let metadata = std::fs::symlink_metadata(&path).ok()?; - if metadata.is_file() || !metadata.file_type().is_symlink() { - return None; - } - Some(std::fs::canonicalize(path).ok()?) -} - fn get_homebrew_prefix_env_var(environment: &dyn Environment) -> Option { if let Some(homebrew_prefix) = environment.get_env_var("HOMEBREW_PREFIX".to_string()) { let homebrew_prefix_bin = PathBuf::from(homebrew_prefix).join("bin"); diff --git a/native_locator/src/utils.rs b/native_locator/src/utils.rs index d9a30c3a7f8a..66bcc39c6135 100644 --- a/native_locator/src/utils.rs +++ b/native_locator/src/utils.rs @@ -98,17 +98,34 @@ pub fn get_version(python_executable: &PathBuf) -> Option { None } +#[cfg(windows)] pub fn find_python_binary_path(env_path: &Path) -> Option { - let python_bin_name = if cfg!(windows) { - "python.exe" - } else { - "python" - }; - let path_1 = env_path.join("bin").join(python_bin_name); - let path_2 = env_path.join("Scripts").join(python_bin_name); - let path_3 = env_path.join(python_bin_name); - let paths = vec![path_1, path_2, path_3]; - paths.into_iter().find(|path| path.exists()) + for path in vec![ + env_path.join("Scripts").join("python.exe"), + env_path.join("Scripts").join("python3.exe"), + env_path.join("python.exe"), + env_path.join("python3.exe"), + ] { + if path.exists() { + return Some(path); + } + } + None +} + +#[cfg(unix)] +pub fn find_python_binary_path(env_path: &Path) -> Option { + for path in vec![ + env_path.join("bin").join("python"), + env_path.join("bin").join("python3"), + env_path.join("python"), + env_path.join("python3"), + ] { + if path.exists() { + return Some(path); + } + } + None } pub fn list_python_environments(path: &PathBuf) -> Option> { @@ -146,3 +163,34 @@ pub fn get_environment_key(env: &PythonEnvironment) -> Option { pub fn get_environment_manager_key(env: &EnvManager) -> String { return env.executable_path.to_string_lossy().to_string(); } + +pub fn is_symlinked_python_executable(path: &PathBuf) -> Option { + let name = path.file_name()?.to_string_lossy(); + if !name.starts_with("python") || name.ends_with("-config") || name.ends_with("-build") { + return None; + } + let metadata = std::fs::symlink_metadata(&path).ok()?; + if metadata.is_file() || !metadata.file_type().is_symlink() { + return None; + } + Some(std::fs::canonicalize(path).ok()?) +} + +// Get the python version from the `Headers/patchlevel.h` file +// The lines we are looking for are: +// /* Version as a string */ +// #define PY_VERSION "3.10.2" +// /*--end constants--*/ +pub fn get_version_from_header_files(path: &Path) -> Option { + let version_regex = Regex::new(r#"#define\s+PY_VERSION\s+"((\d+\.?)*)"#).unwrap(); + let patchlevel_h = path.join("Headers").join("patchlevel.h"); + let contents = fs::read_to_string(&patchlevel_h).ok()?; + for line in contents.lines() { + if let Some(captures) = version_regex.captures(line) { + if let Some(value) = captures.get(1) { + return Some(value.as_str().to_string()); + } + } + } + None +} From 28cbc1904d509c4514a21fd142e4c15c29cdf7c8 Mon Sep 17 00:00:00 2001 From: Don Jayamanne Date: Tue, 28 May 2024 15:21:46 +1000 Subject: [PATCH 15/15] Fix resolve --- native_locator/src/common_python.rs | 118 +++++++++++++++++------ native_locator/src/global_virtualenvs.rs | 4 +- native_locator/src/homebrew.rs | 63 +++++++++--- native_locator/src/known.rs | 37 ++++++- native_locator/src/messaging.rs | 7 ++ native_locator/src/pyenv.rs | 10 -- native_locator/src/utils.rs | 74 ++++++++++---- native_locator/src/virtualenvwrapper.rs | 23 ++++- 8 files changed, 261 insertions(+), 75 deletions(-) diff --git a/native_locator/src/common_python.rs b/native_locator/src/common_python.rs index 67588ee6aeb6..5549ca454acf 100644 --- a/native_locator/src/common_python.rs +++ b/native_locator/src/common_python.rs @@ -1,27 +1,20 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. +use log::warn; use regex::Regex; use crate::known::Environment; use crate::locator::{Locator, LocatorResult}; use crate::messaging::PythonEnvironment; use crate::utils::{ - self, find_python_binary_path, get_version_from_header_files, is_symlinked_python_executable, - PythonEnv, + self, find_all_python_binaries_in_path, get_shortest_python_executable, + get_version_from_header_files, is_symlinked_python_executable, PythonEnv, }; -use std::env; +use std::cell::RefCell; +use std::collections::HashMap; use std::path::{Path, PathBuf}; -fn get_env_path(python_executable_path: &PathBuf) -> Option { - let parent = python_executable_path.parent()?; - if parent.file_name()? == "Scripts" { - return Some(parent.parent()?.to_path_buf()); - } else { - return Some(parent.to_path_buf()); - } -} - pub struct PythonOnPath<'a> { pub environment: &'a dyn Environment, } @@ -44,7 +37,6 @@ impl Locator for PythonOnPath<'_> { python_run_command: Some(vec![exe.clone().to_str().unwrap().to_string()]), ..Default::default() }; - if let Some(symlink) = is_symlinked_python_executable(&exe) { env.symlinks = Some(vec![symlink.clone(), exe.clone()]); // Getting version this way is more accurate than the above regex. @@ -65,14 +57,16 @@ impl Locator for PythonOnPath<'_> { env.version = Some(version); } } + + if let Some(env_path) = symlink.ancestors().nth(2) { + env.env_path = Some(env_path.to_path_buf()); + } } } Some(env) } fn find(&mut self) -> Option { - let paths = self.environment.get_env_var("PATH".to_string())?; - // Exclude files from this folder, as they would have been discovered elsewhere (widows_store) // Also the exe is merely a pointer to another file. let home = self.environment.get_user_home()?; @@ -81,27 +75,95 @@ impl Locator for PythonOnPath<'_> { .join("Local") .join("Microsoft") .join("WindowsApps"); - let mut environments: Vec = vec![]; - env::split_paths(&paths) + let mut python_executables = self + .environment + .get_know_global_search_locations() + .into_iter() .filter(|p| !p.starts_with(apps_path.clone())) // Paths like /Library/Frameworks/Python.framework/Versions/3.10/bin can end up in the current PATH variable. // Hence do not just look for files in a bin directory of the path. - .map(|p| find_python_binary_path(&p)) - .filter(Option::is_some) - .map(Option::unwrap) - .for_each(|full_path| { - let version = utils::get_version(&full_path); - let env_path = get_env_path(&full_path); - if let Some(env) = self.resolve(&PythonEnv::new(full_path, env_path, version)) { - environments.push(env); + .map(|p| find_all_python_binaries_in_path(&p)) + .flatten() + .collect::>(); + + // The python executables can contain files like + // /usr/local/bin/python3.10 + // /usr/local/bin/python3 + // Possible both of the above are symlinks and point to the same file. + // Hence sort on length of the path. + // So that we process generic python3 before python3.10 + python_executables.sort_by(|a, b| { + a.to_str() + .unwrap_or_default() + .len() + .cmp(&b.to_str().unwrap_or_default().len()) + }); + let mut already_found: HashMap> = HashMap::new(); + python_executables.into_iter().for_each(|full_path| { + let version = utils::get_version_using_pyvenv_cfg(&full_path); + let possible_symlink = match utils::get_version_using_pyvenv_cfg(&full_path) { + Some(_) => { + // We got a version from pyvenv.cfg file, that means we're looking at a virtual env. + // This should not happen. + warn!( + "Found a virtual env but identified as global Python: {:?}", + full_path + ); + // Its already fully resolved as we managed to get the env version from a pyvenv.cfg in current dir. + full_path.clone() + } + None => { + is_symlinked_python_executable(&full_path.clone()).unwrap_or(full_path.clone()) } - }); + }; + let is_a_symlink = &possible_symlink != &full_path; + if already_found.contains_key(&possible_symlink) { + // If we have a symlinked file then, ensure the original path is added as symlink. + // Possible we only added /usr/local/bin/python3.10 and not /usr/local/bin/python3 + // This entry is /usr/local/bin/python3 + if is_a_symlink { + if let Some(existing) = already_found.get_mut(&full_path) { + let mut existing = existing.borrow_mut(); + if let Some(ref mut symlinks) = existing.symlinks { + symlinks.push(full_path.clone()); + } else { + existing.symlinks = + Some(vec![possible_symlink.clone(), full_path.clone()]); + } + + existing.python_executable_path = get_shortest_python_executable( + &existing.symlinks, + &existing.python_executable_path, + ); + } + } + return; + } + + if let Some(env) = self.resolve(&PythonEnv::new(full_path.clone(), None, version)) { + let mut env = env.clone(); + let mut symlinks: Option> = None; + if is_a_symlink { + symlinks = Some(vec![possible_symlink.clone(), full_path.clone()]); + } + env.python_executable_path = + get_shortest_python_executable(&symlinks, &env.python_executable_path); + env.symlinks = symlinks.clone(); + let env = RefCell::new(env); + already_found.insert(full_path, env.clone()); + if let Some(symlinks) = symlinks.clone() { + for symlink in symlinks { + already_found.insert(symlink.clone(), env.clone()); + } + } + } + }); - if environments.is_empty() { + if already_found.is_empty() { None } else { Some(LocatorResult { - environments, + environments: already_found.values().map(|v| v.borrow().clone()).collect(), managers: vec![], }) } diff --git a/native_locator/src/global_virtualenvs.rs b/native_locator/src/global_virtualenvs.rs index e0e4cf8cb991..94d4529fce35 100644 --- a/native_locator/src/global_virtualenvs.rs +++ b/native_locator/src/global_virtualenvs.rs @@ -3,7 +3,7 @@ use crate::{ known, - utils::{find_python_binary_path, get_version, PythonEnv}, + utils::{find_python_binary_path, get_version_using_pyvenv_cfg, PythonEnv}, }; use std::{fs, path::PathBuf}; @@ -57,7 +57,7 @@ pub fn list_global_virtual_envs(environment: &impl known::Environment) -> Vec Vec match captures.get(1) { Some(version) => { let version = version.as_str().to_string(); - // Never include `/opt/homebrew/bin/python` into this list. - // Yes its possible that the file `/opt/homebrew/bin/python` is a symlink to this same version. - // However what happens if user installed 3.10 and 3.11/ - // Then /opt/homebrew/bin/python will most likely point to 3.11, thats fine. - // Now assume we return the path `/opt/homebrew/bin/python` as a symlink to 3.11. - // Then user installs 3.12, how we will end up looking at the symlinks and treat - // /opt/homebrew/bin/python as 3.11, when in fact its entirely possible that - // during the installtion of 3.12, that symlink was updated to point to 3.12. - // Hence in such cases we just rely on `resolve` to always return the right information. - // & we never deal with those paths. - vec![ + let mut symlinks = vec![ PathBuf::from(format!("/opt/homebrew/bin/python{}", version)), PathBuf::from(format!("/opt/homebrew/opt/python3/bin/python{}",version)), PathBuf::from(format!("/opt/homebrew/Cellar/python@{}/{}/bin/python{}",version, full_version, version)), @@ -150,7 +140,23 @@ fn get_known_symlinks(python_exe: &PathBuf, full_version: &String) -> Vec vec![], }, @@ -163,6 +169,7 @@ fn get_known_symlinks(python_exe: &PathBuf, full_version: &String) -> Vec match captures.get(1) { @@ -180,6 +187,10 @@ fn get_known_symlinks(python_exe: &PathBuf, full_version: &String) -> Vec Vec Vec Vec { + let mut paths = env::split_paths(&self.get_env_var("PATH".to_string()).unwrap_or_default()) + .collect::>(); + vec![ - PathBuf::from("/usr/bin"), - PathBuf::from("/usr/local/bin"), PathBuf::from("/bin"), - PathBuf::from("/home/bin"), + PathBuf::from("/etc"), + PathBuf::from("/lib"), + PathBuf::from("/lib/x86_64-linux-gnu"), + PathBuf::from("/lib64"), PathBuf::from("/sbin"), - PathBuf::from("/usr/sbin"), + PathBuf::from("/snap/bin"), + PathBuf::from("/usr/bin"), + PathBuf::from("/usr/games"), + PathBuf::from("/usr/include"), + PathBuf::from("/usr/lib"), + PathBuf::from("/usr/lib/x86_64-linux-gnu"), + PathBuf::from("/usr/lib64"), + PathBuf::from("/usr/libexec"), + PathBuf::from("/usr/local"), + PathBuf::from("/usr/local/bin"), + PathBuf::from("/usr/local/etc"), + PathBuf::from("/usr/local/games"), + PathBuf::from("/usr/local/lib"), PathBuf::from("/usr/local/sbin"), + PathBuf::from("/usr/sbin"), + PathBuf::from("/usr/share"), + PathBuf::from("~/.local/bin"), + PathBuf::from("/home/bin"), PathBuf::from("/home/sbin"), PathBuf::from("/opt"), PathBuf::from("/opt/bin"), PathBuf::from("/opt/sbin"), - PathBuf::from("/opt/homebrew/bin"), ] + .iter() + .for_each(|p| { + if !paths.contains(p) { + paths.push(p.clone()); + } + }); + + paths } } diff --git a/native_locator/src/messaging.rs b/native_locator/src/messaging.rs index d66281067962..bdd323fec972 100644 --- a/native_locator/src/messaging.rs +++ b/native_locator/src/messaging.rs @@ -263,6 +263,13 @@ impl MessageDispatcher for JsonRpcDispatcher { } if !self.reported_environments.contains(&key) { self.reported_environments.insert(key); + if let Some(ref symlinks) = env.symlinks { + for symlink in symlinks { + if let Some(key) = symlink.as_os_str().to_str() { + self.reported_environments.insert(key.to_string()); + } + } + } // Get the creation and modified times. let mut env = env.clone(); diff --git a/native_locator/src/pyenv.rs b/native_locator/src/pyenv.rs index de7a9c1e69a5..a83a704ce709 100644 --- a/native_locator/src/pyenv.rs +++ b/native_locator/src/pyenv.rs @@ -41,16 +41,6 @@ fn get_home_pyenv_dir(environment: &dyn known::Environment) -> Option { } fn get_binary_from_known_paths(environment: &dyn known::Environment) -> Option { - for known_path in env::split_paths( - &environment - .get_env_var("PATH".to_string()) - .unwrap_or_default(), - ) { - let bin = PathBuf::from(known_path).join("pyenv"); - if bin.exists() { - return Some(bin); - } - } for known_path in environment.get_know_global_search_locations() { let bin = known_path.join("pyenv"); if bin.exists() { diff --git a/native_locator/src/utils.rs b/native_locator/src/utils.rs index 66bcc39c6135..2200aec7f433 100644 --- a/native_locator/src/utils.rs +++ b/native_locator/src/utils.rs @@ -89,7 +89,7 @@ pub fn find_and_parse_pyvenv_cfg(python_executable: &PathBuf) -> Option Option { +pub fn get_version_using_pyvenv_cfg(python_executable: &PathBuf) -> Option { if let Some(parent_folder) = python_executable.parent() { if let Some(pyenv_cfg) = find_and_parse_pyvenv_cfg(&parent_folder.to_path_buf()) { return Some(pyenv_cfg.version); @@ -128,25 +128,44 @@ pub fn find_python_binary_path(env_path: &Path) -> Option { None } -pub fn list_python_environments(path: &PathBuf) -> Option> { - let mut python_envs: Vec = vec![]; - for venv_dir in fs::read_dir(path).ok()? { - if let Ok(venv_dir) = venv_dir { - let venv_dir = venv_dir.path(); - if !venv_dir.is_dir() { - continue; - } - if let Some(executable) = find_python_binary_path(&venv_dir) { - python_envs.push(PythonEnv::new( - executable.clone(), - Some(venv_dir), - get_version(&executable), - )); +fn is_python_exe_name(exe: &PathBuf) -> bool { + let name = exe + .file_name() + .unwrap_or_default() + .to_str() + .unwrap_or_default() + .to_lowercase(); + if !name.starts_with("python") { + return false; + } + // Regex to match pythonX.X.exe + #[cfg(windows)] + let version_regex = Regex::new(r"python(\d+\.?)*.exe").unwrap(); + #[cfg(unix)] + let version_regex = Regex::new(r"python(\d+\.?)*$").unwrap(); + version_regex.is_match(&name) +} + +pub fn find_all_python_binaries_in_path(env_path: &Path) -> Vec { + let mut python_executables = vec![]; + #[cfg(windows)] + let bin = "Scripts"; + #[cfg(unix)] + let bin = "bin"; + let mut env_path = env_path.to_path_buf(); + if env_path.join(bin).metadata().is_ok() { + env_path = env_path.join(bin); + } + // Enumerate this directory and get all `python` & `pythonX.X` files. + if let Ok(entries) = fs::read_dir(env_path) { + for entry in entries.filter_map(Result::ok) { + let file = entry.path(); + if is_python_exe_name(&file) && file.is_file() { + python_executables.push(file); } } } - - Some(python_envs) + python_executables } pub fn get_environment_key(env: &PythonEnvironment) -> Option { @@ -194,3 +213,24 @@ pub fn get_version_from_header_files(path: &Path) -> Option { } None } + +pub fn get_shortest_python_executable( + symlinks: &Option>, + exe: &Option, +) -> Option { + // Ensure the executable always points to the shorted path. + if let Some(mut symlinks) = symlinks.clone() { + if let Some(exe) = exe { + symlinks.push(exe.clone()); + } + symlinks.sort_by(|a, b| { + a.to_str() + .unwrap_or_default() + .len() + .cmp(&b.to_str().unwrap_or_default().len()) + }); + Some(symlinks[0].clone()) + } else { + exe.clone() + } +} diff --git a/native_locator/src/virtualenvwrapper.rs b/native_locator/src/virtualenvwrapper.rs index 9a06fc2494cb..a4a30c3fe755 100644 --- a/native_locator/src/virtualenvwrapper.rs +++ b/native_locator/src/virtualenvwrapper.rs @@ -3,7 +3,7 @@ use crate::locator::{Locator, LocatorResult}; use crate::messaging::PythonEnvironment; -use crate::utils::list_python_environments; +use crate::utils::{find_python_binary_path, get_version_using_pyvenv_cfg}; use crate::virtualenv; use crate::{known::Environment, utils::PythonEnv}; use std::fs; @@ -79,6 +79,27 @@ fn get_project(env: &PythonEnv) -> Option { None } +fn list_python_environments(path: &PathBuf) -> Option> { + let mut python_envs: Vec = vec![]; + for venv_dir in fs::read_dir(path).ok()? { + if let Ok(venv_dir) = venv_dir { + let venv_dir = venv_dir.path(); + if !venv_dir.is_dir() { + continue; + } + if let Some(executable) = find_python_binary_path(&venv_dir) { + python_envs.push(PythonEnv::new( + executable.clone(), + Some(venv_dir), + get_version_using_pyvenv_cfg(&executable), + )); + } + } + } + + Some(python_envs) +} + pub struct VirtualEnvWrapper<'a> { pub environment: &'a dyn Environment, }