Last active
April 9, 2025 08:55
-
-
Save lupyuen/21167fe02656b89632d3cce54aa23024 to your computer and use it in GitHub Desktop.
`rv-virt:python` builds OK with Docker on Ubuntu 24.04.2 LTS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
neofetch | |
sudo docker run \ | |
-it \ | |
ghcr.io/apache/nuttx/apache-nuttx-ci-linux:latest \ | |
/bin/bash | |
## TODO: Update for the release | |
export release=12.9.0 | |
export candidate=RC0 | |
export hash=47cdb6a283 | |
cd | |
url=https://dist.apache.org/repos/dist/dev/nuttx/$release-$candidate/ | |
for file in \ | |
apache-nuttx-$release.tar.gz.asc \ | |
apache-nuttx-$release.tar.gz.sha512 \ | |
apache-nuttx-$release.tar.gz \ | |
apache-nuttx-apps-$release.tar.gz.asc \ | |
apache-nuttx-apps-$release.tar.gz.sha512 \ | |
apache-nuttx-apps-$release.tar.gz | |
do | |
wget $url/$file | |
done | |
echo ----- extract src bundle | |
tar -xf apache-nuttx-$release.tar.gz | |
tar -xf apache-nuttx-apps-$release.tar.gz | |
cd nuttx | |
tools/configure.sh rv-virt:python | |
make -j ; echo Exit Code is $? | |
sudo docker run \ | |
-it \ | |
ghcr.io/apache/nuttx/apache-nuttx-ci-linux:latest \ | |
/bin/bash | |
.-/+oossssoo+/-. luppy@thinkstation | |
`:+ssssssssssssssssss+:` ------------------ | |
-+ssssssssssssssssssyyssss+- OS: Ubuntu 24.04.2 LTS x86_64 | |
.ossssssssssssssssssdMMMNysssso. Host: 30B4S1MW02 ThinkStation P510 | |
/ssssssssssshdmmNNmmyNMMMMhssssss/ Kernel: 6.11.0-21-generic | |
+ssssssssshmydMMMMMMMNddddyssssssss+ Uptime: 9 days, 1 hour, 18 mins | |
/sssssssshNMMMyhhyyyyhmNMMMNhssssssss/ Packages: 2282 (dpkg), 12 (snap) | |
.ssssssssdMMMNhsssssssssshNMMMdssssssss. Shell: bash 5.2.21 | |
+sssshhhyNMMNyssssssssssssyNMMMysssssss+ Resolution: 640x480 | |
ossyNMMMNyMMhsssssssssssssshmmmhssssssso Terminal: node | |
ossyNMMMNyMMhsssssssssssssshmmmhssssssso CPU: Intel Xeon E5-2650 v4 (24) @ 2.900GHz | |
+sssshhhyNMMNyssssssssssssyNMMMysssssss+ GPU: NVIDIA Quadro M2000 | |
.ssssssssdMMMNhsssssssssshNMMMdssssssss. Memory: 15143MiB / 64189MiB | |
/sssssssshNMMMyhhyyyyhdNMMMNhssssssss/ | |
+sssssssssdmydMMMMMMMMddddyssssssss+ | |
/ssssssssssshdmNNNNmyNMMMMhssssss/ | |
.ossssssssssssssssssdMMMNysssso. | |
-+sssssssssssssssssyyyssss+- | |
`:+ssssssssssssssssss+:` | |
.-/+oossssoo+/-. | |
[sudo] password for luppy: | |
root@c23ff7fbe548:~/nuttx# riscv-none-elf-gcc -v | |
Using built-in specs. | |
COLLECT_GCC=/tools/riscv-none-elf-gcc/bin/riscv-none-elf-gcc | |
COLLECT_LTO_WRAPPER=/tools/riscv-none-elf-gcc/bin/../libexec/gcc/riscv-none-elf/13.2.0/lto-wrapper | |
Target: riscv-none-elf | |
Configured with: /__w/riscv-none-elf-gcc-xpack/riscv-none-elf-gcc-xpack/build/linux-x64/sources/gcc-13.2.0/configure --prefix=/__w/riscv-none-elf-gcc-xpack/riscv-none-elf-gcc-xpack/build/linux-x64/application --with-sysroot=/__w/riscv-none-elf-gcc-xpack/riscv-none-elf-gcc-xpack/build/linux-x64/application/riscv-none-elf --with-native-system-header-dir=/include --infodir=/__w/riscv-none-elf-gcc-xpack/riscv-none-elf-gcc-xpack/build/linux-x64/x86_64-pc-linux-gnu/install/share/info --mandir=/__w/riscv-none-elf-gcc-xpack/riscv-none-elf-gcc-xpack/build/linux-x64/x86_64-pc-linux-gnu/install/share/man --htmldir=/__w/riscv-none-elf-gcc-xpack/riscv-none-elf-gcc-xpack/build/linux-x64/x86_64-pc-linux-gnu/install/share/html --pdfdir=/__w/riscv-none-elf-gcc-xpack/riscv-none-elf-gcc-xpack/build/linux-x64/x86_64-pc-linux-gnu/install/share/pdf --build=x86_64-pc-linux-gnu --host=x86_64-pc-linux-gnu --target=riscv-none-elf --disable-libgomp --disable-libmudflap --disable-libquadmath --disable-libsanitizer --disable-libssp --disable-nls --disable-shared --disable-threads --disable-tls --enable-checking=release --enable-languages=c,c++,fortran --with-gmp=/__w/riscv-none-elf-gcc-xpack/riscv-none-elf-gcc-xpack/build/linux-x64/x86_64-pc-linux-gnu/install --with-newlib --with-pkgversion='xPack GNU RISC-V Embedded GCC x86_64' --with-gnu-as --with-gnu-ld --with-system-zlib --with-abi=ilp32 --with-arch=rv32imac --enable-multilib | |
Thread model: single | |
Supported LTO compression algorithms: zlib zstd | |
gcc version 13.2.0 (xPack GNU RISC-V Embedded GCC x86_64) | |
root@c23ff7fbe548:/tools# | |
export release=12.9.0 | |
export candidate=RC0 | |
export hash=47cdb6a283 | |
root@c23ff7fbe548:/tools# neofetch | |
bash: neofetch: command not found | |
root@c23ff7fbe548:/tools# cd | |
url=https://dist.apache.org/repos/dist/dev/nuttx/$release-$candidate/ | |
for file in \ | |
apache-nuttx-$release.tar.gz.asc \ | |
apache-nuttx-$release.tar.gz.sha512 \ | |
apache-nuttx-$release.tar.gz \ | |
apache-nuttx-apps-$release.tar.gz.asc \ | |
apache-nuttx-apps-$release.tar.gz.sha512 \ | |
apache-nuttx-apps-$release.tar.gz | |
do | |
wget $url/$file | |
done | |
--2025-04-09 07:53:15-- https://dist.apache.org/repos/dist/dev/nuttx/12.9.0-RC0//apache-nuttx-12.9.0.tar.gz.asc | |
Resolving dist.apache.org (dist.apache.org)... 13.90.137.153 | |
Connecting to dist.apache.org (dist.apache.org)|13.90.137.153|:443... connected. | |
HTTP request sent, awaiting response... 200 OK | |
Length: 833 [text/plain] | |
Saving to: 'apache-nuttx-12.9.0.tar.gz.asc' | |
apache-nuttx-12.9.0.ta 100%[============================>] 833 --.-KB/s in 0s | |
2025-04-09 07:53:16 (112 MB/s) - 'apache-nuttx-12.9.0.tar.gz.asc' saved [833/833] | |
--2025-04-09 07:53:16-- https://dist.apache.org/repos/dist/dev/nuttx/12.9.0-RC0//apache-nuttx-12.9.0.tar.gz.sha512 | |
Resolving dist.apache.org (dist.apache.org)... 13.90.137.153 | |
Connecting to dist.apache.org (dist.apache.org)|13.90.137.153|:443... connected. | |
HTTP request sent, awaiting response... 200 OK | |
Length: 157 [text/plain] | |
Saving to: 'apache-nuttx-12.9.0.tar.gz.sha512' | |
apache-nuttx-12.9.0.ta 100%[============================>] 157 --.-KB/s in 0s | |
2025-04-09 07:53:17 (82.3 MB/s) - 'apache-nuttx-12.9.0.tar.gz.sha512' saved [157/157] | |
--2025-04-09 07:53:17-- https://dist.apache.org/repos/dist/dev/nuttx/12.9.0-RC0//apache-nuttx-12.9.0.tar.gz | |
Resolving dist.apache.org (dist.apache.org)... 13.90.137.153 | |
Connecting to dist.apache.org (dist.apache.org)|13.90.137.153|:443... connected. | |
HTTP request sent, awaiting response... 200 OK | |
Length: 99313597 (95M) [application/octet-stream] | |
Saving to: 'apache-nuttx-12.9.0.tar.gz' | |
apache-nuttx-12.9.0.ta 100%[============================>] 94.71M 1.18MB/s in 37s | |
2025-04-09 07:53:55 (2.55 MB/s) - 'apache-nuttx-12.9.0.tar.gz' saved [99313597/99313597] | |
--2025-04-09 07:53:55-- https://dist.apache.org/repos/dist/dev/nuttx/12.9.0-RC0//apache-nuttx-apps-12.9.0.tar.gz.asc | |
Resolving dist.apache.org (dist.apache.org)... 13.90.137.153 | |
Connecting to dist.apache.org (dist.apache.org)|13.90.137.153|:443... connected. | |
HTTP request sent, awaiting response... 200 OK | |
Length: 833 [text/plain] | |
Saving to: 'apache-nuttx-apps-12.9.0.tar.gz.asc' | |
apache-nuttx-apps-12.9 100%[============================>] 833 --.-KB/s in 0s | |
2025-04-09 07:53:56 (126 MB/s) - 'apache-nuttx-apps-12.9.0.tar.gz.asc' saved [833/833] | |
--2025-04-09 07:53:56-- https://dist.apache.org/repos/dist/dev/nuttx/12.9.0-RC0//apache-nuttx-apps-12.9.0.tar.gz.sha512 | |
Resolving dist.apache.org (dist.apache.org)... 13.90.137.153 | |
Connecting to dist.apache.org (dist.apache.org)|13.90.137.153|:443... connected. | |
HTTP request sent, awaiting response... 200 OK | |
Length: 162 [text/plain] | |
Saving to: 'apache-nuttx-apps-12.9.0.tar.gz.sha512' | |
apache-nuttx-apps-12.9 100%[============================>] 162 --.-KB/s in 0s | |
2025-04-09 07:53:57 (90.8 MB/s) - 'apache-nuttx-apps-12.9.0.tar.gz.sha512' saved [162/162] | |
--2025-04-09 07:53:57-- https://dist.apache.org/repos/dist/dev/nuttx/12.9.0-RC0//apache-nuttx-apps-12.9.0.tar.gz | |
Resolving dist.apache.org (dist.apache.org)... 13.90.137.153 | |
Connecting to dist.apache.org (dist.apache.org)|13.90.137.153|:443... connected. | |
HTTP request sent, awaiting response... 200 OK | |
Length: 4379304 (4.2M) [application/octet-stream] | |
Saving to: 'apache-nuttx-apps-12.9.0.tar.gz' | |
apache-nuttx-apps-12.9 100%[============================>] 4.18M 1.54MB/s in 2.7s | |
2025-04-09 07:54:01 (1.54 MB/s) - 'apache-nuttx-apps-12.9.0.tar.gz' saved [4379304/4379304] | |
root@c23ff7fbe548:~# echo ----- extract src bundle | |
tar -xf apache-nuttx-$release.tar.gz | |
----- extract src bundle | |
root@c23ff7fbe548:~# tar -xf apache-nuttx-apps-$release.tar.gz | |
root@c23ff7fbe548:~# cd nuttx | |
root@c23ff7fbe548:~/nuttx# tools/configure.sh rv-virt:python | |
Copy files | |
Select CONFIG_HOST_LINUX=y | |
Refreshing... | |
CP: arch/dummy/Kconfig to /root/nuttx/arch/dummy/dummy_kconfig | |
CP: boards/dummy/Kconfig to /root/nuttx/boards/dummy/dummy_kconfig | |
LN: platform/board to /root/apps/platform/dummy | |
LN: include/arch to arch/risc-v/include | |
LN: include/arch/board to /root/nuttx/boards/risc-v/qemu-rv/rv-virt/include | |
LN: drivers/platform to /root/nuttx/drivers/dummy | |
LN: include/arch/chip to /root/nuttx/arch/risc-v/include/qemu-rv | |
LN: arch/risc-v/src/chip to /root/nuttx/arch/risc-v/src/qemu-rv | |
LN: arch/risc-v/src/board to /root/nuttx/boards/risc-v/qemu-rv/rv-virt/src | |
mkkconfig in /root/apps/audioutils | |
mkkconfig in /root/apps/benchmarks | |
mkkconfig in /root/apps/boot | |
mkkconfig in /root/apps/canutils | |
mkkconfig in /root/apps/crypto | |
mkkconfig in /root/apps/database | |
mkkconfig in /root/apps/examples/mcuboot | |
mkkconfig in /root/apps/examples/module | |
mkkconfig in /root/apps/examples/rust | |
mkkconfig in /root/apps/examples/sotest | |
mkkconfig in /root/apps/examples | |
mkkconfig in /root/apps/fsutils | |
mkkconfig in /root/apps/games | |
mkkconfig in /root/apps/graphics | |
mkkconfig in /root/apps/industry | |
mkkconfig in /root/apps/inertial | |
mkkconfig in /root/apps/interpreters/luamodules | |
mkkconfig in /root/apps/interpreters | |
mkkconfig in /root/apps/logging | |
mkkconfig in /root/apps/lte | |
mkkconfig in /root/apps/math | |
mkkconfig in /root/apps/mlearning | |
mkkconfig in /root/apps/netutils | |
mkkconfig in /root/apps/sdr | |
mkkconfig in /root/apps/system | |
mkkconfig in /root/apps/testing/arch | |
mkkconfig in /root/apps/testing/cxx | |
mkkconfig in /root/apps/testing/drivers | |
mkkconfig in /root/apps/testing/fs | |
mkkconfig in /root/apps/testing/libc | |
mkkconfig in /root/apps/testing/mm | |
mkkconfig in /root/apps/testing/sched | |
mkkconfig in /root/apps/testing | |
mkkconfig in /root/apps/videoutils | |
mkkconfig in /root/apps/wireless/bluetooth | |
mkkconfig in /root/apps/wireless/ieee802154 | |
mkkconfig in /root/apps/wireless | |
mkkconfig in /root/apps | |
Loaded configuration '.config' | |
Configuration saved to '.config' | |
root@c23ff7fbe548:~/nuttx# make -j | |
Create version.h | |
CPP: gnu-elf.ld.in-> gnu-elf.ld Downloading: https://github.com/python/cpython/archive/v3.13.0.zip | |
LN: platform/board to /root/apps/platform/dummy | |
Downloading: libmetal.zip Downloading argtable3-3.2.0.7402e6e | |
Downloading: zlib13.zip | |
argtable3/src | |
v3.2.0.7402e6e.tar.gz--argtable3 | |
% Total % Received % Xferd Average Speed Time Time Time Current | |
Dload Upload Total Spent Left Speed | |
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 % Total % Received % Xferd Average Speed Time Time Time Current | |
Dload Upload Total Spent Left Speed | |
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 | |
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 | |
100 496k 100 496k 0 0 919k 0 --:--:-- --:--:-- --:--:-- 919k | |
Archive: libmetal.zip | |
a4bce3507502a7eb9e29bafe0eb174ed5c4316e9 | |
creating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/ | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/.checkpatch.conf | |
creating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/.github/ | |
creating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/.github/actions/ | |
creating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/.github/actions/build_ci/ | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/.github/actions/build_ci/Dockerfile | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/.github/actions/build_ci/README.md | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/.github/actions/build_ci/action.yml | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/.github/actions/build_ci/entrypoint.sh | |
creating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/.github/workflows/ | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/.github/workflows/compliance.yml | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/.github/workflows/continuous-integration.yml | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/.github/workflows/heathcheck.yml | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/.github/workflows/stales.yml | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/.gitignore | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/.gitlint | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/.readthedocs.yaml | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/CMakeLists.txt | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/LICENSE.md | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/MAINTAINERS.md | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/README.md | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/VERSION | |
creating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/cmake/ | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/cmake/collect.cmake | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/cmake/depends.cmake | |
creating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/cmake/modules/ | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/cmake/modules/FindHugeTLBFS.cmake | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/cmake/modules/FindLibRt.cmake | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/cmake/modules/FindLibSysFS.cmake | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/cmake/options.cmake | |
creating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/cmake/platforms/ | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/cmake/platforms/cross-freertos-gcc.cmake | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/cmake/platforms/cross-generic-gcc.cmake | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/cmake/platforms/cross-generic-iar.cmake | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/cmake/platforms/cross-linux-gcc.cmake | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/cmake/platforms/microblaze-generic.cmake | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/cmake/platforms/template-freertos.cmake | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/cmake/platforms/template-generic.cmake | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/cmake/platforms/zynq7-freertos.cmake | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/cmake/platforms/zynq7-generic-iar.cmake | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/cmake/platforms/zynq7-generic.cmake | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/cmake/platforms/zynq7-linux.cmake | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/cmake/platforms/zynqmp-a53-freertos.cmake | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/cmake/platforms/zynqmp-a53-generic.cmake | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/cmake/platforms/zynqmp-linux.cmake | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/cmake/platforms/zynqmp-r5-freertos.cmake | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/cmake/platforms/zynqmp-r5-generic.cmake | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/cmake/syscheck.cmake | |
creating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/doc/ | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/doc/CMakeLists.txt | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/doc/Doxyfile.in | |
creating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/examples/ | |
extracting: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/examples/CMakeLists.txt | |
creating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/examples/system/ | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/examples/system/CMakeLists.txt | |
creating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/examples/system/freertos/ | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/examples/system/freertos/CMakeLists.txt | |
creating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/examples/system/freertos/xlnx_r5/ | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/examples/system/freertos/xlnx_r5/CMakeLists.txt | |
creating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/examples/system/freertos/xlnx_r5/amp_demo/ | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/examples/system/freertos/xlnx_r5/amp_demo/CMakeLists.txt | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/examples/system/freertos/xlnx_r5/amp_demo/common.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/examples/system/freertos/xlnx_r5/amp_demo/ipi_latency_demod.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/examples/system/freertos/xlnx_r5/amp_demo/ipi_shmem_demod.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/examples/system/freertos/xlnx_r5/amp_demo/libmetal_amp_demod.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/examples/system/freertos/xlnx_r5/amp_demo/lscript.ld | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/examples/system/freertos/xlnx_r5/amp_demo/platform_config.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/examples/system/freertos/xlnx_r5/amp_demo/shmem_atomic_demod.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/examples/system/freertos/xlnx_r5/amp_demo/shmem_demod.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/examples/system/freertos/xlnx_r5/amp_demo/shmem_latency_demod.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/examples/system/freertos/xlnx_r5/amp_demo/shmem_throughput_demod.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/examples/system/freertos/xlnx_r5/amp_demo/sys_init.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/examples/system/freertos/xlnx_r5/amp_demo/sys_init.h | |
creating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/examples/system/generic/ | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/examples/system/generic/CMakeLists.txt | |
creating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/examples/system/generic/xlnx_r5/ | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/examples/system/generic/xlnx_r5/CMakeLists.txt | |
creating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/examples/system/generic/xlnx_r5/amp_demo/ | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/examples/system/generic/xlnx_r5/amp_demo/CMakeLists.txt | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/examples/system/generic/xlnx_r5/amp_demo/common.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/examples/system/generic/xlnx_r5/amp_demo/ipi_latency_demod.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/examples/system/generic/xlnx_r5/amp_demo/ipi_shmem_demod.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/examples/system/generic/xlnx_r5/amp_demo/libmetal_amp_demod.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/examples/system/generic/xlnx_r5/amp_demo/lscript.ld | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/examples/system/generic/xlnx_r5/amp_demo/platform_config.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/examples/system/generic/xlnx_r5/amp_demo/shmem_atomic_demod.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/examples/system/generic/xlnx_r5/amp_demo/shmem_demod.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/examples/system/generic/xlnx_r5/amp_demo/shmem_latency_demod.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/examples/system/generic/xlnx_r5/amp_demo/shmem_throughput_demod.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/examples/system/generic/xlnx_r5/amp_demo/sys_init.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/examples/system/generic/xlnx_r5/amp_demo/sys_init.h | |
creating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/examples/system/linux/ | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/examples/system/linux/CMakeLists.txt | |
creating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/examples/system/linux/xlnx/ | |
extracting: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/examples/system/linux/xlnx/CMakeLists.txt | |
creating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/examples/system/linux/xlnx/zynqmp_amp_demo/ | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/examples/system/linux/xlnx/zynqmp_amp_demo/CMakeLists.txt | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/examples/system/linux/xlnx/zynqmp_amp_demo/common.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/examples/system/linux/xlnx/zynqmp_amp_demo/ipi_latency_demo.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/examples/system/linux/xlnx/zynqmp_amp_demo/ipi_shmem_demo.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/examples/system/linux/xlnx/zynqmp_amp_demo/libmetal_amp_demo.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/examples/system/linux/xlnx/zynqmp_amp_demo/libmetal_amp_demod.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/examples/system/linux/xlnx/zynqmp_amp_demo/shmem_atomic_demo.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/examples/system/linux/xlnx/zynqmp_amp_demo/shmem_demo.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/examples/system/linux/xlnx/zynqmp_amp_demo/shmem_latency_demo.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/examples/system/linux/xlnx/zynqmp_amp_demo/shmem_throughput_demo.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/examples/system/linux/xlnx/zynqmp_amp_demo/sys_init.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/examples/system/linux/xlnx/zynqmp_amp_demo/sys_init.h | |
creating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/ | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/CMakeLists.txt | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/alloc.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/assert.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/atomic.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/cache.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/compiler.h | |
creating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/compiler/ | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/compiler/CMakeLists.txt | |
creating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/compiler/armcc/ | |
extracting: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/compiler/armcc/CMakeLists.txt | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/compiler/armcc/errno.h | |
creating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/compiler/gcc/ | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/compiler/gcc/CMakeLists.txt | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/compiler/gcc/atomic.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/compiler/gcc/compiler.h | |
creating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/compiler/iar/ | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/compiler/iar/CMakeLists.txt | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/compiler/iar/compiler.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/compiler/iar/errno.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/condition.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/config.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/cpu.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/device.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/device.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/dma.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/dma.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/errno.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/init.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/io.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/io.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/irq.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/irq.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/irq_controller.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/list.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/log.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/log.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/mutex.h | |
creating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/processor/ | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/processor/CMakeLists.txt | |
creating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/processor/aarch64/ | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/processor/aarch64/cpu.h | |
creating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/processor/ceva/ | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/processor/ceva/cpu.h | |
creating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/processor/generic/ | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/processor/generic/atomic.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/processor/generic/cpu.h | |
creating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/processor/hosted/ | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/processor/hosted/cpu.h | |
creating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/processor/x86/ | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/processor/x86/cpu.h | |
creating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/processor/x86_64/ | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/processor/x86_64/cpu.h | |
creating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/processor/xtensa/ | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/processor/xtensa/cpu.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/shmem.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/shmem.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/sleep.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/softirq.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/softirq.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/spinlock.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/sys.h | |
creating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/ | |
extracting: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/CMakeLists.txt | |
creating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/freertos/ | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/freertos/CMakeLists.txt | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/freertos/alloc.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/freertos/assert.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/freertos/cache.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/freertos/condition.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/freertos/condition.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/freertos/device.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/freertos/init.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/freertos/io.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/freertos/io.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/freertos/irq.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/freertos/irq.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/freertos/log.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/freertos/mutex.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/freertos/shmem.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/freertos/sleep.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/freertos/sys.h | |
creating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/freertos/template/ | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/freertos/template/CMakeLists.txt | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/freertos/template/sys.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/freertos/template/sys.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/freertos/time.c | |
creating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/freertos/xlnx/ | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/freertos/xlnx/CMakeLists.txt | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/freertos/xlnx/irq.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/freertos/xlnx/sys.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/freertos/xlnx/sys.h | |
creating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/generic/ | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/generic/CMakeLists.txt | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/generic/alloc.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/generic/assert.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/generic/cache.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/generic/condition.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/generic/condition.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/generic/device.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/generic/init.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/generic/io.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/generic/io.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/generic/irq.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/generic/irq.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/generic/log.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/generic/mutex.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/generic/shmem.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/generic/sleep.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/generic/sys.h | |
creating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/generic/template/ | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/generic/template/CMakeLists.txt | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/generic/template/sys.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/generic/template/sys.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/generic/time.c | |
creating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/generic/xlnx/ | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/generic/xlnx/CMakeLists.txt | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/generic/xlnx/irq.c | |
creating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/generic/xlnx/microblaze_generic/ | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/generic/xlnx/microblaze_generic/CMakeLists.txt | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/generic/xlnx/microblaze_generic/sys.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/generic/xlnx/sys.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/generic/xlnx/sys.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/generic/xlnx/sys_devicetree.h | |
creating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/linux/ | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/linux/CMakeLists.txt | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/linux/alloc.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/linux/assert.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/linux/cache.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/linux/condition.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/linux/condition.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/linux/device.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/linux/init.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/linux/io.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/linux/irq.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/linux/irq.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/linux/log.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/linux/mutex.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/linux/shmem.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/linux/sleep.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/linux/sys.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/linux/time.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/linux/utilities.c | |
creating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/nuttx/ | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/nuttx/CMakeLists.txt | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/nuttx/alloc.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/nuttx/assert.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/nuttx/cache.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/nuttx/condition.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/nuttx/condition.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/nuttx/device.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/nuttx/init.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/nuttx/io.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/nuttx/io.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/nuttx/irq.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/nuttx/irq.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/nuttx/log.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/nuttx/mutex.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/nuttx/shmem.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/nuttx/sleep.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/nuttx/sys.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/nuttx/time.c | |
creating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/zephyr/ | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/zephyr/CMakeLists.txt | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/zephyr/alloc.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/zephyr/alloc.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/zephyr/assert.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/zephyr/cache.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/zephyr/condition.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/zephyr/condition.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/zephyr/device.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/zephyr/init.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/zephyr/io.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/zephyr/irq.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/zephyr/irq.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/zephyr/log.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/zephyr/log.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/zephyr/mutex.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/zephyr/shmem.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/zephyr/sleep.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/zephyr/sys.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/zephyr/sys.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/system/zephyr/time.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/time.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/utilities.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/version.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/lib/version.h | |
creating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/scripts/ | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/scripts/checkpatch.pl | |
creating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/scripts/ci/ | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/scripts/ci/check_compliance.py | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/scripts/do_checkpatch.sh | |
creating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/scripts/gitlint/ | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/scripts/gitlint/commit_rules.py | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/scripts/spelling.txt | |
creating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/ | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/CMakeLists.txt | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/metal-header-template.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/metal-test.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/metal-test.h | |
creating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/system/ | |
extracting: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/system/CMakeLists.txt | |
creating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/system/freertos/ | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/system/freertos/CMakeLists.txt | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/system/freertos/alloc.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/system/freertos/atomic.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/system/freertos/irq.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/system/freertos/main.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/system/freertos/mutex.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/system/freertos/sleep.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/system/freertos/threads.c | |
creating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/system/freertos/zynq7/ | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/system/freertos/zynq7/CMakeLists.txt | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/system/freertos/zynq7/Xilinx.spec | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/system/freertos/zynq7/lscript.ld | |
creating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/system/freertos/zynqmp_a53/ | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/system/freertos/zynqmp_a53/CMakeLists.txt | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/system/freertos/zynqmp_a53/lscript.ld | |
creating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/system/freertos/zynqmp_r5/ | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/system/freertos/zynqmp_r5/CMakeLists.txt | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/system/freertos/zynqmp_r5/lscript.ld | |
creating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/system/generic/ | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/system/generic/CMakeLists.txt | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/system/generic/alloc.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/system/generic/atomic.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/system/generic/irq.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/system/generic/main.c | |
creating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/system/generic/microblaze_generic/ | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/system/generic/microblaze_generic/CMakeLists.txt | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/system/generic/microblaze_generic/helper.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/system/generic/microblaze_generic/lscript.ld | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/system/generic/microblaze_generic/platform.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/system/generic/microblaze_generic/platform.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/system/generic/mutex.c | |
creating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/system/generic/zynq7/ | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/system/generic/zynq7/CMakeLists.txt | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/system/generic/zynq7/Xilinx.spec | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/system/generic/zynq7/helper.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/system/generic/zynq7/lscript.ld | |
creating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/system/generic/zynqmp_a53/ | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/system/generic/zynqmp_a53/CMakeLists.txt | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/system/generic/zynqmp_a53/helper.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/system/generic/zynqmp_a53/lscript.ld | |
creating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/system/generic/zynqmp_r5/ | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/system/generic/zynqmp_r5/CMakeLists.txt | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/system/generic/zynqmp_r5/helper.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/system/generic/zynqmp_r5/lscript.ld | |
creating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/system/linux/ | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/system/linux/CMakeLists.txt | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/system/linux/alloc.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/system/linux/atomic.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/system/linux/condition.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/system/linux/irq.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/system/linux/main.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/system/linux/mutex.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/system/linux/shmem.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/system/linux/spinlock.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/system/linux/threads.c | |
creating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/system/linux/zynq/ | |
extracting: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/system/linux/zynq/CMakeLists.txt | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/system/linux/zynq/device.c | |
creating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/system/zephyr/ | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/system/zephyr/CMakeLists.txt | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/system/zephyr/alloc.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/system/zephyr/atomic.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/system/zephyr/main.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/system/zephyr/metal-test-internal.h | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/system/zephyr/mutex.c | |
inflating: libmetal-a4bce3507502a7eb9e29bafe0eb174ed5c4316e9/test/version.c | |
patching file libmetal/lib/errno.h | |
patching file libmetal/lib/io.h | |
patching file libmetal/lib/atomic.h | |
patching file libmetal/lib/system/nuttx/cache.h | |
patching file libmetal/lib/system/nuttx/device.c | |
patching file libmetal/lib/system/nuttx/init.c | |
patching file libmetal/lib/system/nuttx/io.c | |
patching file libmetal/lib/system/nuttx/io.h | |
patching file libmetal/cmake/depends.cmake | |
patching file libmetal/lib/system/nuttx/io.c | |
100 1590k 100 1590k 0 0 917k 0 0:00:01 0:00:01 --:--:-- 21.2M | |
Archive: zlib13.zip | |
creating: zlib-1.3/ | |
inflating: zlib-1.3/adler32.c | |
creating: zlib-1.3/amiga/ | |
inflating: zlib-1.3/amiga/Makefile.pup | |
inflating: zlib-1.3/amiga/Makefile.sas | |
inflating: zlib-1.3/ChangeLog | |
inflating: zlib-1.3/CMakeLists.txt | |
inflating: zlib-1.3/compress.c | |
inflating: zlib-1.3/configure | |
creating: zlib-1.3/contrib/ | |
creating: zlib-1.3/contrib/ada/ | |
inflating: zlib-1.3/contrib/ada/buffer_demo.adb | |
inflating: zlib-1.3/contrib/ada/mtest.adb | |
inflating: zlib-1.3/contrib/ada/read.adb | |
inflating: zlib-1.3/contrib/ada/readme.txt | |
inflating: zlib-1.3/contrib/ada/test.adb | |
inflating: zlib-1.3/contrib/ada/zlib-streams.adb | |
inflating: zlib-1.3/contrib/ada/zlib-streams.ads | |
inflating: zlib-1.3/contrib/ada/zlib-thin.adb | |
inflating: zlib-1.3/contrib/ada/zlib-thin.ads | |
inflating: zlib-1.3/contrib/ada/zlib.adb | |
inflating: zlib-1.3/contrib/ada/zlib.ads | |
inflating: zlib-1.3/contrib/ada/zlib.gpr | |
creating: zlib-1.3/contrib/blast/ | |
inflating: zlib-1.3/contrib/blast/blast.c | |
inflating: zlib-1.3/contrib/blast/blast.h | |
inflating: zlib-1.3/contrib/blast/Makefile | |
inflating: zlib-1.3/contrib/blast/README | |
extracting: zlib-1.3/contrib/blast/test.pk | |
inflating: zlib-1.3/contrib/blast/test.txt | |
creating: zlib-1.3/contrib/delphi/ | |
inflating: zlib-1.3/contrib/delphi/readme.txt | |
inflating: zlib-1.3/contrib/delphi/ZLib.pas | |
inflating: zlib-1.3/contrib/delphi/ZLibConst.pas | |
inflating: zlib-1.3/contrib/delphi/zlibd32.mak | |
creating: zlib-1.3/contrib/dotzlib/ | |
creating: zlib-1.3/contrib/dotzlib/DotZLib/ | |
inflating: zlib-1.3/contrib/dotzlib/DotZLib/AssemblyInfo.cs | |
inflating: zlib-1.3/contrib/dotzlib/DotZLib/ChecksumImpl.cs | |
inflating: zlib-1.3/contrib/dotzlib/DotZLib/CircularBuffer.cs | |
inflating: zlib-1.3/contrib/dotzlib/DotZLib/CodecBase.cs | |
inflating: zlib-1.3/contrib/dotzlib/DotZLib/Deflater.cs | |
inflating: zlib-1.3/contrib/dotzlib/DotZLib/DotZLib.cs | |
inflating: zlib-1.3/contrib/dotzlib/DotZLib/DotZLib.csproj | |
inflating: zlib-1.3/contrib/dotzlib/DotZLib/GZipStream.cs | |
inflating: zlib-1.3/contrib/dotzlib/DotZLib/Inflater.cs | |
inflating: zlib-1.3/contrib/dotzlib/DotZLib/UnitTests.cs | |
inflating: zlib-1.3/contrib/dotzlib/DotZLib.build | |
inflating: zlib-1.3/contrib/dotzlib/DotZLib.chm | |
inflating: zlib-1.3/contrib/dotzlib/DotZLib.sln | |
inflating: zlib-1.3/contrib/dotzlib/LICENSE_1_0.txt | |
inflating: zlib-1.3/contrib/dotzlib/readme.txt | |
creating: zlib-1.3/contrib/gcc_gvmat64/ | |
inflating: zlib-1.3/contrib/gcc_gvmat64/gvmat64.S | |
creating: zlib-1.3/contrib/infback9/ | |
inflating: zlib-1.3/contrib/infback9/infback9.c | |
inflating: zlib-1.3/contrib/infback9/infback9.h | |
inflating: zlib-1.3/contrib/infback9/inffix9.h | |
inflating: zlib-1.3/contrib/infback9/inflate9.h | |
inflating: zlib-1.3/contrib/infback9/inftree9.c | |
inflating: zlib-1.3/contrib/infback9/inftree9.h | |
inflating: zlib-1.3/contrib/infback9/README | |
creating: zlib-1.3/contrib/iostream/ | |
inflating: zlib-1.3/contrib/iostream/test.cpp | |
inflating: zlib-1.3/contrib/iostream/zfstream.cpp | |
inflating: zlib-1.3/contrib/iostream/zfstream.h | |
creating: zlib-1.3/contrib/iostream2/ | |
inflating: zlib-1.3/contrib/iostream2/zstream.h | |
inflating: zlib-1.3/contrib/iostream2/zstream_test.cpp | |
creating: zlib-1.3/contrib/iostream3/ | |
inflating: zlib-1.3/contrib/iostream3/README | |
inflating: zlib-1.3/contrib/iostream3/test.cc | |
inflating: zlib-1.3/contrib/iostream3/TODO | |
inflating: zlib-1.3/contrib/iostream3/zfstream.cc | |
inflating: zlib-1.3/contrib/iostream3/zfstream.h | |
creating: zlib-1.3/contrib/minizip/ | |
inflating: zlib-1.3/contrib/minizip/configure.ac | |
inflating: zlib-1.3/contrib/minizip/crypt.h | |
inflating: zlib-1.3/contrib/minizip/ioapi.c | |
inflating: zlib-1.3/contrib/minizip/ioapi.h | |
inflating: zlib-1.3/contrib/minizip/iowin32.c | |
inflating: zlib-1.3/contrib/minizip/iowin32.h | |
inflating: zlib-1.3/contrib/minizip/Makefile | |
inflating: zlib-1.3/contrib/minizip/Makefile.am | |
inflating: zlib-1.3/contrib/minizip/make_vms.com | |
inflating: zlib-1.3/contrib/minizip/miniunz.c | |
inflating: zlib-1.3/contrib/minizip/miniunzip.1 | |
inflating: zlib-1.3/contrib/minizip/minizip.1 | |
inflating: zlib-1.3/contrib/minizip/minizip.c | |
inflating: zlib-1.3/contrib/minizip/minizip.pc.in | |
inflating: zlib-1.3/contrib/minizip/MiniZip64_Changes.txt | |
inflating: zlib-1.3/contrib/minizip/MiniZip64_info.txt | |
inflating: zlib-1.3/contrib/minizip/mztools.c | |
inflating: zlib-1.3/contrib/minizip/mztools.h | |
inflating: zlib-1.3/contrib/minizip/unzip.c | |
inflating: zlib-1.3/contrib/minizip/unzip.h | |
inflating: zlib-1.3/contrib/minizip/zip.c | |
inflating: zlib-1.3/contrib/minizip/zip.h | |
creating: zlib-1.3/contrib/pascal/ | |
inflating: zlib-1.3/contrib/pascal/example.pas | |
inflating: zlib-1.3/contrib/pascal/readme.txt | |
inflating: zlib-1.3/contrib/pascal/zlibd32.mak | |
inflating: zlib-1.3/contrib/pascal/zlibpas.pas | |
creating: zlib-1.3/contrib/puff/ | |
inflating: zlib-1.3/contrib/puff/Makefile | |
inflating: zlib-1.3/contrib/puff/puff.c | |
inflating: zlib-1.3/contrib/puff/puff.h | |
inflating: zlib-1.3/contrib/puff/pufftest.c | |
inflating: zlib-1.3/contrib/puff/README | |
inflating: zlib-1.3/contrib/puff/zeros.raw | |
inflating: zlib-1.3/contrib/README.contrib | |
creating: zlib-1.3/contrib/testzlib/ | |
inflating: zlib-1.3/contrib/testzlib/testzlib.c | |
inflating: zlib-1.3/contrib/testzlib/testzlib.txt | |
creating: zlib-1.3/contrib/untgz/ | |
inflating: zlib-1.3/contrib/untgz/Makefile | |
inflating: zlib-1.3/contrib/untgz/Makefile.msc | |
inflating: zlib-1.3/contrib/untgz/untgz.c | |
creating: zlib-1.3/contrib/vstudio/ | |
inflating: zlib-1.3/contrib/vstudio/readme.txt | |
creating: zlib-1.3/contrib/vstudio/vc10/ | |
inflating: zlib-1.3/contrib/vstudio/vc10/miniunz.vcxproj | |
inflating: zlib-1.3/contrib/vstudio/vc10/miniunz.vcxproj.filters | |
inflating: zlib-1.3/contrib/vstudio/vc10/minizip.vcxproj | |
inflating: zlib-1.3/contrib/vstudio/vc10/minizip.vcxproj.filters | |
inflating: zlib-1.3/contrib/vstudio/vc10/testzlib.vcxproj | |
inflating: zlib-1.3/contrib/vstudio/vc10/testzlib.vcxproj.filters | |
inflating: zlib-1.3/contrib/vstudio/vc10/testzlibdll.vcxproj | |
inflating: zlib-1.3/contrib/vstudio/vc10/testzlibdll.vcxproj.filters | |
inflating: zlib-1.3/contrib/vstudio/vc10/zlib.rc | |
inflating: zlib-1.3/contrib/vstudio/vc10/zlibstat.vcxproj | |
inflating: zlib-1.3/contrib/vstudio/vc10/zlibstat.vcxproj.filters | |
inflating: zlib-1.3/contrib/vstudio/vc10/zlibvc.def | |
inflating: zlib-1.3/contrib/vstudio/vc10/zlibvc.sln | |
inflating: zlib-1.3/contrib/vstudio/vc10/zlibvc.vcxproj | |
inflating: zlib-1.3/contrib/vstudio/vc10/zlibvc.vcxproj.filters | |
creating: zlib-1.3/contrib/vstudio/vc11/ | |
inflating: zlib-1.3/contrib/vstudio/vc11/miniunz.vcxproj | |
inflating: zlib-1.3/contrib/vstudio/vc11/minizip.vcxproj | |
inflating: zlib-1.3/contrib/vstudio/vc11/testzlib.vcxproj | |
inflating: zlib-1.3/contrib/vstudio/vc11/testzlibdll.vcxproj | |
inflating: zlib-1.3/contrib/vstudio/vc11/zlib.rc | |
inflating: zlib-1.3/contrib/vstudio/vc11/zlibstat.vcxproj | |
inflating: zlib-1.3/contrib/vstudio/vc11/zlibvc.def | |
inflating: zlib-1.3/contrib/vstudio/vc11/zlibvc.sln | |
inflating: zlib-1.3/contrib/vstudio/vc11/zlibvc.vcxproj | |
creating: zlib-1.3/contrib/vstudio/vc12/ | |
inflating: zlib-1.3/contrib/vstudio/vc12/miniunz.vcxproj | |
inflating: zlib-1.3/contrib/vstudio/vc12/minizip.vcxproj | |
inflating: zlib-1.3/contrib/vstudio/vc12/testzlib.vcxproj | |
inflating: zlib-1.3/contrib/vstudio/vc12/testzlibdll.vcxproj | |
inflating: zlib-1.3/contrib/vstudio/vc12/zlib.rc | |
inflating: zlib-1.3/contrib/vstudio/vc12/zlibstat.vcxproj | |
inflating: zlib-1.3/contrib/vstudio/vc12/zlibvc.def | |
inflating: zlib-1.3/contrib/vstudio/vc12/zlibvc.sln | |
inflating: zlib-1.3/contrib/vstudio/vc12/zlibvc.vcxproj | |
creating: zlib-1.3/contrib/vstudio/vc14/ | |
inflating: zlib-1.3/contrib/vstudio/vc14/miniunz.vcxproj | |
inflating: zlib-1.3/contrib/vstudio/vc14/minizip.vcxproj | |
inflating: zlib-1.3/contrib/vstudio/vc14/testzlib.vcxproj | |
inflating: zlib-1.3/contrib/vstudio/vc14/testzlibdll.vcxproj | |
inflating: zlib-1.3/contrib/vstudio/vc14/zlib.rc | |
inflating: zlib-1.3/contrib/vstudio/vc14/zlibstat.vcxproj | |
inflating: zlib-1.3/contrib/vstudio/vc14/zlibvc.def | |
inflating: zlib-1.3/contrib/vstudio/vc14/zlibvc.sln | |
inflating: zlib-1.3/contrib/vstudio/vc14/zlibvc.vcxproj | |
creating: zlib-1.3/contrib/vstudio/vc9/ | |
inflating: zlib-1.3/contrib/vstudio/vc9/miniunz.vcproj | |
inflating: zlib-1.3/contrib/vstudio/vc9/minizip.vcproj | |
inflating: zlib-1.3/contrib/vstudio/vc9/testzlib.vcproj | |
inflating: zlib-1.3/contrib/vstudio/vc9/testzlibdll.vcproj | |
inflating: zlib-1.3/contrib/vstudio/vc9/zlib.rc | |
inflating: zlib-1.3/contrib/vstudio/vc9/zlibstat.vcproj | |
inflating: zlib-1.3/contrib/vstudio/vc9/zlibvc.def | |
inflating: zlib-1.3/contrib/vstudio/vc9/zlibvc.sln | |
inflating: zlib-1.3/contrib/vstudio/vc9/zlibvc.vcproj | |
inflating: zlib-1.3/crc32.c | |
inflating: zlib-1.3/crc32.h | |
inflating: zlib-1.3/deflate.c | |
inflating: zlib-1.3/deflate.h | |
creating: zlib-1.3/doc/ | |
inflating: zlib-1.3/doc/algorithm.txt | |
inflating: zlib-1.3/doc/crc-doc.1.0.pdf | |
inflating: zlib-1.3/doc/rfc1950.txt | |
inflating: zlib-1.3/doc/rfc1951.txt | |
inflating: zlib-1.3/doc/rfc1952.txt | |
inflating: zlib-1.3/doc/txtvsbin.txt | |
creating: zlib-1.3/examples/ | |
inflating: zlib-1.3/examples/enough.c | |
inflating: zlib-1.3/examples/fitblk.c | |
inflating: zlib-1.3/examples/gun.c | |
inflating: zlib-1.3/examples/gzappend.c | |
inflating: zlib-1.3/examples/gzjoin.c | |
inflating: zlib-1.3/examples/gzlog.c | |
inflating: zlib-1.3/examples/gzlog.h | |
inflating: zlib-1.3/examples/gznorm.c | |
inflating: zlib-1.3/examples/README.examples | |
inflating: zlib-1.3/examples/zlib_how.html | |
inflating: zlib-1.3/examples/zpipe.c | |
inflating: zlib-1.3/examples/zran.c | |
inflating: zlib-1.3/examples/zran.h | |
inflating: zlib-1.3/FAQ | |
inflating: zlib-1.3/gzclose.c | |
inflating: zlib-1.3/gzguts.h | |
inflating: zlib-1.3/gzlib.c | |
inflating: zlib-1.3/gzread.c | |
inflating: zlib-1.3/gzwrite.c | |
inflating: zlib-1.3/INDEX | |
inflating: zlib-1.3/infback.c | |
inflating: zlib-1.3/inffast.c | |
inflating: zlib-1.3/inffast.h | |
inflating: zlib-1.3/inffixed.h | |
inflating: zlib-1.3/inflate.c | |
inflating: zlib-1.3/inflate.h | |
inflating: zlib-1.3/inftrees.c | |
inflating: zlib-1.3/inftrees.h | |
inflating: zlib-1.3/LICENSE | |
inflating: zlib-1.3/Makefile | |
inflating: zlib-1.3/Makefile.in | |
inflating: zlib-1.3/make_vms.com | |
creating: zlib-1.3/msdos/ | |
inflating: zlib-1.3/msdos/Makefile.bor | |
inflating: zlib-1.3/msdos/Makefile.dj2 | |
inflating: zlib-1.3/msdos/Makefile.emx | |
inflating: zlib-1.3/msdos/Makefile.msc | |
inflating: zlib-1.3/msdos/Makefile.tc | |
creating: zlib-1.3/nintendods/ | |
inflating: zlib-1.3/nintendods/Makefile | |
inflating: zlib-1.3/nintendods/README | |
creating: zlib-1.3/old/ | |
inflating: zlib-1.3/old/descrip.mms | |
inflating: zlib-1.3/old/Makefile.emx | |
inflating: zlib-1.3/old/Makefile.riscos | |
creating: zlib-1.3/old/os2/ | |
inflating: zlib-1.3/old/os2/Makefile.os2 | |
inflating: zlib-1.3/old/os2/zlib.def | |
inflating: zlib-1.3/old/README | |
inflating: zlib-1.3/old/visual-basic.txt | |
creating: zlib-1.3/os400/ | |
inflating: zlib-1.3/os400/bndsrc | |
inflating: zlib-1.3/os400/make.sh | |
inflating: zlib-1.3/os400/README400 | |
inflating: zlib-1.3/os400/zlib.inc | |
creating: zlib-1.3/qnx/ | |
inflating: zlib-1.3/qnx/package.qpg | |
inflating: zlib-1.3/README | |
creating: zlib-1.3/test/ | |
inflating: zlib-1.3/test/example.c | |
inflating: zlib-1.3/test/infcover.c | |
inflating: zlib-1.3/test/minigzip.c | |
inflating: zlib-1.3/treebuild.xml | |
inflating: zlib-1.3/trees.c | |
inflating: zlib-1.3/trees.h | |
inflating: zlib-1.3/uncompr.c | |
creating: zlib-1.3/watcom/ | |
inflating: zlib-1.3/watcom/watcom_f.mak | |
inflating: zlib-1.3/watcom/watcom_l.mak | |
creating: zlib-1.3/win32/ | |
inflating: zlib-1.3/win32/DLL_FAQ.txt | |
inflating: zlib-1.3/win32/Makefile.bor | |
inflating: zlib-1.3/win32/Makefile.gcc | |
inflating: zlib-1.3/win32/Makefile.msc | |
inflating: zlib-1.3/win32/README-WIN32.txt | |
inflating: zlib-1.3/win32/VisualC.txt | |
inflating: zlib-1.3/win32/zlib.def | |
inflating: zlib-1.3/win32/zlib1.rc | |
inflating: zlib-1.3/zconf.h | |
inflating: zlib-1.3/zconf.h.cmakein | |
inflating: zlib-1.3/zconf.h.in | |
inflating: zlib-1.3/zlib.3 | |
inflating: zlib-1.3/zlib.3.pdf | |
inflating: zlib-1.3/zlib.h | |
inflating: zlib-1.3/zlib.map | |
inflating: zlib-1.3/zlib.pc.cmakein | |
inflating: zlib-1.3/zlib.pc.in | |
inflating: zlib-1.3/zutil.c | |
inflating: zlib-1.3/zutil.h | |
Archive: open-amp.zip | |
c468328487a1e0596307a5ef7172756819e15745 | |
creating: open-amp-c468328487a1e0596307a5ef7172756819e15745/ | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/.checkpatch.conf | |
creating: open-amp-c468328487a1e0596307a5ef7172756819e15745/.github/ | |
creating: open-amp-c468328487a1e0596307a5ef7172756819e15745/.github/actions/ | |
creating: open-amp-c468328487a1e0596307a5ef7172756819e15745/.github/actions/build_ci/ | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/.github/actions/build_ci/Dockerfile | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/.github/actions/build_ci/README.md | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/.github/actions/build_ci/action.yml | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/.github/actions/build_ci/entrypoint.sh | |
creating: open-amp-c468328487a1e0596307a5ef7172756819e15745/.github/workflows/ | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/.github/workflows/compliance.yml | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/.github/workflows/continuous-integration.yml | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/.github/workflows/stales.yml | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/.gitignore | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/.gitlint | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/.readthedocs.yaml | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/.travis.yml | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/CMakeLists.txt | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/Doxyfile | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/LICENSE.md | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/MAINTAINERS.md | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/README.md | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/VERSION | |
creating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/ | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/CMakeLists.txt | |
creating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/examples/ | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/examples/CMakeLists.txt | |
creating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/examples/echo/ | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/examples/echo/CMakeLists.txt | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/examples/echo/rpmsg-echo.c | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/examples/echo/rpmsg-echo.h | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/examples/echo/rpmsg-ping.c | |
creating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/examples/linux_rpc_demo/ | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/examples/linux_rpc_demo/CMakeLists.txt | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/examples/linux_rpc_demo/README.md | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/examples/linux_rpc_demo/linux-rpmsg-rpc-demo.h | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/examples/linux_rpc_demo/linux_rpc_demo.c | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/examples/linux_rpc_demo/linux_rpc_demod.c | |
creating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/examples/load_fw/ | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/examples/load_fw/CMakeLists.txt | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/examples/load_fw/common.h | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/examples/load_fw/load_fw.c | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/examples/load_fw/lscript.ld | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/examples/load_fw/mem_image_store.c | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/examples/load_fw/platform_info.c | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/examples/load_fw/platform_info.h | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/examples/load_fw/zynqmp_apu_lcm_rproc_example.c | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/examples/load_fw/zynqmp_r5_lcm_rproc_example.c | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/examples/load_fw/zynqmp_rpu_lcm_rproc_example.c | |
creating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/examples/matrix_multiply/ | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/examples/matrix_multiply/CMakeLists.txt | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/examples/matrix_multiply/matrix_multiply.c | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/examples/matrix_multiply/matrix_multiply.h | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/examples/matrix_multiply/matrix_multiplyd.c | |
creating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/examples/nocopy_echo/ | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/examples/nocopy_echo/CMakeLists.txt | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/examples/nocopy_echo/rpmsg-echo.h | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/examples/nocopy_echo/rpmsg-nocopy-echo.c | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/examples/nocopy_echo/rpmsg-nocopy-ping.c | |
creating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/examples/rpc_demo/ | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/examples/rpc_demo/CMakeLists.txt | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/examples/rpc_demo/rpc_demo.c | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/examples/rpc_demo/rpc_demod.c | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/examples/rpc_demo/rpmsg-rpc-demo.h | |
creating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/examples/rpmsg_sample_echo/ | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/examples/rpmsg_sample_echo/CMakeLists.txt | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/examples/rpmsg_sample_echo/rpmsg-sample-echo.c | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/examples/rpmsg_sample_echo/rpmsg-sample-ping.c | |
creating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/include/ | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/include/platform_info_common.h | |
creating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/machine/ | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/machine/CMakeLists.txt | |
creating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/machine/microblaze_generic/ | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/machine/microblaze_generic/CMakeLists.txt | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/machine/microblaze_generic/README.md | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/machine/microblaze_generic/platform_info.c | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/machine/microblaze_generic/platform_info.h | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/machine/microblaze_generic/rsc_table.c | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/machine/microblaze_generic/rsc_table.h | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/machine/microblaze_generic/zynqmp_mb_a53_rproc.c | |
creating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/machine/zynq7/ | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/machine/zynq7/CMakeLists.txt | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/machine/zynq7/platform_info.c | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/machine/zynq7/platform_info.h | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/machine/zynq7/platform_info_remoteproc_master.c | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/machine/zynq7/rsc_table.c | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/machine/zynq7/rsc_table.h | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/machine/zynq7/zynq_a9_rproc.c | |
creating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/machine/zynqmp/ | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/machine/zynqmp/CMakeLists.txt | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/machine/zynqmp/openamp-linux-userspace.dtsi | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/machine/zynqmp/platform_info.c | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/machine/zynqmp/platform_info.h | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/machine/zynqmp/zynqmp_linux_r5_proc.c | |
creating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/machine/zynqmp_r5/ | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/machine/zynqmp_r5/CMakeLists.txt | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/machine/zynqmp_r5/platform_info.c | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/machine/zynqmp_r5/platform_info.h | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/machine/zynqmp_r5/rsc_table.c | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/machine/zynqmp_r5/rsc_table.h | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/machine/zynqmp_r5/zynqmp_r5_a53_rproc.c | |
creating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/system/ | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/system/CMakeLists.txt | |
creating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/system/generic/ | |
extracting: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/system/generic/CMakeLists.txt | |
creating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/system/generic/machine/ | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/system/generic/machine/CMakeLists.txt | |
creating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/system/generic/machine/microblaze_generic/ | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/system/generic/machine/microblaze_generic/CMakeLists.txt | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/system/generic/machine/microblaze_generic/helper.c | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/system/generic/machine/microblaze_generic/linker_remote.ld | |
creating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/system/generic/machine/zynq7/ | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/system/generic/machine/zynq7/CMakeLists.txt | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/system/generic/machine/zynq7/Xilinx.spec | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/system/generic/machine/zynq7/helper.c | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/system/generic/machine/zynq7/linker_master.ld | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/system/generic/machine/zynq7/linker_remote.ld | |
creating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/system/generic/machine/zynqmp_r5/ | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/system/generic/machine/zynqmp_r5/CMakeLists.txt | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/system/generic/machine/zynqmp_r5/helper.c | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/system/generic/machine/zynqmp_r5/linker_large_text.ld | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/system/generic/machine/zynqmp_r5/linker_remote.ld | |
creating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/system/linux/ | |
extracting: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/system/linux/CMakeLists.txt | |
creating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/system/linux/machine/ | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/system/linux/machine/CMakeLists.txt | |
creating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/system/linux/machine/generic/ | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/system/linux/machine/generic/CMakeLists.txt | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/system/linux/machine/generic/helper.c | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/system/linux/machine/generic/platform_info.c | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/system/linux/machine/generic/platform_info.h | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/system/linux/machine/generic/rsc_table.c | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/system/linux/machine/generic/rsc_table.h | |
creating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/system/linux/machine/zynqmp/ | |
extracting: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/system/linux/machine/zynqmp/CMakeLists.txt | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/system/linux/machine/zynqmp/helper.c | |
creating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/tests/ | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/tests/CMakeLists.txt | |
creating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/tests/msg/ | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/tests/msg/CMakeLists.txt | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/tests/msg/rpmsg-flood-ping.c | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/tests/msg/rpmsg-nocopy-echo.c | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/tests/msg/rpmsg-nocopy-ping.c | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/tests/msg/rpmsg-ping.c | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/tests/msg/rpmsg-ping.h | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/apps/tests/msg/rpmsg-update.c | |
creating: open-amp-c468328487a1e0596307a5ef7172756819e15745/cmake/ | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/cmake/collect.cmake | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/cmake/depends.cmake | |
creating: open-amp-c468328487a1e0596307a5ef7172756819e15745/cmake/modules/ | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/cmake/modules/FindLibmetal.cmake | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/cmake/options.cmake | |
creating: open-amp-c468328487a1e0596307a5ef7172756819e15745/cmake/platforms/ | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/cmake/platforms/cross_generic_gcc.cmake | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/cmake/platforms/cross_linux_gcc.cmake | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/cmake/platforms/zynq7_generic.cmake | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/cmake/platforms/zynq7_linux.cmake | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/cmake/platforms/zynqmp_a53_generic.cmake | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/cmake/platforms/zynqmp_linux.cmake | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/cmake/platforms/zynqmp_r5_generic.cmake | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/cmake/syscheck.cmake | |
creating: open-amp-c468328487a1e0596307a5ef7172756819e15745/doc/ | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/doc/CMakeLists.txt | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/doc/Doxyfile.in | |
creating: open-amp-c468328487a1e0596307a5ef7172756819e15745/doc/apps/ | |
creating: open-amp-c468328487a1e0596307a5ef7172756819e15745/doc/apps/echo_test/ | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/doc/apps/echo_test/README.md | |
creating: open-amp-c468328487a1e0596307a5ef7172756819e15745/doc/apps/matrix_multiply/ | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/doc/apps/matrix_multiply/README.md | |
creating: open-amp-c468328487a1e0596307a5ef7172756819e15745/doc/apps/rpc_demo/ | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/doc/apps/rpc_demo/README.md | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/doc/data-structure.md | |
creating: open-amp-c468328487a1e0596307a5ef7172756819e15745/doc/img-src/ | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/doc/img-src/coprocessor-rpmsg-ns-dynamic.gv | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/doc/img-src/coprocessor-rpmsg-ns.gv | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/doc/img-src/coprocessor-rpmsg-static-ep.gv | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/doc/img-src/gen-graph.py | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/doc/img-src/rproc-lcm-state-machine.gv | |
creating: open-amp-c468328487a1e0596307a5ef7172756819e15745/doc/img/ | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/doc/img/coprocessor-rpmsg-ns-dynamic.png | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/doc/img/coprocessor-rpmsg-ns.png | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/doc/img/coprocessor-rpmsg-static-ep.png | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/doc/img/rproc-lcm-state-machine.png | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/doc/openamp.png | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/doc/remoteproc-design.md | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/doc/rpmsg-design.md | |
creating: open-amp-c468328487a1e0596307a5ef7172756819e15745/lib/ | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/lib/CMakeLists.txt | |
creating: open-amp-c468328487a1e0596307a5ef7172756819e15745/lib/include/ | |
creating: open-amp-c468328487a1e0596307a5ef7172756819e15745/lib/include/openamp/ | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/lib/include/openamp/elf_loader.h | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/lib/include/openamp/open_amp.h | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/lib/include/openamp/remoteproc.h | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/lib/include/openamp/remoteproc_loader.h | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/lib/include/openamp/remoteproc_virtio.h | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/lib/include/openamp/rpmsg.h | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/lib/include/openamp/rpmsg_retarget.h | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/lib/include/openamp/rpmsg_rpc_client_server.h | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/lib/include/openamp/rpmsg_virtio.h | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/lib/include/openamp/version.h | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/lib/include/openamp/virtio.h | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/lib/include/openamp/virtio_mmio.h | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/lib/include/openamp/virtio_ring.h | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/lib/include/openamp/virtqueue.h | |
creating: open-amp-c468328487a1e0596307a5ef7172756819e15745/lib/proxy/ | |
extracting: open-amp-c468328487a1e0596307a5ef7172756819e15745/lib/proxy/CMakeLists.txt | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/lib/proxy/rpmsg_retarget.c | |
creating: open-amp-c468328487a1e0596307a5ef7172756819e15745/lib/remoteproc/ | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/lib/remoteproc/CMakeLists.txt | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/lib/remoteproc/elf_loader.c | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/lib/remoteproc/remoteproc.c | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/lib/remoteproc/remoteproc_virtio.c | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/lib/remoteproc/rsc_table_parser.c | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/lib/remoteproc/rsc_table_parser.h | |
creating: open-amp-c468328487a1e0596307a5ef7172756819e15745/lib/rpmsg/ | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/lib/rpmsg/CMakeLists.txt | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/lib/rpmsg/rpmsg.c | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/lib/rpmsg/rpmsg_internal.h | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/lib/rpmsg/rpmsg_virtio.c | |
creating: open-amp-c468328487a1e0596307a5ef7172756819e15745/lib/service/ | |
creating: open-amp-c468328487a1e0596307a5ef7172756819e15745/lib/service/rpmsg/ | |
creating: open-amp-c468328487a1e0596307a5ef7172756819e15745/lib/service/rpmsg/rpc/ | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/lib/service/rpmsg/rpc/CMakeLists.txt | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/lib/service/rpmsg/rpc/rpmsg_rpc_client.c | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/lib/service/rpmsg/rpc/rpmsg_rpc_server.c | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/lib/version.c | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/lib/version.h.in | |
creating: open-amp-c468328487a1e0596307a5ef7172756819e15745/lib/virtio/ | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/lib/virtio/CMakeLists.txt | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/lib/virtio/virtio.c | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/lib/virtio/virtqueue.c | |
creating: open-amp-c468328487a1e0596307a5ef7172756819e15745/lib/virtio_mmio/ | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/lib/virtio_mmio/CMakeLists.txt | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/lib/virtio_mmio/virtio_mmio_drv.c | |
creating: open-amp-c468328487a1e0596307a5ef7172756819e15745/scripts/ | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/scripts/checkpatch.pl | |
creating: open-amp-c468328487a1e0596307a5ef7172756819e15745/scripts/ci/ | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/scripts/ci/check_compliance.py | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/scripts/do_checkpatch.sh | |
creating: open-amp-c468328487a1e0596307a5ef7172756819e15745/scripts/gitlint/ | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/scripts/gitlint/commit_rules.py | |
inflating: open-amp-c468328487a1e0596307a5ef7172756819e15745/scripts/spelling.txt | |
patching file open-amp/lib/include/openamp/rpmsg.h | |
patching file open-amp/lib/include/openamp/rpmsg_virtio.h | |
patching file open-amp/lib/rpmsg/rpmsg.c | |
patching file open-amp/lib/rpmsg/rpmsg_internal.h | |
patching file open-amp/lib/rpmsg/rpmsg_virtio.c | |
patching file open-amp/lib/include/openamp/remoteproc.h | |
patching file open-amp/lib/include/openamp/rpmsg_virtio.h | |
patching file open-amp/lib/rpmsg/rpmsg_virtio.c | |
patching file open-amp/lib/include/openamp/rpmsg.h | |
patching file open-amp/lib/rpmsg/rpmsg_virtio.c | |
patching file open-amp/lib/include/openamp/virtio.h | |
patching file open-amp/lib/remoteproc/remoteproc_virtio.c | |
patching file open-amp/lib/rpmsg/rpmsg_virtio.c | |
patching file open-amp/lib/include/openamp/rpmsg.h | |
patching file open-amp/lib/rpmsg/rpmsg_virtio.c | |
patching file open-amp/lib/include/openamp/virtqueue.h | |
patching file open-amp/lib/virtio/virtqueue.c | |
patching file open-amp/lib/rpmsg/rpmsg_virtio.c | |
patching file open-amp/lib/rpmsg/rpmsg_virtio.c | |
patching file open-amp/lib/rpmsg/rpmsg_virtio.c | |
patching file open-amp/lib/include/openamp/rpmsg_virtio.h | |
patching file open-amp/lib/include/openamp/virtio.h | |
patching file open-amp/lib/remoteproc/remoteproc_virtio.c | |
patching file open-amp/lib/rpmsg/rpmsg_virtio.c | |
patching file open-amp/lib/virtio/virtio.c | |
patching file open-amp/lib/virtio_mmio/virtio_mmio_drv.c | |
patching file open-amp/lib/rpmsg/rpmsg_virtio.c | |
patching file open-amp/lib/rpmsg/rpmsg_virtio.c | |
patching file open-amp/lib/include/openamp/virtio.h | |
patching file newlib/newlib/newlib/libm/complex/conjl.c | |
patching file newlib/newlib/newlib/libm/complex/cprojl.c | |
patching file newlib/newlib/newlib/libm/complex/csqrtl.c | |
patching file newlib/newlib/newlib/libm/machine/sparc/fenv.c | |
patching file newlib/newlib/newlib/libm/math/w_gamma.c | |
patching file newlib/newlib/newlib/libm/math/w_lgamma.c | |
patching file newlib/newlib/newlib/libm/math/wf_gamma.c | |
patching file newlib/newlib/newlib/libm/math/wf_lgamma.c | |
Unpacking: v3.13.0.zip -> Python | |
patching file newlib/newlib/newlib/libc/machine/shared_x86/sys/fenv.h | |
patching file newlib/newlib/newlib/libm/machine/shared_x86/fenv.c | |
patching file newlib/newlib/newlib/libm/math/w_sincos.c | |
patching file newlib/newlib/newlib/libm/math/wf_sincos.c | |
Patching Python | |
patching file Modules/faulthandler.c | |
patching file Modules/zlibmodule.c | |
patching file Objects/typeobject.c | |
patching file Tools/wasm/wasm_assets.py | |
patching file config.sub | |
patching file configure | |
patching file configure.ac | |
patching file Include/internal/pycore_importdl.h | |
patching file Lib/importlib/_bootstrap_external.py | |
patching file Misc/NEWS.d/next/Core_and_Builtins/2024-08-12-11-19-37.gh-issue-122907.q68096.rst | |
patching file Python/importdl.c | |
patching file Tools/build/check_extension_modules.py | |
patching file Modules/zlibmodule.c | |
patching file Modules/atexitmodule.c | |
patching file Include/internal/pycore_time.h | |
patching file Modules/selectmodule.c | |
patching file Modules/clinic/posixmodule.c.h | |
patching file Modules/posixmodule.c | |
patching file configure | |
patching file configure.ac | |
patching file pyconfig.h.in | |
patching file Parser/pegen.h | |
patching file Python/pylifecycle.c | |
patching file Include/pylifecycle.h | |
Register: leds | |
Register: iperf | |
Register: nsh | |
Register: sh | |
Register: ping | |
Register: nxrecorder | |
Register: python | |
Register: telnetd | |
Register: renew | |
Register: hello | |
Register: nxplayer | |
Register: getprime | |
Register: ostest | |
checking build system type... x86_64-pc-linux-gnu | |
checking host system type... x86_64-pc-linux-gnu | |
checking for Python interpreter freezing... ./_bootstrap_python | |
checking for python3.13... no | |
checking for python3.13... no | |
checking for python3.12... no | |
checking for python3.11... no | |
checking for python3.10... python3.10 | |
checking Python for regen version... Python 3.10.12 | |
checking for pkg-config... /usr/bin/pkg-config | |
checking pkg-config is at least version 0.9.0... yes | |
checking MACHDEP... "linux" | |
checking for --enable-universalsdk... no | |
checking for --with-universal-archs... no | |
checking for --with-app-store-compliance... not patching for app store compliance | |
checking for gcc... gcc | |
checking whether the C compiler works... yes | |
checking for C compiler default output file name... a.out | |
checking for suffix of executables... | |
CC: proxies/PROXY__assert.c no | |
CC: proxies/PROXY_epoll_wait.c o | |
yes | |
CC: proxies/PROXY_getuid.c yes | |
CC: proxies/PROXY_mq_notify.c none needed | |
gcc -E | |
CC: proxies/PROXY_nxsem_set_protocol.c /usr/bin/grep | |
CC: proxies/PROXY_pgalloc.c /usr/bin/sed | |
CC: proxies/PROXY_poll.c checking for egrep... /usr/bin/grep -E | |
CC: proxies/PROXY_pread.c gcc | |
CC: proxies/PROXY_pthread_getaffinity_np.c yes | |
CC: proxies/PROXY_recvfrom.c yes | |
CC: proxies/PROXY_sched_getparam.c yes | |
CC: proxies/PROXY_setitimer.c yes | |
yes | |
CC: proxies/PROXY_time.c yes | |
yes | |
yes | |
checking for unistd.h... yes | |
yes | |
checking for minix/config.h... no | |
checking whether it is safe to define __EXTENSIONS__... yes | |
checking whether _XOPEN_SOURCE should be defined... no | |
checking for GCC compatible compiler... yes | |
checking for g++... no | |
configure: | |
By default, distutils will build C++ extension modules with "g++". | |
If this is not intended, then set CXX on the configure command line. | |
checking for the platform triplet based on compiler characteristics... x86_64-linux-gnu | |
checking for multiarch... x86_64-linux-gnu | |
checking for PEP 11 support tier... x86_64-pc-linux-gnu/gcc has tier 1 (supported) | |
checking for -Wl,--no-as-needed... yes | |
checking for the Android API level... not Android | |
checking for --with-emscripten-target... | |
checking for --enable-wasm-dynamic-linking... missing | |
checking for --enable-wasm-pthreads... missing | |
checking for --with-suffix... | |
checking for case-insensitive build directory... no | |
checking LIBRARY... libpython$(VERSION)$(ABIFLAGS).a | |
checking LINKCC... $(PURIFY) $(CC) | |
checking EXPORTSYMS... | |
checking for GNU ld... yes | |
checking for --enable-shared... no | |
checking for --with-static-libpython... yes | |
checking for --enable-profiling... no | |
checking LDLIBRARY... libpython$(VERSION)$(ABIFLAGS).a | |
checking HOSTRUNNER... | |
checking for ar... ar | |
checking for a BSD-compatible install... /usr/bin/install -c | |
checking for a race-free mkdir -p... /usr/bin/mkdir -p | |
checking for --disable-gil... no | |
checking for --with-pydebug... yes | |
checking for --with-trace-refs... no | |
checking for --enable-pystats... no | |
checking for --with-assertions... implied by --with-pydebug | |
checking for --enable-experimental-jit... | |
checking for --enable-optimizations... no | |
checking PROFILE_TASK... -m test --pgo --timeout=$(TESTTIMEOUT) | |
checking for --with-lto... no | |
checking for llvm-profdata... /tools/clang-arm-none-eabi/bin/llvm-profdata | |
checking for --enable-bolt... no | |
checking BOLT_INSTRUMENT_FLAGS... | |
checking BOLT_APPLY_FLAGS... -update-debug-sections -reorder-blocks=ext-tsp -reorder-functions=hfsort+ -split-functions -icf=1 -inline-all -split-eh -reorder-functions-use-hot-size -peepholes=none -jump-tables=aggressive -inline-ap -indirect-call-promotion=all -dyno-stats -use-gnu-stack -frame-opt=hot | |
checking if gcc supports -fstrict-overflow and -fno-strict-overflow... yes | |
checking for --with-strict-overflow... no | |
checking if gcc supports -Og optimization level... yes | |
checking if we can add -Wextra... yes | |
checking whether gcc -fno-strict-aliasing accepts and needs -fno-strict-aliasing... no | |
checking if we can disable gcc unused-parameter warning... yes | |
checking if we can disable gcc int-conversion warning... yes | |
checking if we can disable gcc missing-field-initializers warning... yes | |
checking if we can enable gcc sign-compare warning... yes | |
checking if we can enable gcc unreachable-code warning... yes | |
checking if we can enable gcc strict-prototypes warning... yes | |
checking if we can make implicit function declaration an error in gcc -Werror=implicit-function-declaration... yes | |
checking if we can use visibility in gcc -fvisibility=hidden... yes | |
checking whether pthreads are available without options... yes | |
checking whether g++ also accepts flags for thread support... no | |
checking for alloca.h... yes | |
checking for asm/types.h... yes | |
checking for bluetooth.h... no | |
checking for conio.h... no | |
checking for direct.h... no | |
checking for dlfcn.h... yes | |
checking for endian.h... yes | |
checking for errno.h... yes | |
checking for fcntl.h... yes | |
checking for grp.h... yes | |
checking for io.h... no | |
checking for langinfo.h... yes | |
checking for libintl.h... yes | |
checking for libutil.h... no | |
checking for linux/auxvec.h... yes | |
checking for sys/auxv.h... yes | |
checking for linux/fs.h... yes | |
checking for linux/limits.h... yes | |
checking for linux/memfd.h... yes | |
checking for linux/random.h... yes | |
checking for linux/soundcard.h... yes | |
checking for linux/tipc.h... yes | |
checking for linux/wait.h... yes | |
checking for netdb.h... yes | |
checking for net/ethernet.h... yes | |
checking for netinet/in.h... yes | |
checking for netpacket/packet.h... yes | |
checking for poll.h... yes | |
checking for process.h... no | |
checking for pthread.h... yes | |
checking for pty.h... yes | |
checking for sched.h... yes | |
checking for setjmp.h... yes | |
checking for shadow.h... yes | |
checking for signal.h... yes | |
checking for spawn.h... yes | |
checking for stropts.h... no | |
checking for sys/audioio.h... no | |
checking for sys/bsdtty.h... no | |
checking for sys/devpoll.h... no | |
checking for sys/endian.h... no | |
checking for sys/epoll.h... yes | |
checking for sys/event.h... no | |
checking for sys/eventfd.h... yes | |
checking for sys/file.h... yes | |
checking for sys/ioctl.h... yes | |
checking for sys/kern_control.h... no | |
checking for sys/loadavg.h... no | |
checking for sys/lock.h... no | |
checking for sys/memfd.h... no | |
checking for sys/mkdev.h... no | |
checking for sys/mman.h... yes | |
checking for sys/modem.h... no | |
checking for sys/param.h... yes | |
checking for sys/poll.h... yes | |
checking for sys/random.h... yes | |
checking for sys/resource.h... yes | |
checking for sys/select.h... yes | |
checking for sys/sendfile.h... yes | |
checking for sys/socket.h... yes | |
checking for sys/soundcard.h... yes | |
checking for sys/stat.h... (cached) yes | |
checking for sys/statvfs.h... yes | |
checking for sys/sys_domain.h... no | |
checking for sys/syscall.h... yes | |
checking for sys/sysmacros.h... yes | |
checking for sys/termio.h... no | |
checking for sys/time.h... yes | |
checking for sys/times.h... yes | |
checking for sys/timerfd.h... yes | |
checking for sys/types.h... (cached) yes | |
checking for sys/uio.h... yes | |
checking for sys/un.h... yes | |
checking for sys/utsname.h... yes | |
checking for sys/wait.h... yes | |
checking for sys/xattr.h... yes | |
checking for sysexits.h... yes | |
checking for syslog.h... yes | |
checking for termios.h... yes | |
checking for util.h... no | |
checking for utime.h... yes | |
checking for utmp.h... yes | |
checking for dirent.h that defines DIR... yes | |
checking for library containing opendir... none required | |
checking for sys/mkdev.h... (cached) no | |
checking for sys/sysmacros.h... (cached) yes | |
checking for bluetooth/bluetooth.h... no | |
checking for net/if.h... yes | |
checking for linux/netlink.h... yes | |
checking for netlink/netlink.h... no | |
checking for linux/qrtr.h... yes | |
checking for linux/vm_sockets.h... yes | |
checking for linux/can.h... yes | |
checking for linux/can/bcm.h... yes | |
checking for linux/can/j1939.h... yes | |
checking for linux/can/raw.h... yes | |
checking for netcan/can.h... no | |
checking for clock_t... yes | |
checking for makedev... yes | |
checking for le64toh... yes | |
checking for mode_t... yes | |
checking for off_t... yes | |
checking for pid_t... yes | |
checking for size_t... yes | |
checking for uid_t in sys/types.h... yes | |
checking for ssize_t... yes | |
checking for __uint128_t... yes | |
checking size of int... 4 | |
checking size of long... 8 | |
checking alignment of long... 8 | |
checking size of long long... 8 | |
checking size of void *... 8 | |
checking size of short... 2 | |
checking size of float... 4 | |
checking size of double... 8 | |
checking size of fpos_t... 16 | |
checking size of size_t... 8 | |
checking alignment of size_t... 8 | |
checking size of pid_t... 4 | |
checking size of uintptr_t... 8 | |
checking alignment of max_align_t... 16 | |
checking for long double... yes | |
checking size of long double... 16 | |
checking size of _Bool... 1 | |
checking size of off_t... 8 | |
checking whether to enable large file support... no | |
checking size of time_t... 8 | |
checking for pthread_t... yes | |
checking size of pthread_t... 8 | |
checking size of pthread_key_t... 4 | |
checking whether pthread_key_t is compatible with int... yes | |
checking for --enable-framework... no | |
checking for --with-dsymutil... no | |
checking for dyld... no | |
checking for --with-address-sanitizer... no | |
checking for --with-memory-sanitizer... no | |
checking for --with-undefined-behavior-sanitizer... no | |
checking for --with-thread-sanitizer... no | |
checking the extension of shared libraries... .so | |
checking LDSHARED... $(CC) -shared | |
checking BLDSHARED flags... $(CC) -shared | |
checking CCSHARED... -fPIC | |
checking LINKFORSHARED... -Xlinker -export-dynamic | |
checking CFLAGSFORSHARED... | |
checking SHLIBS... $(LIBS) | |
checking perf trampoline... yes | |
checking for sendfile in -lsendfile... no | |
checking for dlopen in -ldl... yes | |
checking for shl_load in -ldld... no | |
checking for uuid.h... no | |
checking for uuid >= 2.20... yes | |
checking for library containing sem_init... none required | |
checking for textdomain in -lintl... no | |
checking aligned memory access is required... no | |
checking for --with-hash-algorithm... default | |
checking for --with-tzpath... "/usr/share/zoneinfo:/usr/lib/zoneinfo:/usr/share/lib/zoneinfo:/etc/zoneinfo" | |
checking for t_open in -lnsl... no | |
checking for socket in -lsocket... no | |
checking for --with-libs... no | |
checking for --with-system-expat... no | |
checking for libffi... yes | |
checking for ffi_prep_cif_var... yes | |
checking for ffi_prep_closure_loc... yes | |
checking for ffi_closure_alloc... yes | |
checking for --with-system-libmpdec... yes | |
checking for libmpdec >= 2.5.0... no | |
configure: WARNING: no system libmpdecimal found; falling back to bundled libmpdecimal (deprecated and scheduled for removal in Python 3.15) | |
checking for --with-decimal-contextvar... yes | |
checking for decimal libmpdec machine... uint128 | |
checking for sqlite3 >= 3.15.2... no | |
checking for sqlite3.h... no | |
checking for --enable-loadable-sqlite-extensions... no | |
checking for gdbm.h... no | |
checking for ndbm.h... no | |
checking for ndbm presence and linker args... () | |
checking for gdbm/ndbm.h... no | |
checking for gdbm-ndbm.h... no | |
checking for db.h... no | |
checking for --with-dbmliborder... gdbm:ndbm:bdb | |
checking for _dbm module CFLAGS and LIBS... | |
checking if PTHREAD_SCOPE_SYSTEM is supported... yes | |
checking for pthread_sigmask... yes | |
checking for pthread_getcpuclockid... yes | |
checking if --enable-ipv6 is specified... yes | |
checking if RFC2553 API is available... yes | |
checking for IPV6_INRIA_VERSION defined in netinet/in.h... no | |
checking for __KAME__ defined in netinet/in.h... no | |
checking for __GLIBC__ defined in features.h... yes | |
checking ipv6 stack type... linux-glibc | |
checking CAN_RAW_FD_FRAMES... yes | |
checking for CAN_RAW_JOIN_FILTERS... yes | |
checking for --with-doc-strings... yes | |
checking for stdatomic.h... yes | |
checking for builtin __atomic_load_n and __atomic_store_n functions... yes | |
checking for --with-mimalloc... yes | |
checking for --with-pymalloc... yes | |
checking for --with-freelists... yes | |
checking for --with-c-locale-coercion... yes | |
checking for --with-valgrind... no | |
checking for --with-dtrace... no | |
checking for dlopen... yes | |
checking DYNLOADFILE... dynload_shlib.o | |
checking MACHDEP_OBJS... none | |
checking for accept4... yes | |
checking for alarm... yes | |
checking for bind_textdomain_codeset... yes | |
checking for chmod... yes | |
checking for chown... yes | |
checking for clock... yes | |
checking for closefrom... yes | |
checking for close_range... yes | |
checking for confstr... yes | |
checking for copy_file_range... yes | |
checking for ctermid... yes | |
checking for dup... yes | |
checking for dup3... yes | |
checking for execv... yes | |
checking for explicit_bzero... yes | |
checking for explicit_memset... no | |
checking for faccessat... yes | |
checking for fchmod... yes | |
checking for fchmodat... yes | |
checking for fchown... yes | |
checking for fchownat... yes | |
checking for fdopendir... yes | |
checking for fdwalk... no | |
checking for fexecve... yes | |
checking for fork... yes | |
checking for fork1... no | |
checking for fpathconf... yes | |
checking for fstatat... yes | |
checking for ftime... yes | |
checking for ftruncate... yes | |
checking for futimens... yes | |
checking for futimes... yes | |
checking for futimesat... yes | |
checking for gai_strerror... yes | |
checking for getegid... yes | |
checking for geteuid... yes | |
checking for getgid... yes | |
checking for getgrent... yes | |
checking for getgrgid... yes | |
checking for getgrgid_r... yes | |
checking for getgrnam_r... yes | |
checking for getgrouplist... yes | |
checking for gethostname... yes | |
checking for getitimer... yes | |
checking for getloadavg... yes | |
checking for getlogin... yes | |
checking for getpeername... yes | |
checking for getpgid... yes | |
checking for getpid... yes | |
checking for getppid... yes | |
checking for getpriority... yes | |
checking for _getpty... no | |
checking for getpwent... yes | |
checking for getpwnam_r... yes | |
checking for getpwuid... yes | |
checking for getpwuid_r... yes | |
checking for getresgid... yes | |
checking for getresuid... yes | |
checking for getrusage... yes | |
checking for getsid... yes | |
checking for getspent... yes | |
checking for getspnam... yes | |
checking for getuid... yes | |
checking for getwd... yes | |
checking for grantpt... yes | |
checking for if_nameindex... yes | |
checking for initgroups... yes | |
checking for kill... yes | |
checking for killpg... yes | |
checking for lchown... yes | |
checking for linkat... yes | |
checking for lockf... yes | |
checking for lstat... yes | |
checking for lutimes... yes | |
checking for madvise... yes | |
checking for mbrtowc... yes | |
checking for memrchr... yes | |
checking for mkdirat... yes | |
checking for mkfifo... yes | |
checking for mkfifoat... yes | |
checking for mknod... yes | |
checking for mknodat... yes | |
checking for mktime... yes | |
checking for mmap... yes | |
checking for mremap... yes | |
checking for nice... yes | |
checking for openat... yes | |
checking for opendir... yes | |
checking for pathconf... yes | |
checking for pause... yes | |
checking for pipe... yes | |
checking for pipe2... yes | |
checking for plock... no | |
checking for poll... yes | |
checking for posix_fadvise... yes | |
checking for posix_fallocate... yes | |
checking for posix_openpt... yes | |
checking for posix_spawn... yes | |
checking for posix_spawnp... yes | |
checking for posix_spawn_file_actions_addclosefrom_np... yes | |
checking for pread... yes | |
checking for preadv... yes | |
checking for preadv2... yes | |
checking for process_vm_readv... yes | |
checking for pthread_cond_timedwait_relative_np... no | |
checking for pthread_condattr_setclock... yes | |
checking for pthread_init... no | |
checking for pthread_kill... yes | |
checking for ptsname... yes | |
checking for ptsname_r... yes | |
checking for pwrite... yes | |
checking for pwritev... yes | |
checking for pwritev2... yes | |
checking for readlink... yes | |
checking for readlinkat... yes | |
checking for readv... yes | |
checking for realpath... yes | |
checking for renameat... yes | |
checking for rtpSpawn... no | |
checking for sched_get_priority_max... yes | |
checking for sched_rr_get_interval... yes | |
checking for sched_setaffinity... yes | |
checking for sched_setparam... yes | |
checking for sched_setscheduler... yes | |
checking for sem_clockwait... yes | |
checking for sem_getvalue... yes | |
checking for sem_open... yes | |
checking for sem_timedwait... yes | |
checking for sem_unlink... yes | |
checking for sendfile... yes | |
checking for setegid... yes | |
checking for seteuid... yes | |
checking for setgid... yes | |
checking for sethostname... yes | |
checking for setitimer... yes | |
checking for setlocale... yes | |
checking for setpgid... yes | |
checking for setpgrp... yes | |
checking for setpriority... yes | |
checking for setregid... yes | |
checking for setresgid... yes | |
checking for setresuid... yes | |
checking for setreuid... yes | |
checking for setsid... yes | |
checking for setuid... yes | |
checking for setvbuf... yes | |
checking for shutdown... yes | |
checking for sigaction... yes | |
checking for sigaltstack... yes | |
checking for sigfillset... yes | |
checking for siginterrupt... yes | |
checking for sigpending... yes | |
checking for sigrelse... yes | |
checking for sigtimedwait... yes | |
checking for sigwait... yes | |
checking for sigwaitinfo... yes | |
checking for snprintf... yes | |
checking for splice... yes | |
checking for strftime... yes | |
checking for strlcpy... no | |
checking for strsignal... yes | |
checking for symlinkat... yes | |
checking for sync... yes | |
checking for sysconf... yes | |
checking for tcgetpgrp... yes | |
checking for tcsetpgrp... yes | |
checking for tempnam... yes | |
checking for timegm... yes | |
checking for times... yes | |
checking for tmpfile... yes | |
checking for tmpnam... yes | |
checking for tmpnam_r... yes | |
checking for truncate... yes | |
checking for ttyname... yes | |
checking for umask... yes | |
checking for uname... yes | |
checking for unlinkat... yes | |
checking for unlockpt... yes | |
checking for utimensat... yes | |
checking for utimes... yes | |
checking for vfork... yes | |
checking for wait... yes | |
checking for wait3... yes | |
checking for wait4... yes | |
checking for waitid... yes | |
checking for waitpid... yes | |
checking for wcscoll... yes | |
checking for wcsftime... yes | |
checking for wcsxfrm... yes | |
checking for wmemcmp... yes | |
checking for writev... yes | |
checking for getentropy... yes | |
checking for getgroups... yes | |
checking for system... yes | |
checking for gcc options needed to detect all undeclared functions... none needed | |
checking whether dirfd is declared... yes | |
checking for chroot... yes | |
checking for link... yes | |
checking for symlink... yes | |
checking for fchdir... yes | |
checking for fsync... yes | |
checking for fdatasync... yes | |
checking for epoll_create... yes | |
checking for epoll_create1... yes | |
checking for kqueue... no | |
checking for prlimit... yes | |
checking for _dyld_shared_cache_contains_path... no | |
checking for memfd_create... yes | |
checking for eventfd... yes | |
checking for timerfd_create... yes | |
checking for ctermid_r... no | |
checking for flock declaration... yes | |
checking for flock... yes | |
checking for getpagesize... yes | |
checking for broken unsetenv... no | |
checking for true... true | |
checking for inet_aton in -lc... yes | |
checking for chflags... no | |
checking for lchflags... no | |
checking for zlib >= 1.2.0... yes | |
checking for bzip2... no | |
checking for bzlib.h... no | |
checking for liblzma... no | |
checking for lzma.h... no | |
checking for hstrerror... yes | |
checking for getservbyname... yes | |
checking for getservbyport... yes | |
checking for gethostbyname... yes | |
checking for gethostbyaddr... yes | |
checking for getprotobyname... yes | |
checking for inet_aton... yes | |
checking for inet_ntoa... yes | |
checking for inet_pton... yes | |
checking for getpeername... (cached) yes | |
checking for getsockname... yes | |
checking for accept... yes | |
checking for bind... yes | |
checking for connect... yes | |
checking for listen... yes | |
checking for recvfrom... yes | |
checking for sendto... yes | |
checking for setsockopt... yes | |
checking for socket... yes | |
checking for setgroups... yes | |
checking for openpty... yes | |
checking for library containing login_tty... none required | |
checking for forkpty... yes | |
checking for fseek64... no | |
checking for fseeko... yes | |
checking for fstatvfs... yes | |
checking for ftell64... no | |
checking for ftello... yes | |
checking for statvfs... yes | |
checking for dup2... yes | |
checking for getpgrp... yes | |
checking for setpgrp... (cached) yes | |
checking for setns... yes | |
checking for unshare... yes | |
checking for clock_gettime... yes | |
checking for clock_getres... yes | |
checking for clock_settime... yes | |
checking for clock_nanosleep... yes | |
checking for nanosleep... yes | |
checking for major, minor, and makedev... yes | |
checking for getaddrinfo... yes | |
checking getaddrinfo bug... no | |
checking for getnameinfo... yes | |
checking whether struct tm is in sys/time.h or time.h... time.h | |
checking for struct tm.tm_zone... yes | |
checking for struct stat.st_rdev... yes | |
checking for struct stat.st_blksize... yes | |
checking for struct stat.st_flags... no | |
checking for struct stat.st_gen... no | |
checking for struct stat.st_birthtime... no | |
checking for struct stat.st_blocks... yes | |
checking for struct passwd.pw_gecos... yes | |
checking for struct passwd.pw_passwd... yes | |
checking for siginfo_t.si_band... yes | |
checking for time.h that defines altzone... no | |
checking for addrinfo... yes | |
checking for sockaddr_storage... yes | |
checking for sockaddr_alg... yes | |
checking for an ANSI C-conforming const... yes | |
checking for working signed char... yes | |
checking for prototypes... yes | |
checking for socketpair... yes | |
checking if sockaddr has sa_len member... no | |
checking for gethostbyname_r... yes | |
checking gethostbyname_r with 6 args... yes | |
checking for __fpu_control... yes | |
checking for --with-libm=STRING... default LIBM="-lm" | |
checking for --with-libc=STRING... default LIBC="" | |
checking for x64 gcc inline assembler... yes | |
checking whether float word ordering is bigendian... no | |
checking whether we can use gcc inline assembler to get and set x87 control word... yes | |
checking whether we can use gcc inline assembler to get and set mc68881 fpcr... no | |
checking for x87-style double rounding... no | |
checking for acosh... yes | |
checking for asinh... yes | |
checking for atanh... yes | |
checking for erf... yes | |
checking for erfc... yes | |
checking for expm1... yes | |
checking for log1p... yes | |
checking for log2... yes | |
checking whether POSIX semaphores are enabled... yes | |
checking for broken sem_getvalue... no | |
checking whether RTLD_LAZY is declared... yes | |
checking whether RTLD_NOW is declared... yes | |
checking whether RTLD_GLOBAL is declared... yes | |
checking whether RTLD_LOCAL is declared... yes | |
checking whether RTLD_NODELETE is declared... yes | |
checking whether RTLD_NOLOAD is declared... yes | |
checking whether RTLD_DEEPBIND is declared... yes | |
checking whether RTLD_MEMBER is declared... no | |
checking digit size for Python's longs... no value specified | |
checking for wchar.h... (cached) yes | |
checking size of wchar_t... 4 | |
checking whether wchar_t is signed... yes | |
checking whether wchar_t is usable... no | |
checking whether byte ordering is bigendian... no | |
checking ABIFLAGS... d | |
checking SOABI... cpython-313d-x86_64-linux-gnu | |
checking LDVERSION... $(VERSION)$(ABIFLAGS) | |
checking for --with-platlibdir... no | |
checking for --with-wheel-pkg-dir... no | |
checking whether right shift extends the sign bit... yes | |
checking for getc_unlocked() and friends... yes | |
checking for readline... no | |
checking for readline/readline.h... no | |
checking how to link readline... no | |
checking for broken nice()... no | |
checking for broken poll()... no | |
checking for working tzset()... yes | |
checking for tv_nsec in struct stat... yes | |
checking for tv_nsec2 in struct stat... no | |
checking for ncursesw... yes | |
checking for panelw... yes | |
checking for ncursesw/curses.h... yes | |
checking for ncursesw/ncurses.h... yes | |
checking for ncursesw/panel.h... yes | |
checking for ncurses/curses.h... no | |
checking for ncurses/ncurses.h... no | |
checking for ncurses/panel.h... no | |
checking for curses.h... yes | |
checking for ncurses.h... yes | |
checking for panel.h... yes | |
checking for library containing initscr... none required | |
checking for library containing update_panels... none required | |
checking for term.h... yes | |
checking whether mvwdelch is an expression... yes | |
checking whether WINDOW has _flags... yes | |
checking for curses function is_pad... yes | |
checking for curses function is_term_resized... yes | |
checking for curses function resize_term... yes | |
checking for curses function resizeterm... yes | |
checking for curses function immedok... yes | |
checking for curses function syncok... yes | |
checking for curses function wchgat... yes | |
checking for curses function filter... yes | |
checking for curses function has_key... yes | |
checking for curses function typeahead... yes | |
checking for curses function use_env... yes | |
configure: checking for device files | |
checking for /dev/ptmx... yes | |
checking for /dev/ptc... no | |
checking for socklen_t... yes | |
checking for broken mbstowcs... no | |
checking for --with-computed-gotos... no value specified | |
checking whether gcc supports computed gotos... yes | |
checking for build directories... done | |
checking for -O2... yes | |
checking for glibc _FORTIFY_SOURCE/memmove bug... no | |
checking for gcc ipa-pure-const bug... no | |
checking for ensurepip... upgrade | |
checking if the dirent structure of a d_type field... yes | |
checking if the dirent structure of a d_ino field... yes | |
checking for the Linux getrandom() syscall... yes | |
checking for the getrandom() function... yes | |
checking for library containing shm_open... none required | |
checking for shm_open... yes | |
checking for shm_unlink... yes | |
checking for pkg-config... /usr/bin/pkg-config | |
checking whether compiling and linking against OpenSSL works... yes | |
checking for --with-openssl-rpath... | |
checking whether OpenSSL provides required ssl module APIs... yes | |
checking whether OpenSSL provides required hashlib module APIs... yes | |
checking for --with-ssl-default-suites... python | |
checking for --with-builtin-hashlib-hashes... md5,sha1,sha2,sha3,blake2 | |
checking for libb2... no | |
checking for --disable-test-modules... yes | |
checking whether libatomic is needed by <pyatomic.h>... no | |
checking for stdlib extension module _multiprocessing... yes | |
checking for stdlib extension module _posixshmem... yes | |
checking for stdlib extension module fcntl... yes | |
checking for stdlib extension module mmap... yes | |
checking for stdlib extension module _socket... yes | |
checking for stdlib extension module grp... yes | |
checking for stdlib extension module pwd... yes | |
checking for stdlib extension module resource... yes | |
checking for stdlib extension module _scproxy... n/a | |
checking for stdlib extension module syslog... yes | |
checking for stdlib extension module termios... yes | |
checking for stdlib extension module pyexpat... yes | |
checking for stdlib extension module _elementtree... yes | |
checking for stdlib extension module _md5... yes | |
checking for stdlib extension module _sha1... yes | |
checking for stdlib extension module _sha2... yes | |
checking for stdlib extension module _sha3... yes | |
checking for stdlib extension module _blake2... yes | |
checking for stdlib extension module _ctypes... yes | |
checking for stdlib extension module _curses... yes | |
checking for stdlib extension module _curses_panel... yes | |
checking for stdlib extension module _decimal... yes | |
checking for stdlib extension module _dbm... missing | |
checking for stdlib extension module _gdbm... missing | |
checking for stdlib extension module readline... missing | |
checking for stdlib extension module _sqlite3... disabled | |
checking for stdlib extension module _tkinter... missing | |
checking for stdlib extension module _uuid... yes | |
checking for stdlib extension module zlib... yes | |
checking for stdlib extension module _bz2... missing | |
checking for stdlib extension module _lzma... missing | |
checking for stdlib extension module _ssl... yes | |
checking for stdlib extension module _hashlib... yes | |
checking for stdlib extension module _testcapi... yes | |
checking for stdlib extension module _testclinic... yes | |
checking for stdlib extension module _testclinic_limited... yes | |
checking for stdlib extension module _testlimitedcapi... yes | |
checking for stdlib extension module _testinternalcapi... yes | |
checking for stdlib extension module _testbuffer... yes | |
checking for stdlib extension module _testimportmultiple... yes | |
checking for stdlib extension module _testmultiphase... yes | |
checking for stdlib extension module _testsinglephase... yes | |
checking for stdlib extension module _testexternalinspection... yes | |
checking for stdlib extension module xxsubtype... yes | |
checking for stdlib extension module _xxtestfuzz... yes | |
checking for stdlib extension module _ctypes_test... yes | |
checking for stdlib extension module xxlimited... yes | |
checking for stdlib extension module xxlimited_35... yes | |
configure: creating ./config.status | |
config.status: creating Makefile.pre | |
config.status: creating Misc/python.pc | |
config.status: creating Misc/python-embed.pc | |
config.status: creating Misc/python-config.sh | |
config.status: creating Modules/Setup.bootstrap | |
config.status: creating Modules/Setup.stdlib | |
config.status: creating Modules/ld_so_aix | |
config.status: creating pyconfig.h | |
configure: creating Modules/Setup.local | |
configure: creating Makefile | |
Creating directory /root/apps/interpreters/python/install/host/include | |
Creating directory /root/apps/interpreters/python/install/host/share/man | |
Creating directory /root/apps/interpreters/python/install/host/share/man/man1 | |
Creating directory /root/apps/interpreters/python/install/host/include/python3.13d | |
Creating directory /root/apps/interpreters/python/install/host/include/python3.13d/cpython | |
Creating directory /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
Creating directory /root/apps/interpreters/python/install/host/include/python3.13d/internal/mimalloc/mimalloc | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/Python.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/abstract.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/bltinmodule.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/boolobject.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/bytearrayobject.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/bytesobject.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/ceval.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/codecs.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/compile.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/complexobject.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/critical_section.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/datetime.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/descrobject.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/dictobject.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/dynamic_annotations.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/enumobject.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/errcode.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/exports.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/fileobject.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/fileutils.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/floatobject.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/frameobject.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/genericaliasobject.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/import.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/intrcheck.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/iterobject.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/listobject.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/lock.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/longobject.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/marshal.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/memoryobject.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/methodobject.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/modsupport.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/moduleobject.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/monitoring.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/object.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/objimpl.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/opcode.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/opcode_ids.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/osdefs.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/osmodule.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/patchlevel.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/py_curses.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/pyatomic.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/pybuffer.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/pycapsule.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/pydtrace.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/pyerrors.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/pyexpat.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/pyframe.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/pyhash.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/pylifecycle.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/pymacconfig.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/pymacro.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/pymath.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/pymem.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/pyport.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/pystate.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/pystats.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/pystrcmp.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/pystrtod.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/pythonrun.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/pythread.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/pytypedefs.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/rangeobject.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/setobject.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/sliceobject.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/structmember.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/structseq.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/sysmodule.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/traceback.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/tupleobject.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/typeslots.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/unicodeobject.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/warnings.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/weakrefobject.h /root/apps/interpreters/python/install/host/include/python3.13d | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/cpython/abstract.h /root/apps/interpreters/python/install/host/include/python3.13d/cpython | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/cpython/bytearrayobject.h /root/apps/interpreters/python/install/host/include/python3.13d/cpython | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/cpython/bytesobject.h /root/apps/interpreters/python/install/host/include/python3.13d/cpython | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/cpython/cellobject.h /root/apps/interpreters/python/install/host/include/python3.13d/cpython | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/cpython/ceval.h /root/apps/interpreters/python/install/host/include/python3.13d/cpython | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/cpython/classobject.h /root/apps/interpreters/python/install/host/include/python3.13d/cpython | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/cpython/code.h /root/apps/interpreters/python/install/host/include/python3.13d/cpython | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/cpython/compile.h /root/apps/interpreters/python/install/host/include/python3.13d/cpython | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/cpython/complexobject.h /root/apps/interpreters/python/install/host/include/python3.13d/cpython | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/cpython/context.h /root/apps/interpreters/python/install/host/include/python3.13d/cpython | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/cpython/critical_section.h /root/apps/interpreters/python/install/host/include/python3.13d/cpython | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/cpython/descrobject.h /root/apps/interpreters/python/install/host/include/python3.13d/cpython | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/cpython/dictobject.h /root/apps/interpreters/python/install/host/include/python3.13d/cpython | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/cpython/fileobject.h /root/apps/interpreters/python/install/host/include/python3.13d/cpython | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/cpython/fileutils.h /root/apps/interpreters/python/install/host/include/python3.13d/cpython | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/cpython/floatobject.h /root/apps/interpreters/python/install/host/include/python3.13d/cpython | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/cpython/frameobject.h /root/apps/interpreters/python/install/host/include/python3.13d/cpython | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/cpython/funcobject.h /root/apps/interpreters/python/install/host/include/python3.13d/cpython | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/cpython/genobject.h /root/apps/interpreters/python/install/host/include/python3.13d/cpython | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/cpython/import.h /root/apps/interpreters/python/install/host/include/python3.13d/cpython | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/cpython/initconfig.h /root/apps/interpreters/python/install/host/include/python3.13d/cpython | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/cpython/listobject.h /root/apps/interpreters/python/install/host/include/python3.13d/cpython | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/cpython/lock.h /root/apps/interpreters/python/install/host/include/python3.13d/cpython | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/cpython/longintrepr.h /root/apps/interpreters/python/install/host/include/python3.13d/cpython | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/cpython/longobject.h /root/apps/interpreters/python/install/host/include/python3.13d/cpython | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/cpython/memoryobject.h /root/apps/interpreters/python/install/host/include/python3.13d/cpython | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/cpython/methodobject.h /root/apps/interpreters/python/install/host/include/python3.13d/cpython | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/cpython/modsupport.h /root/apps/interpreters/python/install/host/include/python3.13d/cpython | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/cpython/monitoring.h /root/apps/interpreters/python/install/host/include/python3.13d/cpython | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/cpython/object.h /root/apps/interpreters/python/install/host/include/python3.13d/cpython | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/cpython/objimpl.h /root/apps/interpreters/python/install/host/include/python3.13d/cpython | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/cpython/odictobject.h /root/apps/interpreters/python/install/host/include/python3.13d/cpython | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/cpython/picklebufobject.h /root/apps/interpreters/python/install/host/include/python3.13d/cpython | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/cpython/pthread_stubs.h /root/apps/interpreters/python/install/host/include/python3.13d/cpython | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/cpython/pyatomic.h /root/apps/interpreters/python/install/host/include/python3.13d/cpython | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/cpython/pyatomic_gcc.h /root/apps/interpreters/python/install/host/include/python3.13d/cpython | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/cpython/pyatomic_msc.h /root/apps/interpreters/python/install/host/include/python3.13d/cpython | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/cpython/pyatomic_std.h /root/apps/interpreters/python/install/host/include/python3.13d/cpython | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/cpython/pyctype.h /root/apps/interpreters/python/install/host/include/python3.13d/cpython | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/cpython/pydebug.h /root/apps/interpreters/python/install/host/include/python3.13d/cpython | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/cpython/pyerrors.h /root/apps/interpreters/python/install/host/include/python3.13d/cpython | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/cpython/pyfpe.h /root/apps/interpreters/python/install/host/include/python3.13d/cpython | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/cpython/pyframe.h /root/apps/interpreters/python/install/host/include/python3.13d/cpython | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/cpython/pyhash.h /root/apps/interpreters/python/install/host/include/python3.13d/cpython | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/cpython/pylifecycle.h /root/apps/interpreters/python/install/host/include/python3.13d/cpython | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/cpython/pymem.h /root/apps/interpreters/python/install/host/include/python3.13d/cpython | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/cpython/pystate.h /root/apps/interpreters/python/install/host/include/python3.13d/cpython | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/cpython/pystats.h /root/apps/interpreters/python/install/host/include/python3.13d/cpython | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/cpython/pythonrun.h /root/apps/interpreters/python/install/host/include/python3.13d/cpython | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/cpython/pythread.h /root/apps/interpreters/python/install/host/include/python3.13d/cpython | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/cpython/pytime.h /root/apps/interpreters/python/install/host/include/python3.13d/cpython | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/cpython/setobject.h /root/apps/interpreters/python/install/host/include/python3.13d/cpython | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/cpython/sysmodule.h /root/apps/interpreters/python/install/host/include/python3.13d/cpython | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/cpython/traceback.h /root/apps/interpreters/python/install/host/include/python3.13d/cpython | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/cpython/tracemalloc.h /root/apps/interpreters/python/install/host/include/python3.13d/cpython | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/cpython/tupleobject.h /root/apps/interpreters/python/install/host/include/python3.13d/cpython | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/cpython/unicodeobject.h /root/apps/interpreters/python/install/host/include/python3.13d/cpython | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/cpython/warnings.h /root/apps/interpreters/python/install/host/include/python3.13d/cpython | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/cpython/weakrefobject.h /root/apps/interpreters/python/install/host/include/python3.13d/cpython | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_abstract.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_asdl.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_ast.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_ast_state.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_atexit.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_backoff.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_bitutils.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_blocks_output_buffer.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_brc.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_bytes_methods.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_bytesobject.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_call.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_capsule.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_cell.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_ceval.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_ceval_state.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_code.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_codecs.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_compile.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_complexobject.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_condvar.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_context.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_critical_section.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_crossinterp.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_descrobject.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_dict.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_dict_state.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_dtoa.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_emscripten_signal.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_emscripten_trampoline.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_exceptions.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_faulthandler.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_fileutils.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_fileutils_windows.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_floatobject.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_flowgraph.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_format.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_frame.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_freelist.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_function.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_gc.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_genobject.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_getopt.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_gil.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_global_objects.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_global_objects_fini_generated.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_global_strings.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_hamt.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_hashtable.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_identifier.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_import.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_importdl.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_initconfig.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_instruction_sequence.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_instruments.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_interp.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_intrinsics.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_jit.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_list.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_llist.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_lock.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_long.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_memoryobject.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_mimalloc.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_modsupport.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_moduleobject.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_namespace.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_object.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_object_alloc.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_object_stack.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_object_state.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_obmalloc.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_obmalloc_init.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_opcode_metadata.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_opcode_utils.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_optimizer.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_parking_lot.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_parser.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_pathconfig.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_pyarena.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_pyatomic_ft_wrappers.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_pybuffer.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_pyerrors.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_pyhash.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_pylifecycle.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_pymath.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_pymem.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_pymem_init.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_pystate.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_pystats.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_pythonrun.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_pythread.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_qsbr.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_range.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_runtime.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_runtime_init.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_runtime_init_generated.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_semaphore.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_setobject.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_signal.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_sliceobject.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_stackref.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_strhex.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_structseq.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_symtable.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_sysmodule.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_time.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_token.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_traceback.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_tracemalloc.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_tstate.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_tuple.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_typeobject.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_typevarobject.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_ucnhash.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_unicodeobject.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_unicodeobject_generated.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_unionobject.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_uop_ids.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_uop_metadata.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_warnings.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/pycore_weakref.h /root/apps/interpreters/python/install/host/include/python3.13d/internal | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/mimalloc/mimalloc.h /root/apps/interpreters/python/install/host/include/python3.13d/internal/mimalloc/mimalloc.h | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/mimalloc/mimalloc/atomic.h /root/apps/interpreters/python/install/host/include/python3.13d/internal/mimalloc/mimalloc | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/mimalloc/mimalloc/internal.h /root/apps/interpreters/python/install/host/include/python3.13d/internal/mimalloc/mimalloc | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/mimalloc/mimalloc/prim.h /root/apps/interpreters/python/install/host/include/python3.13d/internal/mimalloc/mimalloc | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/mimalloc/mimalloc/track.h /root/apps/interpreters/python/install/host/include/python3.13d/internal/mimalloc/mimalloc | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Include/internal/mimalloc/mimalloc/types.h /root/apps/interpreters/python/install/host/include/python3.13d/internal/mimalloc/mimalloc | |
/usr/bin/install -c -m 644 pyconfig.h /root/apps/interpreters/python/install/host/include/python3.13d/pyconfig.h | |
Creating directory /root/apps/interpreters/python/install/host/bin | |
Creating directory /root/apps/interpreters/python/install/host/lib | |
The following modules are *disabled* in configure script: | |
_sqlite3 | |
The necessary bits to build these optional modules were not found: | |
_bz2 _dbm _gdbm | |
_lzma _tkinter readline | |
To find the necessary bits, look in configure.ac and config.log. | |
Checked 112 modules (33 built-in, 71 shared, 1 n/a on linux-x86_64, 1 disabled, 6 missing, 0 failed on import) | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13 | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/config-3.13d-x86_64-linux-gnu | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13 | |
Creating directory /root/apps/interpreters/python/install/host/lib/pkgconfig | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/asyncio | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/collections | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/concurrent | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/concurrent/futures | |
/usr/bin/install -c -m 755 Modules/array.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/array.cpython-313d-x86_64-linux-gnu.so | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/ctypes | |
/usr/bin/install -c -m 755 Modules/_asyncio.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/_asyncio.cpython-313d-x86_64-linux-gnu.so | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/ctypes/macholib | |
/usr/bin/install -c -m 755 Modules/_bisect.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/_bisect.cpython-313d-x86_64-linux-gnu.so | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/curses | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/dbm | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/email | |
/usr/bin/install -c -m 755 Modules/_contextvars.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/_contextvars.cpython-313d-x86_64-linux-gnu.so | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/email/mime | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/ensurepip | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/ensurepip/_bundled | |
/usr/bin/install -c -m 755 Modules/_csv.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/_csv.cpython-313d-x86_64-linux-gnu.so | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/html | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/http | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 755 Modules/_heapq.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/_heapq.cpython-313d-x86_64-linux-gnu.so | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/Icons | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/importlib | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/importlib/resources | |
/usr/bin/install -c -m 755 Modules/_json.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/_json.cpython-313d-x86_64-linux-gnu.so | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/importlib/metadata | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/json | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/logging | |
/usr/bin/install -c -m 755 Modules/_lsprof.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/_lsprof.cpython-313d-x86_64-linux-gnu.so | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/multiprocessing | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/multiprocessing/dummy | |
/usr/bin/install -c -m 755 Modules/_opcode.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/_opcode.cpython-313d-x86_64-linux-gnu.so | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/pathlib | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/pydoc_data | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/re | |
/usr/bin/install -c -m 755 Modules/_pickle.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/_pickle.cpython-313d-x86_64-linux-gnu.so | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/site-packages | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/sqlite3 | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/sysconfig | |
/usr/bin/install -c -m 755 Modules/_queue.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/_queue.cpython-313d-x86_64-linux-gnu.so | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/tkinter | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/tomllib | |
/usr/bin/install -c -m 755 Modules/_random.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/_random.cpython-313d-x86_64-linux-gnu.so | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/turtledemo | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/unittest | |
/usr/bin/install -c -m 755 Modules/_struct.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/_struct.cpython-313d-x86_64-linux-gnu.so | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/urllib | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/venv | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/venv/scripts | |
/usr/bin/install -c -m 755 Modules/_interpreters.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/_interpreters.cpython-313d-x86_64-linux-gnu.so | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/venv/scripts/common | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/venv/scripts/posix | |
/usr/bin/install -c -m 755 Modules/_interpchannels.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/_interpchannels.cpython-313d-x86_64-linux-gnu.so | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/wsgiref | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/xml | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/xml/dom | |
/usr/bin/install -c -m 755 Modules/_interpqueues.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/_interpqueues.cpython-313d-x86_64-linux-gnu.so | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/xml/etree | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/xml/parsers | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/xml/sax | |
/usr/bin/install -c -m 755 Modules/_zoneinfo.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/_zoneinfo.cpython-313d-x86_64-linux-gnu.so | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/xmlrpc | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/zipfile | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/zipfile/_path | |
/usr/bin/install -c -m 755 Modules/math.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/math.cpython-313d-x86_64-linux-gnu.so | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/zoneinfo | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/_pyrepl | |
/usr/bin/install -c -m 755 Modules/cmath.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/cmath.cpython-313d-x86_64-linux-gnu.so | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/__phello__ | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 755 Modules/_statistics.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/_statistics.cpython-313d-x86_64-linux-gnu.so | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_ast | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/archivetestdata | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/audiodata | |
/usr/bin/install -c -m 755 Modules/_datetime.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/_datetime.cpython-313d-x86_64-linux-gnu.so | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/certdata | |
/usr/bin/install -c -m 755 Modules/_decimal.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/_decimal.cpython-313d-x86_64-linux-gnu.so | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/certdata/capath | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/cjkencodings | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/configdata | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/crashers | |
/usr/bin/install -c -m 755 Modules/binascii.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/binascii.cpython-313d-x86_64-linux-gnu.so | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/data | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/dtracedata | |
/usr/bin/install -c -m 755 Modules/zlib.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/zlib.cpython-313d-x86_64-linux-gnu.so | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/encoded_modules | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/leakers | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/libregrtest | |
/usr/bin/install -c -m 755 Modules/_md5.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/_md5.cpython-313d-x86_64-linux-gnu.so | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/mathdata | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/regrtestdata | |
/usr/bin/install -c -m 755 Modules/_sha1.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/_sha1.cpython-313d-x86_64-linux-gnu.so | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/regrtestdata/import_from_tests | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/regrtestdata/import_from_tests/test_regrtest_b | |
/usr/bin/install -c -m 755 Modules/_sha2.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/_sha2.cpython-313d-x86_64-linux-gnu.so | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/subprocessdata | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/support | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/support/_hypothesis_stubs | |
/usr/bin/install -c -m 755 Modules/_sha3.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/_sha3.cpython-313d-x86_64-linux-gnu.so | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/support/interpreters | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_capi | |
/usr/bin/install -c -m 755 Modules/_blake2.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/_blake2.cpython-313d-x86_64-linux-gnu.so | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_cext | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_concurrent_futures | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_cppext | |
/usr/bin/install -c -m 755 Modules/pyexpat.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/pyexpat.cpython-313d-x86_64-linux-gnu.so | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_dataclasses | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_doctest | |
/usr/bin/install -c -m 755 Modules/_elementtree.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/_elementtree.cpython-313d-x86_64-linux-gnu.so | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/data | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_free_threading | |
/usr/bin/install -c -m 755 Modules/_codecs_cn.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/_codecs_cn.cpython-313d-x86_64-linux-gnu.so | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_future_stmt | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_gdb | |
/usr/bin/install -c -m 755 Modules/_codecs_hk.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/_codecs_hk.cpython-313d-x86_64-linux-gnu.so | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_import | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/circular_imports | |
/usr/bin/install -c -m 755 Modules/_codecs_iso2022.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/_codecs_iso2022.cpython-313d-x86_64-linux-gnu.so | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/circular_imports/subpkg | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/circular_imports/subpkg2 | |
/usr/bin/install -c -m 755 Modules/_codecs_jp.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/_codecs_jp.cpython-313d-x86_64-linux-gnu.so | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/circular_imports/subpkg2/parent | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/package | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/package2 | |
/usr/bin/install -c -m 755 Modules/_codecs_kr.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/_codecs_kr.cpython-313d-x86_64-linux-gnu.so | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/package3 | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/package4 | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/unwritable | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib | |
/usr/bin/install -c -m 755 Modules/_codecs_tw.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/_codecs_tw.cpython-313d-x86_64-linux-gnu.so | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/builtin | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/extension | |
/usr/bin/install -c -m 755 Modules/_multibytecodec.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/_multibytecodec.cpython-313d-x86_64-linux-gnu.so | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/frozen | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/import_ | |
/usr/bin/install -c -m 755 Modules/unicodedata.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/unicodedata.cpython-313d-x86_64-linux-gnu.so | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/metadata | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/metadata/data | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/metadata/data/sources | |
/usr/bin/install -c -m 755 Modules/fcntl.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/fcntl.cpython-313d-x86_64-linux-gnu.so | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/metadata/data/sources/example | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/metadata/data/sources/example/example | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/metadata/data/sources/example2 | |
/usr/bin/install -c -m 755 Modules/grp.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/grp.cpython-313d-x86_64-linux-gnu.so | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/metadata/data/sources/example2/example2 | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/namespace_pkgs | |
/usr/bin/install -c -m 755 Modules/mmap.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/mmap.cpython-313d-x86_64-linux-gnu.so | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/namespace_pkgs/both_portions | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/namespace_pkgs/both_portions/foo | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/namespace_pkgs/module_and_namespace_package | |
/usr/bin/install -c -m 755 Modules/_posixsubprocess.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/_posixsubprocess.cpython-313d-x86_64-linux-gnu.so | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/namespace_pkgs/module_and_namespace_package/a_test | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/namespace_pkgs/not_a_namespace_pkg | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/namespace_pkgs/not_a_namespace_pkg/foo | |
/usr/bin/install -c -m 755 Modules/resource.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/resource.cpython-313d-x86_64-linux-gnu.so | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/namespace_pkgs/portion1 | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/namespace_pkgs/portion1/foo | |
/usr/bin/install -c -m 755 Modules/select.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/select.cpython-313d-x86_64-linux-gnu.so | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/namespace_pkgs/portion2 | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/namespace_pkgs/portion2/foo | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/namespace_pkgs/project1 | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/namespace_pkgs/project1/parent | |
/usr/bin/install -c -m 755 Modules/_socket.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/_socket.cpython-313d-x86_64-linux-gnu.so | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/namespace_pkgs/project1/parent/child | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/namespace_pkgs/project2 | |
/usr/bin/install -c -m 755 Modules/syslog.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/syslog.cpython-313d-x86_64-linux-gnu.so | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/namespace_pkgs/project2/parent | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/namespace_pkgs/project2/parent/child | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/namespace_pkgs/project3 | |
/usr/bin/install -c -m 755 Modules/termios.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/termios.cpython-313d-x86_64-linux-gnu.so | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/namespace_pkgs/project3/parent | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/namespace_pkgs/project3/parent/child | |
/usr/bin/install -c -m 755 Modules/_posixshmem.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/_posixshmem.cpython-313d-x86_64-linux-gnu.so | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/partial | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/resources | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/source | |
/usr/bin/install -c -m 755 Modules/_multiprocessing.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/_multiprocessing.cpython-313d-x86_64-linux-gnu.so | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_inspect | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_interpreters | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_json | |
/usr/bin/install -c -m 755 Modules/_ctypes.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/_ctypes.cpython-313d-x86_64-linux-gnu.so | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_module | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_multiprocessing_fork | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_multiprocessing_forkserver | |
/usr/bin/install -c -m 755 Modules/_curses.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/_curses.cpython-313d-x86_64-linux-gnu.so | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_multiprocessing_spawn | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_pathlib | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_peg_generator | |
/usr/bin/install -c -m 755 Modules/_curses_panel.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/_curses_panel.cpython-313d-x86_64-linux-gnu.so | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_pydoc | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_pyrepl | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_sqlite3 | |
/usr/bin/install -c -m 755 Modules/_ssl.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/_ssl.cpython-313d-x86_64-linux-gnu.so | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tkinter | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data | |
/usr/bin/install -c -m 755 Modules/_hashlib.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/_hashlib.cpython-313d-x86_64-linux-gnu.so | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid/array | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid/array-of-tables | |
/usr/bin/install -c -m 755 Modules/_uuid.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/_uuid.cpython-313d-x86_64-linux-gnu.so | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid/boolean | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid/dates-and-times | |
/usr/bin/install -c -m 755 Modules/xxsubtype.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/xxsubtype.cpython-313d-x86_64-linux-gnu.so | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid/dotted-keys | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid/inline-table | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid/keys-and-vals | |
/usr/bin/install -c -m 755 Modules/_xxtestfuzz.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/_xxtestfuzz.cpython-313d-x86_64-linux-gnu.so | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid/literal-str | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid/multiline-basic-str | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid/multiline-literal-str | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid/table | |
/usr/bin/install -c -m 755 Modules/_testbuffer.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/_testbuffer.cpython-313d-x86_64-linux-gnu.so | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/valid | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/valid/array | |
/usr/bin/install -c -m 755 Modules/_testinternalcapi.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/_testinternalcapi.cpython-313d-x86_64-linux-gnu.so | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/valid/dates-and-times | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/valid/multiline-basic-str | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tools | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_ttk | |
/usr/bin/install -c -m 755 Modules/_testcapi.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/_testcapi.cpython-313d-x86_64-linux-gnu.so | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_unittest | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_unittest/testmock | |
/usr/bin/install -c -m 755 Modules/_testlimitedcapi.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/_testlimitedcapi.cpython-313d-x86_64-linux-gnu.so | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_warnings | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_warnings/data | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_zipfile | |
/usr/bin/install -c -m 755 Modules/_testclinic.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/_testclinic.cpython-313d-x86_64-linux-gnu.so | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_zipfile/_path | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_zoneinfo | |
/usr/bin/install -c -m 755 Modules/_testclinic_limited.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/_testclinic_limited.cpython-313d-x86_64-linux-gnu.so | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/test_zoneinfo/data | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/tkinterdata | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/tokenizedata | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/tracedmodules | |
/usr/bin/install -c -m 755 Modules/_testimportmultiple.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/_testimportmultiple.cpython-313d-x86_64-linux-gnu.so | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/typinganndata | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/wheeldata | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/xmltestdata | |
/usr/bin/install -c -m 755 Modules/_testmultiphase.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/_testmultiphase.cpython-313d-x86_64-linux-gnu.so | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/xmltestdata/c14n-20 | |
Creating directory /root/apps/interpreters/python/install/host/lib/python3.13/test/zipimport_data | |
/usr/bin/install -c -m 755 Modules/_testsinglephase.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/_testsinglephase.cpython-313d-x86_64-linux-gnu.so | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/__future__.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 755 Modules/_testexternalinspection.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/_testexternalinspection.cpython-313d-x86_64-linux-gnu.so | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/__hello__.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/_aix_support.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/_android_support.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/_collections_abc.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 755 Modules/_ctypes_test.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/_ctypes_test.cpython-313d-x86_64-linux-gnu.so | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/_colorize.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 755 Modules/xxlimited.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/xxlimited.cpython-313d-x86_64-linux-gnu.so | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/_compat_pickle.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/_compression.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/_ios_support.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 755 Modules/xxlimited_35.cpython-313d-x86_64-linux-gnu.so /root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload/xxlimited_35.cpython-313d-x86_64-linux-gnu.so | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/_markupbase.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/_opcode_metadata.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/_osx_support.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/_py_abc.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/_pydatetime.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/_pydecimal.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/_pyio.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/_pylong.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/_sitebuiltins.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/_strptime.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/_threading_local.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/_weakrefset.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/abc.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/antigravity.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/argparse.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/ast.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c /root/apps/interpreters/python/Python/Lib/base64.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/bdb.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/bisect.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/bz2.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c /root/apps/interpreters/python/Python/Lib/cProfile.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/calendar.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/cmd.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/code.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/codecs.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/codeop.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/colorsys.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/compileall.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/configparser.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/contextlib.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/contextvars.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/copy.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/copyreg.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/csv.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/dataclasses.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/datetime.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/decimal.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/difflib.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/dis.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/doctest.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/enum.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/filecmp.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/fileinput.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/fnmatch.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/fractions.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/ftplib.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/functools.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/genericpath.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/getopt.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/getpass.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/gettext.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/glob.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/graphlib.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/gzip.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/hashlib.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/heapq.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/hmac.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/imaplib.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/inspect.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/io.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/ipaddress.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/keyword.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/linecache.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/locale.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/lzma.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/mailbox.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/mimetypes.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/modulefinder.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/netrc.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/ntpath.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/nturl2path.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/numbers.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/opcode.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/operator.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/optparse.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/os.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c /root/apps/interpreters/python/Python/Lib/pdb.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/pickle.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/pickletools.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/pkgutil.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c /root/apps/interpreters/python/Python/Lib/platform.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/plistlib.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/poplib.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/posixpath.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/pprint.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c /root/apps/interpreters/python/Python/Lib/profile.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/pstats.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/pty.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/py_compile.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/pyclbr.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c /root/apps/interpreters/python/Python/Lib/pydoc.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/queue.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c /root/apps/interpreters/python/Python/Lib/quopri.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/random.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/reprlib.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/rlcompleter.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/runpy.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/sched.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/secrets.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/selectors.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/shelve.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/shlex.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/shutil.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/signal.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/site.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c /root/apps/interpreters/python/Python/Lib/smtplib.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/socket.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/socketserver.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/sre_compile.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/sre_constants.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/sre_parse.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/ssl.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/stat.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/statistics.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/string.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/stringprep.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/struct.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/subprocess.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/symtable.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c /root/apps/interpreters/python/Python/Lib/tabnanny.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c /root/apps/interpreters/python/Python/Lib/tarfile.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/tempfile.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/textwrap.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/this.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/threading.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c /root/apps/interpreters/python/Python/Lib/timeit.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/token.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/tokenize.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c /root/apps/interpreters/python/Python/Lib/trace.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/traceback.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/tracemalloc.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/tty.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/turtle.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/types.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/typing.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/uuid.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/warnings.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/wave.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/weakref.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c /root/apps/interpreters/python/Python/Lib/webbrowser.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/zipapp.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/zipimport.py /root/apps/interpreters/python/install/host/lib/python3.13 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/asyncio/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/asyncio/__main__.py /root/apps/interpreters/python/install/host/lib/python3.13/asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/asyncio/base_events.py /root/apps/interpreters/python/install/host/lib/python3.13/asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/asyncio/base_futures.py /root/apps/interpreters/python/install/host/lib/python3.13/asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/asyncio/base_subprocess.py /root/apps/interpreters/python/install/host/lib/python3.13/asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/asyncio/base_tasks.py /root/apps/interpreters/python/install/host/lib/python3.13/asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/asyncio/constants.py /root/apps/interpreters/python/install/host/lib/python3.13/asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/asyncio/coroutines.py /root/apps/interpreters/python/install/host/lib/python3.13/asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/asyncio/events.py /root/apps/interpreters/python/install/host/lib/python3.13/asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/asyncio/exceptions.py /root/apps/interpreters/python/install/host/lib/python3.13/asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/asyncio/format_helpers.py /root/apps/interpreters/python/install/host/lib/python3.13/asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/asyncio/futures.py /root/apps/interpreters/python/install/host/lib/python3.13/asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/asyncio/locks.py /root/apps/interpreters/python/install/host/lib/python3.13/asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/asyncio/log.py /root/apps/interpreters/python/install/host/lib/python3.13/asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/asyncio/mixins.py /root/apps/interpreters/python/install/host/lib/python3.13/asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/asyncio/proactor_events.py /root/apps/interpreters/python/install/host/lib/python3.13/asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/asyncio/protocols.py /root/apps/interpreters/python/install/host/lib/python3.13/asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/asyncio/queues.py /root/apps/interpreters/python/install/host/lib/python3.13/asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/asyncio/runners.py /root/apps/interpreters/python/install/host/lib/python3.13/asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/asyncio/selector_events.py /root/apps/interpreters/python/install/host/lib/python3.13/asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/asyncio/sslproto.py /root/apps/interpreters/python/install/host/lib/python3.13/asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/asyncio/staggered.py /root/apps/interpreters/python/install/host/lib/python3.13/asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/asyncio/streams.py /root/apps/interpreters/python/install/host/lib/python3.13/asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/asyncio/subprocess.py /root/apps/interpreters/python/install/host/lib/python3.13/asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/asyncio/taskgroups.py /root/apps/interpreters/python/install/host/lib/python3.13/asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/asyncio/tasks.py /root/apps/interpreters/python/install/host/lib/python3.13/asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/asyncio/threads.py /root/apps/interpreters/python/install/host/lib/python3.13/asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/asyncio/timeouts.py /root/apps/interpreters/python/install/host/lib/python3.13/asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/asyncio/transports.py /root/apps/interpreters/python/install/host/lib/python3.13/asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/asyncio/trsock.py /root/apps/interpreters/python/install/host/lib/python3.13/asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/asyncio/unix_events.py /root/apps/interpreters/python/install/host/lib/python3.13/asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/asyncio/windows_events.py /root/apps/interpreters/python/install/host/lib/python3.13/asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/asyncio/windows_utils.py /root/apps/interpreters/python/install/host/lib/python3.13/asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/collections/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/collections | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/collections/abc.py /root/apps/interpreters/python/install/host/lib/python3.13/collections | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/concurrent/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/concurrent | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/concurrent/futures/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/concurrent/futures | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/concurrent/futures/_base.py /root/apps/interpreters/python/install/host/lib/python3.13/concurrent/futures | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/concurrent/futures/process.py /root/apps/interpreters/python/install/host/lib/python3.13/concurrent/futures | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/concurrent/futures/thread.py /root/apps/interpreters/python/install/host/lib/python3.13/concurrent/futures | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/ctypes/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/ctypes | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/ctypes/_aix.py /root/apps/interpreters/python/install/host/lib/python3.13/ctypes | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/ctypes/_endian.py /root/apps/interpreters/python/install/host/lib/python3.13/ctypes | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/ctypes/util.py /root/apps/interpreters/python/install/host/lib/python3.13/ctypes | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/ctypes/wintypes.py /root/apps/interpreters/python/install/host/lib/python3.13/ctypes | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/ctypes/macholib/README.ctypes /root/apps/interpreters/python/install/host/lib/python3.13/ctypes/macholib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/ctypes/macholib/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/ctypes/macholib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/ctypes/macholib/dyld.py /root/apps/interpreters/python/install/host/lib/python3.13/ctypes/macholib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/ctypes/macholib/dylib.py /root/apps/interpreters/python/install/host/lib/python3.13/ctypes/macholib | |
/usr/bin/install -c /root/apps/interpreters/python/Python/Lib/ctypes/macholib/fetch_macholib /root/apps/interpreters/python/install/host/lib/python3.13/ctypes/macholib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/ctypes/macholib/fetch_macholib.bat /root/apps/interpreters/python/install/host/lib/python3.13/ctypes/macholib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/ctypes/macholib/framework.py /root/apps/interpreters/python/install/host/lib/python3.13/ctypes/macholib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/curses/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/curses | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/curses/ascii.py /root/apps/interpreters/python/install/host/lib/python3.13/curses | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/curses/has_key.py /root/apps/interpreters/python/install/host/lib/python3.13/curses | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/curses/panel.py /root/apps/interpreters/python/install/host/lib/python3.13/curses | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/curses/textpad.py /root/apps/interpreters/python/install/host/lib/python3.13/curses | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/dbm/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/dbm | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/dbm/dumb.py /root/apps/interpreters/python/install/host/lib/python3.13/dbm | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/dbm/gnu.py /root/apps/interpreters/python/install/host/lib/python3.13/dbm | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/dbm/ndbm.py /root/apps/interpreters/python/install/host/lib/python3.13/dbm | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/dbm/sqlite3.py /root/apps/interpreters/python/install/host/lib/python3.13/dbm | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/email/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/email | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/email/_encoded_words.py /root/apps/interpreters/python/install/host/lib/python3.13/email | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/email/_header_value_parser.py /root/apps/interpreters/python/install/host/lib/python3.13/email | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/email/_parseaddr.py /root/apps/interpreters/python/install/host/lib/python3.13/email | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/email/_policybase.py /root/apps/interpreters/python/install/host/lib/python3.13/email | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/email/architecture.rst /root/apps/interpreters/python/install/host/lib/python3.13/email | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/email/base64mime.py /root/apps/interpreters/python/install/host/lib/python3.13/email | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/email/charset.py /root/apps/interpreters/python/install/host/lib/python3.13/email | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/email/contentmanager.py /root/apps/interpreters/python/install/host/lib/python3.13/email | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/email/encoders.py /root/apps/interpreters/python/install/host/lib/python3.13/email | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/email/errors.py /root/apps/interpreters/python/install/host/lib/python3.13/email | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/email/feedparser.py /root/apps/interpreters/python/install/host/lib/python3.13/email | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/email/generator.py /root/apps/interpreters/python/install/host/lib/python3.13/email | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/email/header.py /root/apps/interpreters/python/install/host/lib/python3.13/email | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/email/headerregistry.py /root/apps/interpreters/python/install/host/lib/python3.13/email | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/email/iterators.py /root/apps/interpreters/python/install/host/lib/python3.13/email | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/email/message.py /root/apps/interpreters/python/install/host/lib/python3.13/email | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/email/parser.py /root/apps/interpreters/python/install/host/lib/python3.13/email | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/email/policy.py /root/apps/interpreters/python/install/host/lib/python3.13/email | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/email/quoprimime.py /root/apps/interpreters/python/install/host/lib/python3.13/email | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/email/utils.py /root/apps/interpreters/python/install/host/lib/python3.13/email | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/email/mime/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/email/mime | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/email/mime/application.py /root/apps/interpreters/python/install/host/lib/python3.13/email/mime | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/email/mime/audio.py /root/apps/interpreters/python/install/host/lib/python3.13/email/mime | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/email/mime/base.py /root/apps/interpreters/python/install/host/lib/python3.13/email/mime | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/email/mime/image.py /root/apps/interpreters/python/install/host/lib/python3.13/email/mime | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/email/mime/message.py /root/apps/interpreters/python/install/host/lib/python3.13/email/mime | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/email/mime/multipart.py /root/apps/interpreters/python/install/host/lib/python3.13/email/mime | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/email/mime/nonmultipart.py /root/apps/interpreters/python/install/host/lib/python3.13/email/mime | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/email/mime/text.py /root/apps/interpreters/python/install/host/lib/python3.13/email/mime | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/aliases.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/ascii.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/base64_codec.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/big5.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/big5hkscs.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/bz2_codec.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/charmap.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/cp037.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/cp1006.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/cp1026.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/cp1125.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/cp1140.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/cp1250.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/cp1251.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/cp1252.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/cp1253.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/cp1254.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/cp1255.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/cp1256.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/cp1257.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/cp1258.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/cp273.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/cp424.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/cp437.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/cp500.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/cp720.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/cp737.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/cp775.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/cp850.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/cp852.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/cp855.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/cp856.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/cp857.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/cp858.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/cp860.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/cp861.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/cp862.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/cp863.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/cp864.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/cp865.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/cp866.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/cp869.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/cp874.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/cp875.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/cp932.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/cp949.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/cp950.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/euc_jis_2004.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/euc_jisx0213.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/euc_jp.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/euc_kr.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/gb18030.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/gb2312.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/gbk.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/hex_codec.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/hp_roman8.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/hz.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/idna.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/iso2022_jp.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/iso2022_jp_1.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/iso2022_jp_2.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/iso2022_jp_2004.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/iso2022_jp_3.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/iso2022_jp_ext.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/iso2022_kr.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/iso8859_1.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/iso8859_10.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/iso8859_11.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/iso8859_13.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/iso8859_14.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/iso8859_15.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/iso8859_16.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/iso8859_2.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/iso8859_3.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/iso8859_4.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/iso8859_5.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/iso8859_6.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/iso8859_7.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/iso8859_8.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/iso8859_9.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/johab.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/koi8_r.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/koi8_t.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/koi8_u.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/kz1048.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/latin_1.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/mac_arabic.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/mac_croatian.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/mac_cyrillic.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/mac_farsi.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/mac_greek.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/mac_iceland.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/mac_latin2.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/mac_roman.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/mac_romanian.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/mac_turkish.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/mbcs.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/oem.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/palmos.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/ptcp154.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/punycode.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/quopri_codec.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/raw_unicode_escape.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c /root/apps/interpreters/python/Python/Lib/encodings/rot_13.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/shift_jis.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/shift_jis_2004.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/shift_jisx0213.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/tis_620.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/undefined.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/unicode_escape.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/utf_16.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/utf_16_be.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/utf_16_le.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/utf_32.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/utf_32_be.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/utf_32_le.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/utf_7.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/utf_8.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/utf_8_sig.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/uu_codec.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/encodings/zlib_codec.py /root/apps/interpreters/python/install/host/lib/python3.13/encodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/ensurepip/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/ensurepip | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/ensurepip/__main__.py /root/apps/interpreters/python/install/host/lib/python3.13/ensurepip | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/ensurepip/_uninstall.py /root/apps/interpreters/python/install/host/lib/python3.13/ensurepip | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/ensurepip/_bundled/pip-24.2-py3-none-any.whl /root/apps/interpreters/python/install/host/lib/python3.13/ensurepip/_bundled | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/html/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/html | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/html/entities.py /root/apps/interpreters/python/install/host/lib/python3.13/html | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/html/parser.py /root/apps/interpreters/python/install/host/lib/python3.13/html | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/http/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/http | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/http/client.py /root/apps/interpreters/python/install/host/lib/python3.13/http | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/http/cookiejar.py /root/apps/interpreters/python/install/host/lib/python3.13/http | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/http/cookies.py /root/apps/interpreters/python/install/host/lib/python3.13/http | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/http/server.py /root/apps/interpreters/python/install/host/lib/python3.13/http | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/CREDITS.txt /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/ChangeLog /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/HISTORY.txt /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/NEWS2x.txt /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/News3.txt /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/README.txt /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/TODO.txt /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/__main__.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/autocomplete.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/autocomplete_w.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/autoexpand.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/browser.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/calltip.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/calltip_w.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/codecontext.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/colorizer.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/config-extensions.def /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/config-highlight.def /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/config-keys.def /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/config-main.def /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/config.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/config_key.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/configdialog.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/debugger.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/debugger_r.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/debugobj.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/debugobj_r.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/delegator.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/dynoption.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/editor.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/extend.txt /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/filelist.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/format.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/grep.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/help.html /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/help.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/help_about.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/history.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/hyperparser.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle.bat /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle.pyw /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/iomenu.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/macosx.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/mainmenu.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/multicall.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/outwin.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/parenmatch.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/pathbrowser.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/percolator.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/pyparse.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c /root/apps/interpreters/python/Python/Lib/idlelib/pyshell.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/query.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/redirector.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/replace.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/rpc.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/run.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/runscript.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/scrolledlist.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/search.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/searchbase.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/searchengine.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/sidebar.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/squeezer.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/stackviewer.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/statusbar.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/textview.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/tooltip.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/tree.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/undo.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/util.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/window.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/zoomheight.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/zzdummy.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/Icons/README.txt /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/Icons | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/Icons/folder.gif /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/Icons | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/Icons/idle.ico /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/Icons | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/Icons/idle_16.gif /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/Icons | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/Icons/idle_16.png /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/Icons | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/Icons/idle_256.png /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/Icons | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/Icons/idle_32.gif /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/Icons | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/Icons/idle_32.png /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/Icons | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/Icons/idle_48.gif /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/Icons | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/Icons/idle_48.png /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/Icons | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/Icons/minusnode.gif /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/Icons | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/Icons/openfolder.gif /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/Icons | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/Icons/plusnode.gif /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/Icons | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/Icons/python.gif /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/Icons | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/Icons/tk.gif /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/Icons | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/importlib/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/importlib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/importlib/_abc.py /root/apps/interpreters/python/install/host/lib/python3.13/importlib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/importlib/_bootstrap.py /root/apps/interpreters/python/install/host/lib/python3.13/importlib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/importlib/_bootstrap_external.py /root/apps/interpreters/python/install/host/lib/python3.13/importlib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/importlib/abc.py /root/apps/interpreters/python/install/host/lib/python3.13/importlib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/importlib/machinery.py /root/apps/interpreters/python/install/host/lib/python3.13/importlib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/importlib/readers.py /root/apps/interpreters/python/install/host/lib/python3.13/importlib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/importlib/simple.py /root/apps/interpreters/python/install/host/lib/python3.13/importlib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/importlib/util.py /root/apps/interpreters/python/install/host/lib/python3.13/importlib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/importlib/resources/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/importlib/resources | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/importlib/resources/_adapters.py /root/apps/interpreters/python/install/host/lib/python3.13/importlib/resources | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/importlib/resources/_common.py /root/apps/interpreters/python/install/host/lib/python3.13/importlib/resources | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/importlib/resources/_functional.py /root/apps/interpreters/python/install/host/lib/python3.13/importlib/resources | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/importlib/resources/_itertools.py /root/apps/interpreters/python/install/host/lib/python3.13/importlib/resources | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/importlib/resources/abc.py /root/apps/interpreters/python/install/host/lib/python3.13/importlib/resources | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/importlib/resources/readers.py /root/apps/interpreters/python/install/host/lib/python3.13/importlib/resources | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/importlib/resources/simple.py /root/apps/interpreters/python/install/host/lib/python3.13/importlib/resources | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/importlib/metadata/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/importlib/metadata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/importlib/metadata/_adapters.py /root/apps/interpreters/python/install/host/lib/python3.13/importlib/metadata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/importlib/metadata/_collections.py /root/apps/interpreters/python/install/host/lib/python3.13/importlib/metadata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/importlib/metadata/_functools.py /root/apps/interpreters/python/install/host/lib/python3.13/importlib/metadata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/importlib/metadata/_itertools.py /root/apps/interpreters/python/install/host/lib/python3.13/importlib/metadata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/importlib/metadata/_meta.py /root/apps/interpreters/python/install/host/lib/python3.13/importlib/metadata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/importlib/metadata/_text.py /root/apps/interpreters/python/install/host/lib/python3.13/importlib/metadata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/importlib/metadata/diagnose.py /root/apps/interpreters/python/install/host/lib/python3.13/importlib/metadata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/json/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/json | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/json/decoder.py /root/apps/interpreters/python/install/host/lib/python3.13/json | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/json/encoder.py /root/apps/interpreters/python/install/host/lib/python3.13/json | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/json/scanner.py /root/apps/interpreters/python/install/host/lib/python3.13/json | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/json/tool.py /root/apps/interpreters/python/install/host/lib/python3.13/json | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/logging/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/logging | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/logging/config.py /root/apps/interpreters/python/install/host/lib/python3.13/logging | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/logging/handlers.py /root/apps/interpreters/python/install/host/lib/python3.13/logging | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/multiprocessing/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/multiprocessing | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/multiprocessing/connection.py /root/apps/interpreters/python/install/host/lib/python3.13/multiprocessing | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/multiprocessing/context.py /root/apps/interpreters/python/install/host/lib/python3.13/multiprocessing | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/multiprocessing/forkserver.py /root/apps/interpreters/python/install/host/lib/python3.13/multiprocessing | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/multiprocessing/heap.py /root/apps/interpreters/python/install/host/lib/python3.13/multiprocessing | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/multiprocessing/managers.py /root/apps/interpreters/python/install/host/lib/python3.13/multiprocessing | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/multiprocessing/pool.py /root/apps/interpreters/python/install/host/lib/python3.13/multiprocessing | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/multiprocessing/popen_fork.py /root/apps/interpreters/python/install/host/lib/python3.13/multiprocessing | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/multiprocessing/popen_forkserver.py /root/apps/interpreters/python/install/host/lib/python3.13/multiprocessing | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/multiprocessing/popen_spawn_posix.py /root/apps/interpreters/python/install/host/lib/python3.13/multiprocessing | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/multiprocessing/popen_spawn_win32.py /root/apps/interpreters/python/install/host/lib/python3.13/multiprocessing | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/multiprocessing/process.py /root/apps/interpreters/python/install/host/lib/python3.13/multiprocessing | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/multiprocessing/queues.py /root/apps/interpreters/python/install/host/lib/python3.13/multiprocessing | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/multiprocessing/reduction.py /root/apps/interpreters/python/install/host/lib/python3.13/multiprocessing | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/multiprocessing/resource_sharer.py /root/apps/interpreters/python/install/host/lib/python3.13/multiprocessing | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/multiprocessing/resource_tracker.py /root/apps/interpreters/python/install/host/lib/python3.13/multiprocessing | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/multiprocessing/shared_memory.py /root/apps/interpreters/python/install/host/lib/python3.13/multiprocessing | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/multiprocessing/sharedctypes.py /root/apps/interpreters/python/install/host/lib/python3.13/multiprocessing | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/multiprocessing/spawn.py /root/apps/interpreters/python/install/host/lib/python3.13/multiprocessing | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/multiprocessing/synchronize.py /root/apps/interpreters/python/install/host/lib/python3.13/multiprocessing | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/multiprocessing/util.py /root/apps/interpreters/python/install/host/lib/python3.13/multiprocessing | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/multiprocessing/dummy/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/multiprocessing/dummy | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/multiprocessing/dummy/connection.py /root/apps/interpreters/python/install/host/lib/python3.13/multiprocessing/dummy | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/pathlib/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/pathlib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/pathlib/_abc.py /root/apps/interpreters/python/install/host/lib/python3.13/pathlib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/pathlib/_local.py /root/apps/interpreters/python/install/host/lib/python3.13/pathlib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/pydoc_data/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/pydoc_data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/pydoc_data/_pydoc.css /root/apps/interpreters/python/install/host/lib/python3.13/pydoc_data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/pydoc_data/topics.py /root/apps/interpreters/python/install/host/lib/python3.13/pydoc_data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/re/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/re | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/re/_casefix.py /root/apps/interpreters/python/install/host/lib/python3.13/re | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/re/_compiler.py /root/apps/interpreters/python/install/host/lib/python3.13/re | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/re/_constants.py /root/apps/interpreters/python/install/host/lib/python3.13/re | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/re/_parser.py /root/apps/interpreters/python/install/host/lib/python3.13/re | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/site-packages/README.txt /root/apps/interpreters/python/install/host/lib/python3.13/site-packages | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/sqlite3/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/sqlite3 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/sqlite3/__main__.py /root/apps/interpreters/python/install/host/lib/python3.13/sqlite3 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/sqlite3/dbapi2.py /root/apps/interpreters/python/install/host/lib/python3.13/sqlite3 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/sqlite3/dump.py /root/apps/interpreters/python/install/host/lib/python3.13/sqlite3 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/sysconfig/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/sysconfig | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/sysconfig/__main__.py /root/apps/interpreters/python/install/host/lib/python3.13/sysconfig | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/tkinter/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/tkinter | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/tkinter/__main__.py /root/apps/interpreters/python/install/host/lib/python3.13/tkinter | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/tkinter/colorchooser.py /root/apps/interpreters/python/install/host/lib/python3.13/tkinter | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/tkinter/commondialog.py /root/apps/interpreters/python/install/host/lib/python3.13/tkinter | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/tkinter/constants.py /root/apps/interpreters/python/install/host/lib/python3.13/tkinter | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/tkinter/dialog.py /root/apps/interpreters/python/install/host/lib/python3.13/tkinter | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/tkinter/dnd.py /root/apps/interpreters/python/install/host/lib/python3.13/tkinter | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/tkinter/filedialog.py /root/apps/interpreters/python/install/host/lib/python3.13/tkinter | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/tkinter/font.py /root/apps/interpreters/python/install/host/lib/python3.13/tkinter | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/tkinter/messagebox.py /root/apps/interpreters/python/install/host/lib/python3.13/tkinter | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/tkinter/scrolledtext.py /root/apps/interpreters/python/install/host/lib/python3.13/tkinter | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/tkinter/simpledialog.py /root/apps/interpreters/python/install/host/lib/python3.13/tkinter | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/tkinter/ttk.py /root/apps/interpreters/python/install/host/lib/python3.13/tkinter | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/tomllib/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/tomllib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/tomllib/_parser.py /root/apps/interpreters/python/install/host/lib/python3.13/tomllib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/tomllib/_re.py /root/apps/interpreters/python/install/host/lib/python3.13/tomllib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/tomllib/_types.py /root/apps/interpreters/python/install/host/lib/python3.13/tomllib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/turtledemo/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/turtledemo | |
/usr/bin/install -c /root/apps/interpreters/python/Python/Lib/turtledemo/__main__.py /root/apps/interpreters/python/install/host/lib/python3.13/turtledemo | |
/usr/bin/install -c /root/apps/interpreters/python/Python/Lib/turtledemo/bytedesign.py /root/apps/interpreters/python/install/host/lib/python3.13/turtledemo | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/turtledemo/chaos.py /root/apps/interpreters/python/install/host/lib/python3.13/turtledemo | |
/usr/bin/install -c /root/apps/interpreters/python/Python/Lib/turtledemo/clock.py /root/apps/interpreters/python/install/host/lib/python3.13/turtledemo | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/turtledemo/colormixer.py /root/apps/interpreters/python/install/host/lib/python3.13/turtledemo | |
/usr/bin/install -c /root/apps/interpreters/python/Python/Lib/turtledemo/forest.py /root/apps/interpreters/python/install/host/lib/python3.13/turtledemo | |
/usr/bin/install -c /root/apps/interpreters/python/Python/Lib/turtledemo/fractalcurves.py /root/apps/interpreters/python/install/host/lib/python3.13/turtledemo | |
/usr/bin/install -c /root/apps/interpreters/python/Python/Lib/turtledemo/lindenmayer.py /root/apps/interpreters/python/install/host/lib/python3.13/turtledemo | |
/usr/bin/install -c /root/apps/interpreters/python/Python/Lib/turtledemo/minimal_hanoi.py /root/apps/interpreters/python/install/host/lib/python3.13/turtledemo | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/turtledemo/nim.py /root/apps/interpreters/python/install/host/lib/python3.13/turtledemo | |
/usr/bin/install -c /root/apps/interpreters/python/Python/Lib/turtledemo/paint.py /root/apps/interpreters/python/install/host/lib/python3.13/turtledemo | |
/usr/bin/install -c /root/apps/interpreters/python/Python/Lib/turtledemo/peace.py /root/apps/interpreters/python/install/host/lib/python3.13/turtledemo | |
/usr/bin/install -c /root/apps/interpreters/python/Python/Lib/turtledemo/penrose.py /root/apps/interpreters/python/install/host/lib/python3.13/turtledemo | |
/usr/bin/install -c /root/apps/interpreters/python/Python/Lib/turtledemo/planet_and_moon.py /root/apps/interpreters/python/install/host/lib/python3.13/turtledemo | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/turtledemo/rosette.py /root/apps/interpreters/python/install/host/lib/python3.13/turtledemo | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/turtledemo/round_dance.py /root/apps/interpreters/python/install/host/lib/python3.13/turtledemo | |
/usr/bin/install -c /root/apps/interpreters/python/Python/Lib/turtledemo/sorting_animate.py /root/apps/interpreters/python/install/host/lib/python3.13/turtledemo | |
/usr/bin/install -c /root/apps/interpreters/python/Python/Lib/turtledemo/tree.py /root/apps/interpreters/python/install/host/lib/python3.13/turtledemo | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/turtledemo/turtle.cfg /root/apps/interpreters/python/install/host/lib/python3.13/turtledemo | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/turtledemo/two_canvases.py /root/apps/interpreters/python/install/host/lib/python3.13/turtledemo | |
/usr/bin/install -c /root/apps/interpreters/python/Python/Lib/turtledemo/yinyang.py /root/apps/interpreters/python/install/host/lib/python3.13/turtledemo | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/unittest/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/unittest | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/unittest/__main__.py /root/apps/interpreters/python/install/host/lib/python3.13/unittest | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/unittest/_log.py /root/apps/interpreters/python/install/host/lib/python3.13/unittest | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/unittest/async_case.py /root/apps/interpreters/python/install/host/lib/python3.13/unittest | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/unittest/case.py /root/apps/interpreters/python/install/host/lib/python3.13/unittest | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/unittest/loader.py /root/apps/interpreters/python/install/host/lib/python3.13/unittest | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/unittest/main.py /root/apps/interpreters/python/install/host/lib/python3.13/unittest | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/unittest/mock.py /root/apps/interpreters/python/install/host/lib/python3.13/unittest | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/unittest/result.py /root/apps/interpreters/python/install/host/lib/python3.13/unittest | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/unittest/runner.py /root/apps/interpreters/python/install/host/lib/python3.13/unittest | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/unittest/signals.py /root/apps/interpreters/python/install/host/lib/python3.13/unittest | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/unittest/suite.py /root/apps/interpreters/python/install/host/lib/python3.13/unittest | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/unittest/util.py /root/apps/interpreters/python/install/host/lib/python3.13/unittest | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/urllib/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/urllib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/urllib/error.py /root/apps/interpreters/python/install/host/lib/python3.13/urllib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/urllib/parse.py /root/apps/interpreters/python/install/host/lib/python3.13/urllib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/urllib/request.py /root/apps/interpreters/python/install/host/lib/python3.13/urllib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/urllib/response.py /root/apps/interpreters/python/install/host/lib/python3.13/urllib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/urllib/robotparser.py /root/apps/interpreters/python/install/host/lib/python3.13/urllib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/venv/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/venv | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/venv/__main__.py /root/apps/interpreters/python/install/host/lib/python3.13/venv | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/venv/scripts/common/Activate.ps1 /root/apps/interpreters/python/install/host/lib/python3.13/venv/scripts/common | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/venv/scripts/common/activate /root/apps/interpreters/python/install/host/lib/python3.13/venv/scripts/common | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/venv/scripts/common/activate.fish /root/apps/interpreters/python/install/host/lib/python3.13/venv/scripts/common | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/venv/scripts/posix/activate.csh /root/apps/interpreters/python/install/host/lib/python3.13/venv/scripts/posix | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/wsgiref/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/wsgiref | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/wsgiref/handlers.py /root/apps/interpreters/python/install/host/lib/python3.13/wsgiref | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/wsgiref/headers.py /root/apps/interpreters/python/install/host/lib/python3.13/wsgiref | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/wsgiref/simple_server.py /root/apps/interpreters/python/install/host/lib/python3.13/wsgiref | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/wsgiref/types.py /root/apps/interpreters/python/install/host/lib/python3.13/wsgiref | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/wsgiref/util.py /root/apps/interpreters/python/install/host/lib/python3.13/wsgiref | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/wsgiref/validate.py /root/apps/interpreters/python/install/host/lib/python3.13/wsgiref | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/xml/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/xml | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/xml/dom/NodeFilter.py /root/apps/interpreters/python/install/host/lib/python3.13/xml/dom | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/xml/dom/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/xml/dom | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/xml/dom/domreg.py /root/apps/interpreters/python/install/host/lib/python3.13/xml/dom | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/xml/dom/expatbuilder.py /root/apps/interpreters/python/install/host/lib/python3.13/xml/dom | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/xml/dom/minicompat.py /root/apps/interpreters/python/install/host/lib/python3.13/xml/dom | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/xml/dom/minidom.py /root/apps/interpreters/python/install/host/lib/python3.13/xml/dom | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/xml/dom/pulldom.py /root/apps/interpreters/python/install/host/lib/python3.13/xml/dom | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/xml/dom/xmlbuilder.py /root/apps/interpreters/python/install/host/lib/python3.13/xml/dom | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/xml/etree/ElementInclude.py /root/apps/interpreters/python/install/host/lib/python3.13/xml/etree | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/xml/etree/ElementPath.py /root/apps/interpreters/python/install/host/lib/python3.13/xml/etree | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/xml/etree/ElementTree.py /root/apps/interpreters/python/install/host/lib/python3.13/xml/etree | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/xml/etree/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/xml/etree | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/xml/etree/cElementTree.py /root/apps/interpreters/python/install/host/lib/python3.13/xml/etree | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/xml/parsers/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/xml/parsers | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/xml/parsers/expat.py /root/apps/interpreters/python/install/host/lib/python3.13/xml/parsers | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/xml/sax/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/xml/sax | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/xml/sax/_exceptions.py /root/apps/interpreters/python/install/host/lib/python3.13/xml/sax | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/xml/sax/expatreader.py /root/apps/interpreters/python/install/host/lib/python3.13/xml/sax | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/xml/sax/handler.py /root/apps/interpreters/python/install/host/lib/python3.13/xml/sax | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/xml/sax/saxutils.py /root/apps/interpreters/python/install/host/lib/python3.13/xml/sax | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/xml/sax/xmlreader.py /root/apps/interpreters/python/install/host/lib/python3.13/xml/sax | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/xmlrpc/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/xmlrpc | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/xmlrpc/client.py /root/apps/interpreters/python/install/host/lib/python3.13/xmlrpc | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/xmlrpc/server.py /root/apps/interpreters/python/install/host/lib/python3.13/xmlrpc | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/zipfile/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/zipfile | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/zipfile/__main__.py /root/apps/interpreters/python/install/host/lib/python3.13/zipfile | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/zipfile/_path/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/zipfile/_path | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/zipfile/_path/glob.py /root/apps/interpreters/python/install/host/lib/python3.13/zipfile/_path | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/zoneinfo/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/zoneinfo | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/zoneinfo/_common.py /root/apps/interpreters/python/install/host/lib/python3.13/zoneinfo | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/zoneinfo/_tzpath.py /root/apps/interpreters/python/install/host/lib/python3.13/zoneinfo | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/zoneinfo/_zoneinfo.py /root/apps/interpreters/python/install/host/lib/python3.13/zoneinfo | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/_pyrepl/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/_pyrepl | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/_pyrepl/__main__.py /root/apps/interpreters/python/install/host/lib/python3.13/_pyrepl | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/_pyrepl/_minimal_curses.py /root/apps/interpreters/python/install/host/lib/python3.13/_pyrepl | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/_pyrepl/_threading_handler.py /root/apps/interpreters/python/install/host/lib/python3.13/_pyrepl | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/_pyrepl/commands.py /root/apps/interpreters/python/install/host/lib/python3.13/_pyrepl | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/_pyrepl/completing_reader.py /root/apps/interpreters/python/install/host/lib/python3.13/_pyrepl | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/_pyrepl/console.py /root/apps/interpreters/python/install/host/lib/python3.13/_pyrepl | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/_pyrepl/curses.py /root/apps/interpreters/python/install/host/lib/python3.13/_pyrepl | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/_pyrepl/fancy_termios.py /root/apps/interpreters/python/install/host/lib/python3.13/_pyrepl | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/_pyrepl/historical_reader.py /root/apps/interpreters/python/install/host/lib/python3.13/_pyrepl | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/_pyrepl/input.py /root/apps/interpreters/python/install/host/lib/python3.13/_pyrepl | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/_pyrepl/keymap.py /root/apps/interpreters/python/install/host/lib/python3.13/_pyrepl | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/_pyrepl/main.py /root/apps/interpreters/python/install/host/lib/python3.13/_pyrepl | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/_pyrepl/mypy.ini /root/apps/interpreters/python/install/host/lib/python3.13/_pyrepl | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/_pyrepl/pager.py /root/apps/interpreters/python/install/host/lib/python3.13/_pyrepl | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/_pyrepl/reader.py /root/apps/interpreters/python/install/host/lib/python3.13/_pyrepl | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/_pyrepl/readline.py /root/apps/interpreters/python/install/host/lib/python3.13/_pyrepl | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/_pyrepl/simple_interact.py /root/apps/interpreters/python/install/host/lib/python3.13/_pyrepl | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/_pyrepl/trace.py /root/apps/interpreters/python/install/host/lib/python3.13/_pyrepl | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/_pyrepl/types.py /root/apps/interpreters/python/install/host/lib/python3.13/_pyrepl | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/_pyrepl/unix_console.py /root/apps/interpreters/python/install/host/lib/python3.13/_pyrepl | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/_pyrepl/unix_eventqueue.py /root/apps/interpreters/python/install/host/lib/python3.13/_pyrepl | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/_pyrepl/utils.py /root/apps/interpreters/python/install/host/lib/python3.13/_pyrepl | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/_pyrepl/windows_console.py /root/apps/interpreters/python/install/host/lib/python3.13/_pyrepl | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/__phello__/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/__phello__ | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/__phello__/spam.py /root/apps/interpreters/python/install/host/lib/python3.13/__phello__ | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle_test/README.txt /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle_test/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle_test/example_noext /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle_test/example_stub.pyi /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle_test/htest.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle_test/mock_idle.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle_test/mock_tk.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle_test/template.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle_test/test_autocomplete.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle_test/test_autocomplete_w.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle_test/test_autoexpand.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle_test/test_browser.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle_test/test_calltip.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle_test/test_calltip_w.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle_test/test_codecontext.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle_test/test_colorizer.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle_test/test_config.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle_test/test_config_key.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle_test/test_configdialog.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle_test/test_debugger.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle_test/test_debugger_r.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle_test/test_debugobj.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle_test/test_debugobj_r.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle_test/test_delegator.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle_test/test_editmenu.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle_test/test_editor.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle_test/test_filelist.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle_test/test_format.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle_test/test_grep.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle_test/test_help.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle_test/test_help_about.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle_test/test_history.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle_test/test_hyperparser.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle_test/test_iomenu.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle_test/test_macosx.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle_test/test_mainmenu.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle_test/test_multicall.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle_test/test_outwin.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle_test/test_parenmatch.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle_test/test_pathbrowser.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle_test/test_percolator.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle_test/test_pyparse.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle_test/test_pyshell.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle_test/test_query.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle_test/test_redirector.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle_test/test_replace.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle_test/test_rpc.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle_test/test_run.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle_test/test_runscript.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle_test/test_scrolledlist.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle_test/test_search.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle_test/test_searchbase.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle_test/test_searchengine.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle_test/test_sidebar.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle_test/test_squeezer.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle_test/test_stackviewer.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle_test/test_statusbar.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle_test/test_text.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle_test/test_textview.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle_test/test_tooltip.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle_test/test_tree.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle_test/test_undo.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle_test/test_util.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle_test/test_warning.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle_test/test_window.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle_test/test_zoomheight.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle_test/test_zzdummy.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/idlelib/idle_test/tkinter_testing_utils.py /root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/__main__.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/_test_atexit.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/_test_eintr.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/_test_embed_set_config.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/_test_embed_structseq.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/_test_monitoring_shutdown.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/_test_multiprocessing.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/_test_venv_multiprocessing.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/archiver_tests.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/audiotests.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/audit-tests.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/autotest.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c /root/apps/interpreters/python/Python/Lib/test/bisect_cmd.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/clinic.test.c /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/cov.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c /root/apps/interpreters/python/Python/Lib/test/curses_tests.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/datetimetester.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/dis_module.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/empty.vbs /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/exception_hierarchy.txt /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/fork_wait.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/levenshtein_examples.json /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/list_tests.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/lock_tests.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/mapping_tests.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/memory_watchdog.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/mime.types /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/mock_socket.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/mp_fork_bomb.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/mp_preload.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/multibytecodec_support.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/pickletester.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/profilee.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/pstats.pck /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/pyclbr_input.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/pythoninfo.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/randv2_32.pck /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/randv2_64.pck /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/randv3.pck /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c /root/apps/interpreters/python/Python/Lib/test/re_tests.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c /root/apps/interpreters/python/Python/Lib/test/regrtest.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/relimport.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/reperf.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/seq_tests.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/signalinterproctester.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/ssl_servers.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/ssltests.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/string_tests.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test___all__.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test__colorize.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test__interpchannels.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test__interpreters.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test__locale.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test__opcode.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test__osx_support.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_abc.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_abstract_numbers.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_android.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_argparse.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c /root/apps/interpreters/python/Python/Lib/test/test_array.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_asdl_parser.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_asyncgen.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_atexit.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_audit.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_augassign.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_base64.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_baseexception.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_bdb.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_bigaddrspace.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_bigmem.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_binascii.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_binop.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_bisect.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_bool.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_buffer.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_bufio.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_builtin.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_bytes.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_bz2.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_c_locale_coercion.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_calendar.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_call.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_charmapcodec.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_class.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_clinic.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_cmath.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_cmd.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_cmd_line.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_cmd_line_script.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_code.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_code_module.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_codeccallbacks.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_codecencodings_cn.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_codecencodings_hk.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_codecencodings_iso2022.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_codecencodings_jp.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_codecencodings_kr.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_codecencodings_tw.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_codecmaps_cn.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_codecmaps_hk.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_codecmaps_jp.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_codecmaps_kr.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_codecmaps_tw.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_codecs.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_codeop.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_collections.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_colorsys.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_compare.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_compile.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_compileall.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_compiler_assemble.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_compiler_codegen.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_complex.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_configparser.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_contains.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_context.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_contextlib.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_contextlib_async.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_copy.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_copyreg.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_coroutines.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_cprofile.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_csv.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_curses.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_datetime.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_dbm.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_dbm_dumb.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_dbm_gnu.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_dbm_ndbm.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_dbm_sqlite3.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_decimal.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_decorators.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_defaultdict.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_deque.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_descr.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_descrtut.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_devpoll.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_dict.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_dict_version.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_dictcomps.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_dictviews.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_difflib.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_difflib_expect.html /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_dis.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_docxmlrpc.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_dtrace.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_dynamic.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_dynamicclassattribute.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_eintr.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_embed.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ensurepip.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_enum.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_enumerate.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_eof.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_epoll.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_errno.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_except_star.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_exception_group.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_exception_hierarchy.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_exception_variations.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_exceptions.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_extcall.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_external_inspection.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_faulthandler.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_fcntl.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_file.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_file_eintr.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_filecmp.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_fileinput.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_fileio.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_fileutils.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_finalization.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_float.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_flufl.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_fnmatch.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_fork1.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_format.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_fractions.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_frame.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_frozen.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_fstring.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ftplib.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_funcattrs.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_functools.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_gc.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_generated_cases.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_generator_stop.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_generators.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_genericalias.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_genericclass.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_genericpath.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_genexps.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_getopt.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_getpass.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_getpath.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_gettext.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_glob.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_global.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_grammar.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_graphlib.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_grp.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_gzip.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_hash.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_hashlib.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_heapq.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_hmac.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_html.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_htmlparser.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_http_cookiejar.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_http_cookies.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_httplib.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_httpservers.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_idle.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_imaplib.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_index.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_int.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_int_literal.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_io.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ioctl.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ipaddress.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_isinstance.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_iter.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_iterlen.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_itertools.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_keyword.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_keywordonlyarg.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_kqueue.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_largefile.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_launcher.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_linecache.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_list.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_listcomps.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_lltrace.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_locale.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_logging.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_long.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_longexp.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_lzma.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_mailbox.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_marshal.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_math.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_math_property.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_memoryio.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_memoryview.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_metaclass.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_mimetypes.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_minidom.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_mmap.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_modulefinder.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_monitoring.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_msvcrt.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_multibytecodec.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_multiprocessing_main_handling.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_named_expressions.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_netrc.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ntpath.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_numeric_tower.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_opcache.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_opcodes.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_openpty.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_operator.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_optimizer.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_optparse.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ordered_dict.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_os.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_osx_env.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_patma.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_pdb.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_peepholer.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_pep646_syntax.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_perf_profiler.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_perfmaps.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_pickle.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_picklebuffer.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_pickletools.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_pkg.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_pkgutil.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_platform.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_plistlib.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_poll.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_popen.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_poplib.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_positional_only_arg.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_posix.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_posixpath.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_pow.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_pprint.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_print.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_profile.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_property.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_pstats.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_pty.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_pulldom.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_pwd.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_py_compile.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_pyclbr.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_pyexpat.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_queue.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_quopri.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_raise.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_random.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_range.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_re.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_readline.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_regrtest.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_repl.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_reprlib.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_resource.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_richcmp.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_rlcompleter.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_robotparser.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_runpy.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_sax.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_sched.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_scope.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_script_helper.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_secrets.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_select.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_selectors.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_set.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_setcomps.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_shelve.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_shlex.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_shutil.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_signal.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_site.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_slice.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_smtplib.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_smtpnet.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_socket.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_socketserver.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_sort.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_source_encoding.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ssl.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_stable_abi_ctypes.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_startfile.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_stat.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_statistics.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_str.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_strftime.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_string.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_string_literals.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_stringprep.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_strptime.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_strtod.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_struct.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_structseq.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_subclassinit.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_subprocess.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_sundry.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_super.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_support.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_symtable.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_syntax.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_sys.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_sys_setprofile.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_sys_settrace.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_sysconfig.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_syslog.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tabnanny.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tarfile.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tcl.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tempfile.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_termios.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_textwrap.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_thread.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_threadedtempfile.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_threading.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_threading_local.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_threadsignals.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_time.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_timeit.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_timeout.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tokenize.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_trace.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_traceback.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tracemalloc.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ttk_textonly.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tty.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tuple.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_turtle.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_type_aliases.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_type_annotations.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_type_cache.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_type_comments.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_type_params.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_typechecks.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_types.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_typing.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ucn.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_unary.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_unicode_file.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_unicode_file_functions.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_unicode_identifiers.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_unicodedata.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_univnewlines.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_unpack.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_unpack_ex.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_unparse.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_urllib.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_urllib2.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_urllib2_localnet.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_urllib2net.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_urllib_response.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_urllibnet.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_urlparse.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_userdict.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_userlist.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_userstring.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_utf8_mode.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_utf8source.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c /root/apps/interpreters/python/Python/Lib/test/test_uuid.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_venv.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_wait3.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_wait4.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_wave.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_weakref.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_weakset.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_webbrowser.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_winapi.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_winconsoleio.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_winreg.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_winsound.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_with.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_wmi.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_wsgiref.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_xml_dom_minicompat.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_xml_etree.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_xml_etree_c.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_xmlrpc.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_xxlimited.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_xxtestfuzz.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_yield_from.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_zipapp.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_zipfile64.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_zipimport.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_zipimport_support.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_zlib.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/testcodec.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/tf_inherit_check.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/win_console_handler.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/xmltests.py /root/apps/interpreters/python/install/host/lib/python3.13/test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ast/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_ast | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ast/snippets.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_ast | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ast/test_ast.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_ast | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ast/utils.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_ast | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/archivetestdata/README.md /root/apps/interpreters/python/install/host/lib/python3.13/test/archivetestdata | |
/usr/bin/install -c /root/apps/interpreters/python/Python/Lib/test/archivetestdata/exe_with_z64 /root/apps/interpreters/python/install/host/lib/python3.13/test/archivetestdata | |
/usr/bin/install -c /root/apps/interpreters/python/Python/Lib/test/archivetestdata/exe_with_zip /root/apps/interpreters/python/install/host/lib/python3.13/test/archivetestdata | |
/usr/bin/install -c /root/apps/interpreters/python/Python/Lib/test/archivetestdata/header.sh /root/apps/interpreters/python/install/host/lib/python3.13/test/archivetestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/archivetestdata/recursion.tar /root/apps/interpreters/python/install/host/lib/python3.13/test/archivetestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/archivetestdata/testdata_module_inside_zip.py /root/apps/interpreters/python/install/host/lib/python3.13/test/archivetestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/archivetestdata/testtar.tar /root/apps/interpreters/python/install/host/lib/python3.13/test/archivetestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/archivetestdata/testtar.tar.xz /root/apps/interpreters/python/install/host/lib/python3.13/test/archivetestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/archivetestdata/zip_cp437_header.zip /root/apps/interpreters/python/install/host/lib/python3.13/test/archivetestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/archivetestdata/zipdir.zip /root/apps/interpreters/python/install/host/lib/python3.13/test/archivetestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/archivetestdata/zipdir_backslash.zip /root/apps/interpreters/python/install/host/lib/python3.13/test/archivetestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/audiodata/pluck-pcm16.wav /root/apps/interpreters/python/install/host/lib/python3.13/test/audiodata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/audiodata/pluck-pcm24-ext.wav /root/apps/interpreters/python/install/host/lib/python3.13/test/audiodata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/audiodata/pluck-pcm24.wav /root/apps/interpreters/python/install/host/lib/python3.13/test/audiodata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/audiodata/pluck-pcm32.wav /root/apps/interpreters/python/install/host/lib/python3.13/test/audiodata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/audiodata/pluck-pcm8.wav /root/apps/interpreters/python/install/host/lib/python3.13/test/audiodata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/certdata/allsans.pem /root/apps/interpreters/python/install/host/lib/python3.13/test/certdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/certdata/badcert.pem /root/apps/interpreters/python/install/host/lib/python3.13/test/certdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/certdata/badkey.pem /root/apps/interpreters/python/install/host/lib/python3.13/test/certdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/certdata/cert3.pem /root/apps/interpreters/python/install/host/lib/python3.13/test/certdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/certdata/ffdh3072.pem /root/apps/interpreters/python/install/host/lib/python3.13/test/certdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/certdata/idnsans.pem /root/apps/interpreters/python/install/host/lib/python3.13/test/certdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/certdata/keycert.passwd.pem /root/apps/interpreters/python/install/host/lib/python3.13/test/certdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/certdata/keycert.pem /root/apps/interpreters/python/install/host/lib/python3.13/test/certdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/certdata/keycert2.pem /root/apps/interpreters/python/install/host/lib/python3.13/test/certdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/certdata/keycert3.pem /root/apps/interpreters/python/install/host/lib/python3.13/test/certdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/certdata/keycert4.pem /root/apps/interpreters/python/install/host/lib/python3.13/test/certdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/certdata/keycertecc.pem /root/apps/interpreters/python/install/host/lib/python3.13/test/certdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/certdata/leaf-missing-aki.ca.pem /root/apps/interpreters/python/install/host/lib/python3.13/test/certdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/certdata/leaf-missing-aki.keycert.pem /root/apps/interpreters/python/install/host/lib/python3.13/test/certdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/certdata/make_ssl_certs.py /root/apps/interpreters/python/install/host/lib/python3.13/test/certdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/certdata/nokia.pem /root/apps/interpreters/python/install/host/lib/python3.13/test/certdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/certdata/nosan.pem /root/apps/interpreters/python/install/host/lib/python3.13/test/certdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/certdata/nullbytecert.pem /root/apps/interpreters/python/install/host/lib/python3.13/test/certdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/certdata/nullcert.pem /root/apps/interpreters/python/install/host/lib/python3.13/test/certdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/certdata/pycacert.pem /root/apps/interpreters/python/install/host/lib/python3.13/test/certdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/certdata/pycakey.pem /root/apps/interpreters/python/install/host/lib/python3.13/test/certdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/certdata/revocation.crl /root/apps/interpreters/python/install/host/lib/python3.13/test/certdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/certdata/secp384r1.pem /root/apps/interpreters/python/install/host/lib/python3.13/test/certdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/certdata/selfsigned_pythontestdotnet.pem /root/apps/interpreters/python/install/host/lib/python3.13/test/certdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/certdata/ssl_cert.pem /root/apps/interpreters/python/install/host/lib/python3.13/test/certdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/certdata/ssl_key.passwd.pem /root/apps/interpreters/python/install/host/lib/python3.13/test/certdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/certdata/ssl_key.pem /root/apps/interpreters/python/install/host/lib/python3.13/test/certdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/certdata/talos-2019-0758.pem /root/apps/interpreters/python/install/host/lib/python3.13/test/certdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/certdata/capath/4e1295a3.0 /root/apps/interpreters/python/install/host/lib/python3.13/test/certdata/capath | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/certdata/capath/5ed36f99.0 /root/apps/interpreters/python/install/host/lib/python3.13/test/certdata/capath | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/certdata/capath/6e88d7b8.0 /root/apps/interpreters/python/install/host/lib/python3.13/test/certdata/capath | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/certdata/capath/99d0fa06.0 /root/apps/interpreters/python/install/host/lib/python3.13/test/certdata/capath | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/certdata/capath/b1930218.0 /root/apps/interpreters/python/install/host/lib/python3.13/test/certdata/capath | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/certdata/capath/ceff1710.0 /root/apps/interpreters/python/install/host/lib/python3.13/test/certdata/capath | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/cjkencodings/big5-utf8.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/cjkencodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/cjkencodings/big5.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/cjkencodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/cjkencodings/big5hkscs-utf8.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/cjkencodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/cjkencodings/big5hkscs.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/cjkencodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/cjkencodings/cp949-utf8.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/cjkencodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/cjkencodings/cp949.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/cjkencodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/cjkencodings/euc_jisx0213-utf8.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/cjkencodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/cjkencodings/euc_jisx0213.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/cjkencodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/cjkencodings/euc_jp-utf8.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/cjkencodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/cjkencodings/euc_jp.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/cjkencodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/cjkencodings/euc_kr-utf8.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/cjkencodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/cjkencodings/euc_kr.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/cjkencodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/cjkencodings/gb18030-utf8.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/cjkencodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/cjkencodings/gb18030.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/cjkencodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/cjkencodings/gb2312-utf8.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/cjkencodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/cjkencodings/gb2312.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/cjkencodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/cjkencodings/gbk-utf8.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/cjkencodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/cjkencodings/gbk.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/cjkencodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/cjkencodings/hz-utf8.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/cjkencodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/cjkencodings/hz.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/cjkencodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/cjkencodings/iso2022_jp-utf8.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/cjkencodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/cjkencodings/iso2022_jp.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/cjkencodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/cjkencodings/iso2022_kr-utf8.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/cjkencodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/cjkencodings/iso2022_kr.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/cjkencodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/cjkencodings/johab-utf8.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/cjkencodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/cjkencodings/johab.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/cjkencodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/cjkencodings/shift_jis-utf8.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/cjkencodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/cjkencodings/shift_jis.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/cjkencodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/cjkencodings/shift_jisx0213-utf8.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/cjkencodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/cjkencodings/shift_jisx0213.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/cjkencodings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/configdata/cfgparser.1 /root/apps/interpreters/python/install/host/lib/python3.13/test/configdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/configdata/cfgparser.2 /root/apps/interpreters/python/install/host/lib/python3.13/test/configdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/configdata/cfgparser.3 /root/apps/interpreters/python/install/host/lib/python3.13/test/configdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/crashers/README /root/apps/interpreters/python/install/host/lib/python3.13/test/crashers | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/crashers/bogus_code_obj.py /root/apps/interpreters/python/install/host/lib/python3.13/test/crashers | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/crashers/gc_inspection.py /root/apps/interpreters/python/install/host/lib/python3.13/test/crashers | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/crashers/infinite_loop_re.py /root/apps/interpreters/python/install/host/lib/python3.13/test/crashers | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/crashers/mutation_inside_cyclegc.py /root/apps/interpreters/python/install/host/lib/python3.13/test/crashers | |
/usr/bin/install -c /root/apps/interpreters/python/Python/Lib/test/crashers/recursive_call.py /root/apps/interpreters/python/install/host/lib/python3.13/test/crashers | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/crashers/trace_at_recursion_limit.py /root/apps/interpreters/python/install/host/lib/python3.13/test/crashers | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/crashers/underlying_dict.py /root/apps/interpreters/python/install/host/lib/python3.13/test/crashers | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/data/README /root/apps/interpreters/python/install/host/lib/python3.13/test/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/abs.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/add.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/and.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/base.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/clamp.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/class.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/compare.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/comparetotal.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/comparetotmag.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/copy.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/copyabs.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/copynegate.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/copysign.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/ddAbs.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/ddAdd.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/ddAnd.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/ddBase.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/ddCanonical.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/ddClass.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/ddCompare.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/ddCompareSig.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/ddCompareTotal.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/ddCompareTotalMag.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/ddCopy.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/ddCopyAbs.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/ddCopyNegate.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/ddCopySign.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/ddDivide.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/ddDivideInt.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/ddEncode.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/ddFMA.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/ddInvert.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/ddLogB.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/ddMax.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/ddMaxMag.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/ddMin.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/ddMinMag.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/ddMinus.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/ddMultiply.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/ddNextMinus.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/ddNextPlus.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/ddNextToward.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/ddOr.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/ddPlus.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/ddQuantize.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/ddReduce.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/ddRemainder.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/ddRemainderNear.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/ddRotate.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/ddSameQuantum.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/ddScaleB.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/ddShift.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/ddSubtract.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/ddToIntegral.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/ddXor.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/decDouble.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/decQuad.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/decSingle.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/divide.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/divideint.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/dqAbs.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/dqAdd.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/dqAnd.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/dqBase.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/dqCanonical.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/dqClass.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/dqCompare.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/dqCompareSig.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/dqCompareTotal.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/dqCompareTotalMag.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/dqCopy.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/dqCopyAbs.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/dqCopyNegate.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/dqCopySign.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/dqDivide.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/dqDivideInt.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/dqEncode.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/dqFMA.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/dqInvert.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/dqLogB.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/dqMax.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/dqMaxMag.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/dqMin.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/dqMinMag.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/dqMinus.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/dqMultiply.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/dqNextMinus.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/dqNextPlus.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/dqNextToward.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/dqOr.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/dqPlus.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/dqQuantize.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/dqReduce.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/dqRemainder.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/dqRemainderNear.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/dqRotate.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/dqSameQuantum.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/dqScaleB.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/dqShift.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/dqSubtract.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/dqToIntegral.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/dqXor.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/dsBase.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/dsEncode.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/exp.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/extra.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/fma.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/inexact.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/invert.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/ln.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/log10.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/logb.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/max.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/maxmag.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/min.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/minmag.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/minus.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/multiply.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/nextminus.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/nextplus.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/nexttoward.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/or.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/plus.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/power.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/powersqrt.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/quantize.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/randomBound32.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/randoms.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/reduce.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/remainder.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/remainderNear.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/rescale.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/rotate.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/rounding.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/samequantum.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/scaleb.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/shift.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/squareroot.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/subtract.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/testall.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/tointegral.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/tointegralx.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/decimaltestdata/xor.decTest /root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/dtracedata/assert_usable.d /root/apps/interpreters/python/install/host/lib/python3.13/test/dtracedata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/dtracedata/assert_usable.stp /root/apps/interpreters/python/install/host/lib/python3.13/test/dtracedata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/dtracedata/call_stack.d /root/apps/interpreters/python/install/host/lib/python3.13/test/dtracedata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/dtracedata/call_stack.d.expected /root/apps/interpreters/python/install/host/lib/python3.13/test/dtracedata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/dtracedata/call_stack.py /root/apps/interpreters/python/install/host/lib/python3.13/test/dtracedata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/dtracedata/call_stack.stp /root/apps/interpreters/python/install/host/lib/python3.13/test/dtracedata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/dtracedata/call_stack.stp.expected /root/apps/interpreters/python/install/host/lib/python3.13/test/dtracedata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/dtracedata/gc.d /root/apps/interpreters/python/install/host/lib/python3.13/test/dtracedata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/dtracedata/gc.d.expected /root/apps/interpreters/python/install/host/lib/python3.13/test/dtracedata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/dtracedata/gc.py /root/apps/interpreters/python/install/host/lib/python3.13/test/dtracedata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/dtracedata/gc.stp /root/apps/interpreters/python/install/host/lib/python3.13/test/dtracedata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/dtracedata/gc.stp.expected /root/apps/interpreters/python/install/host/lib/python3.13/test/dtracedata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/dtracedata/instance.py /root/apps/interpreters/python/install/host/lib/python3.13/test/dtracedata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/dtracedata/line.d /root/apps/interpreters/python/install/host/lib/python3.13/test/dtracedata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/dtracedata/line.d.expected /root/apps/interpreters/python/install/host/lib/python3.13/test/dtracedata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/dtracedata/line.py /root/apps/interpreters/python/install/host/lib/python3.13/test/dtracedata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/encoded_modules/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/encoded_modules | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/encoded_modules/module_iso_8859_1.py /root/apps/interpreters/python/install/host/lib/python3.13/test/encoded_modules | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/encoded_modules/module_koi8_r.py /root/apps/interpreters/python/install/host/lib/python3.13/test/encoded_modules | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/leakers/README.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/leakers | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/leakers/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/leakers | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/leakers/test_ctypes.py /root/apps/interpreters/python/install/host/lib/python3.13/test/leakers | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/leakers/test_selftype.py /root/apps/interpreters/python/install/host/lib/python3.13/test/leakers | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/libregrtest/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/libregrtest | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/libregrtest/cmdline.py /root/apps/interpreters/python/install/host/lib/python3.13/test/libregrtest | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/libregrtest/filter.py /root/apps/interpreters/python/install/host/lib/python3.13/test/libregrtest | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/libregrtest/findtests.py /root/apps/interpreters/python/install/host/lib/python3.13/test/libregrtest | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/libregrtest/logger.py /root/apps/interpreters/python/install/host/lib/python3.13/test/libregrtest | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/libregrtest/main.py /root/apps/interpreters/python/install/host/lib/python3.13/test/libregrtest | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/libregrtest/mypy.ini /root/apps/interpreters/python/install/host/lib/python3.13/test/libregrtest | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/libregrtest/pgo.py /root/apps/interpreters/python/install/host/lib/python3.13/test/libregrtest | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/libregrtest/refleak.py /root/apps/interpreters/python/install/host/lib/python3.13/test/libregrtest | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/libregrtest/result.py /root/apps/interpreters/python/install/host/lib/python3.13/test/libregrtest | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/libregrtest/results.py /root/apps/interpreters/python/install/host/lib/python3.13/test/libregrtest | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/libregrtest/run_workers.py /root/apps/interpreters/python/install/host/lib/python3.13/test/libregrtest | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/libregrtest/runtests.py /root/apps/interpreters/python/install/host/lib/python3.13/test/libregrtest | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/libregrtest/save_env.py /root/apps/interpreters/python/install/host/lib/python3.13/test/libregrtest | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/libregrtest/setup.py /root/apps/interpreters/python/install/host/lib/python3.13/test/libregrtest | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/libregrtest/single.py /root/apps/interpreters/python/install/host/lib/python3.13/test/libregrtest | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/libregrtest/testresult.py /root/apps/interpreters/python/install/host/lib/python3.13/test/libregrtest | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/libregrtest/tsan.py /root/apps/interpreters/python/install/host/lib/python3.13/test/libregrtest | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/libregrtest/utils.py /root/apps/interpreters/python/install/host/lib/python3.13/test/libregrtest | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/libregrtest/win_utils.py /root/apps/interpreters/python/install/host/lib/python3.13/test/libregrtest | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/libregrtest/worker.py /root/apps/interpreters/python/install/host/lib/python3.13/test/libregrtest | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/mathdata/cmath_testcases.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/mathdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/mathdata/floating_points.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/mathdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/mathdata/formatfloat_testcases.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/mathdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/mathdata/ieee754.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/mathdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/mathdata/math_testcases.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/mathdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/regrtestdata/import_from_tests/test_regrtest_a.py /root/apps/interpreters/python/install/host/lib/python3.13/test/regrtestdata/import_from_tests | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/regrtestdata/import_from_tests/test_regrtest_c.py /root/apps/interpreters/python/install/host/lib/python3.13/test/regrtestdata/import_from_tests | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/regrtestdata/import_from_tests/test_regrtest_b/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/regrtestdata/import_from_tests/test_regrtest_b | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/regrtestdata/import_from_tests/test_regrtest_b/util.py /root/apps/interpreters/python/install/host/lib/python3.13/test/regrtestdata/import_from_tests/test_regrtest_b | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/subprocessdata/fd_status.py /root/apps/interpreters/python/install/host/lib/python3.13/test/subprocessdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/subprocessdata/input_reader.py /root/apps/interpreters/python/install/host/lib/python3.13/test/subprocessdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/subprocessdata/qcat.py /root/apps/interpreters/python/install/host/lib/python3.13/test/subprocessdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/subprocessdata/qgrep.py /root/apps/interpreters/python/install/host/lib/python3.13/test/subprocessdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/subprocessdata/sigchild_ignore.py /root/apps/interpreters/python/install/host/lib/python3.13/test/subprocessdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/support/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/support | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/support/ast_helper.py /root/apps/interpreters/python/install/host/lib/python3.13/test/support | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/support/asynchat.py /root/apps/interpreters/python/install/host/lib/python3.13/test/support | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/support/asyncore.py /root/apps/interpreters/python/install/host/lib/python3.13/test/support | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/support/bytecode_helper.py /root/apps/interpreters/python/install/host/lib/python3.13/test/support | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/support/hashlib_helper.py /root/apps/interpreters/python/install/host/lib/python3.13/test/support | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/support/hypothesis_helper.py /root/apps/interpreters/python/install/host/lib/python3.13/test/support | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/support/import_helper.py /root/apps/interpreters/python/install/host/lib/python3.13/test/support | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/support/logging_helper.py /root/apps/interpreters/python/install/host/lib/python3.13/test/support | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/support/os_helper.py /root/apps/interpreters/python/install/host/lib/python3.13/test/support | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/support/pty_helper.py /root/apps/interpreters/python/install/host/lib/python3.13/test/support | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/support/refleak_helper.py /root/apps/interpreters/python/install/host/lib/python3.13/test/support | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/support/script_helper.py /root/apps/interpreters/python/install/host/lib/python3.13/test/support | |
/usr/bin/install -c /root/apps/interpreters/python/Python/Lib/test/support/smtpd.py /root/apps/interpreters/python/install/host/lib/python3.13/test/support | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/support/socket_helper.py /root/apps/interpreters/python/install/host/lib/python3.13/test/support | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/support/testcase.py /root/apps/interpreters/python/install/host/lib/python3.13/test/support | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/support/threading_helper.py /root/apps/interpreters/python/install/host/lib/python3.13/test/support | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/support/warnings_helper.py /root/apps/interpreters/python/install/host/lib/python3.13/test/support | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/support/_hypothesis_stubs/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/support/_hypothesis_stubs | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/support/_hypothesis_stubs/_helpers.py /root/apps/interpreters/python/install/host/lib/python3.13/test/support/_hypothesis_stubs | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/support/_hypothesis_stubs/strategies.py /root/apps/interpreters/python/install/host/lib/python3.13/test/support/_hypothesis_stubs | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/support/interpreters/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/support/interpreters | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/support/interpreters/_crossinterp.py /root/apps/interpreters/python/install/host/lib/python3.13/test/support/interpreters | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/support/interpreters/channels.py /root/apps/interpreters/python/install/host/lib/python3.13/test/support/interpreters | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/support/interpreters/queues.py /root/apps/interpreters/python/install/host/lib/python3.13/test/support/interpreters | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_asyncio/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_asyncio/__main__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_asyncio/echo.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_asyncio/echo2.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_asyncio/echo3.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_asyncio/functional.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_asyncio/test_base_events.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_asyncio/test_buffered_proto.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_asyncio/test_context.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_asyncio/test_eager_task_factory.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_asyncio/test_events.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_asyncio/test_futures.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_asyncio/test_futures2.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_asyncio/test_locks.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_asyncio/test_pep492.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_asyncio/test_proactor_events.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_asyncio/test_protocols.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_asyncio/test_queues.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_asyncio/test_runners.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_asyncio/test_selector_events.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_asyncio/test_sendfile.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_asyncio/test_server.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_asyncio/test_sock_lowlevel.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_asyncio/test_ssl.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_asyncio/test_sslproto.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_asyncio/test_staggered.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_asyncio/test_streams.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_asyncio/test_subprocess.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_asyncio/test_taskgroups.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_asyncio/test_tasks.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_asyncio/test_threads.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_asyncio/test_timeouts.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_asyncio/test_transports.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_asyncio/test_unix_events.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_asyncio/test_waitfor.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_asyncio/test_windows_events.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_asyncio/test_windows_utils.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_asyncio/utils.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_capi/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_capi | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_capi/__main__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_capi | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_capi/check_config.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_capi | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_capi/test_abstract.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_capi | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_capi/test_bytearray.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_capi | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_capi/test_bytes.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_capi | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_capi/test_codecs.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_capi | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_capi/test_complex.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_capi | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_capi/test_dict.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_capi | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_capi/test_eval_code_ex.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_capi | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_capi/test_exceptions.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_capi | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_capi/test_float.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_capi | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_capi/test_getargs.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_capi | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_capi/test_hash.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_capi | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_capi/test_immortal.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_capi | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_capi/test_list.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_capi | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_capi/test_long.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_capi | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_capi/test_mem.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_capi | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_capi/test_misc.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_capi | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_capi/test_number.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_capi | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_capi/test_object.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_capi | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_capi/test_opt.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_capi | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_capi/test_pyatomic.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_capi | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_capi/test_run.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_capi | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_capi/test_set.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_capi | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_capi/test_structmembers.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_capi | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_capi/test_sys.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_capi | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_capi/test_time.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_capi | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_capi/test_tuple.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_capi | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_capi/test_unicode.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_capi | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_capi/test_watchers.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_capi | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_cext/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_cext | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_cext/extension.c /root/apps/interpreters/python/install/host/lib/python3.13/test/test_cext | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_cext/setup.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_cext | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_concurrent_futures/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_concurrent_futures | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_concurrent_futures/executor.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_concurrent_futures | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_concurrent_futures/test_as_completed.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_concurrent_futures | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_concurrent_futures/test_deadlock.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_concurrent_futures | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_concurrent_futures/test_future.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_concurrent_futures | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_concurrent_futures/test_init.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_concurrent_futures | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_concurrent_futures/test_process_pool.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_concurrent_futures | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_concurrent_futures/test_shutdown.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_concurrent_futures | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_concurrent_futures/test_thread_pool.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_concurrent_futures | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_concurrent_futures/test_wait.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_concurrent_futures | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_concurrent_futures/util.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_concurrent_futures | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_cppext/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_cppext | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_cppext/extension.cpp /root/apps/interpreters/python/install/host/lib/python3.13/test/test_cppext | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_cppext/setup.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_cppext | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ctypes/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ctypes/__main__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ctypes/_support.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ctypes/test_aligned_structures.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ctypes/test_anon.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ctypes/test_array_in_pointer.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ctypes/test_arrays.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ctypes/test_as_parameter.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ctypes/test_bitfields.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ctypes/test_buffers.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ctypes/test_bytes.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ctypes/test_byteswap.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ctypes/test_callbacks.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ctypes/test_cast.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ctypes/test_cfuncs.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ctypes/test_checkretval.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ctypes/test_delattr.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ctypes/test_errno.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ctypes/test_find.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ctypes/test_frombuffer.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ctypes/test_funcptr.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ctypes/test_functions.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ctypes/test_incomplete.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ctypes/test_init.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ctypes/test_internals.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ctypes/test_keeprefs.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ctypes/test_libc.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ctypes/test_loading.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ctypes/test_macholib.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ctypes/test_memfunctions.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ctypes/test_numbers.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ctypes/test_objects.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ctypes/test_parameters.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ctypes/test_pep3118.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ctypes/test_pickling.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ctypes/test_pointers.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ctypes/test_prototypes.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ctypes/test_python_api.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ctypes/test_random_things.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ctypes/test_refcounts.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ctypes/test_repr.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ctypes/test_returnfuncptrs.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ctypes/test_simplesubclasses.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ctypes/test_sizes.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ctypes/test_slicing.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ctypes/test_stringptr.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ctypes/test_strings.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ctypes/test_struct_fields.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ctypes/test_structures.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ctypes/test_unaligned_structures.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ctypes/test_unicode.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ctypes/test_unions.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ctypes/test_values.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ctypes/test_varsize_struct.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ctypes/test_win32.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ctypes/test_wintypes.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_dataclasses/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_dataclasses | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_dataclasses/dataclass_module_1.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_dataclasses | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_dataclasses/dataclass_module_1_str.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_dataclasses | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_dataclasses/dataclass_module_2.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_dataclasses | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_dataclasses/dataclass_module_2_str.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_dataclasses | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_dataclasses/dataclass_textanno.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_dataclasses | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_doctest/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_doctest | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_doctest/decorator_mod.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_doctest | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_doctest/doctest_aliases.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_doctest | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_doctest/doctest_lineno.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_doctest | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_doctest/sample_doctest.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_doctest | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_doctest/sample_doctest_no_docstrings.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_doctest | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_doctest/sample_doctest_no_doctests.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_doctest | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_doctest/sample_doctest_skip.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_doctest | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_doctest/test_doctest.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_doctest | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_doctest/test_doctest.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/test_doctest | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_doctest/test_doctest2.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_doctest | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_doctest/test_doctest2.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/test_doctest | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_doctest/test_doctest3.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/test_doctest | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_doctest/test_doctest4.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/test_doctest | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_doctest/test_doctest_skip.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/test_doctest | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/__main__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/test__encoded_words.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/test__header_value_parser.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/test_asian_codecs.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/test_contentmanager.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/test_defect_handling.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/test_email.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/test_generator.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/test_headerregistry.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/test_inversion.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/test_message.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/test_parser.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/test_pickleable.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/test_policy.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/test_utils.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/torture_test.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/data/msg_01.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/data/msg_02.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/data/msg_03.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/data/msg_04.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/data/msg_05.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/data/msg_06.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/data/msg_07.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/data/msg_08.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/data/msg_09.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/data/msg_10.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/data/msg_11.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/data/msg_12.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/data/msg_12a.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/data/msg_13.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/data/msg_14.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/data/msg_15.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/data/msg_16.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/data/msg_17.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/data/msg_18.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/data/msg_19.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/data/msg_20.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/data/msg_21.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/data/msg_22.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/data/msg_23.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/data/msg_24.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/data/msg_25.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/data/msg_26.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/data/msg_27.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/data/msg_28.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/data/msg_29.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/data/msg_30.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/data/msg_31.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/data/msg_32.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/data/msg_33.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/data/msg_34.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/data/msg_35.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/data/msg_36.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/data/msg_37.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/data/msg_38.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/data/msg_39.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/data/msg_40.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/data/msg_41.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/data/msg_42.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/data/msg_43.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/data/msg_44.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/data/msg_45.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/data/msg_46.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/data/msg_47.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/data/python.bmp /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/data/python.exr /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/data/python.gif /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/data/python.jpg /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/data/python.pbm /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/data/python.pgm /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/data/python.png /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/data/python.ppm /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/data/python.ras /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/data/python.sgi /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/data/python.tiff /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/data/python.webp /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/data/python.xbm /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/data/sndhdr.aifc /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/data/sndhdr.aiff /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/data/sndhdr.au /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_email/data/sndhdr.wav /root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_free_threading/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_free_threading | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_free_threading/test_dict.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_free_threading | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_free_threading/test_list.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_free_threading | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_free_threading/test_monitoring.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_free_threading | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_free_threading/test_slots.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_free_threading | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_free_threading/test_str.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_free_threading | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_free_threading/test_tokenize.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_free_threading | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_free_threading/test_type.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_free_threading | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_future_stmt/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_future_stmt | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_future_stmt/badsyntax_future.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_future_stmt | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_future_stmt/import_nested_scope_twice.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_future_stmt | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_future_stmt/nested_scope.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_future_stmt | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_future_stmt/test_future.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_future_stmt | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_future_stmt/test_future_flags.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_future_stmt | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_future_stmt/test_future_multiple_features.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_future_stmt | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_future_stmt/test_future_multiple_imports.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_future_stmt | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_future_stmt/test_future_single_import.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_future_stmt | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_gdb/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_gdb | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_gdb/gdb_sample.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_gdb | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_gdb/test_backtrace.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_gdb | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_gdb/test_cfunction.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_gdb | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_gdb/test_cfunction_full.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_gdb | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_gdb/test_misc.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_gdb | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_gdb/test_pretty_print.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_gdb | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_gdb/util.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_gdb | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_import/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_import | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_import/__main__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_import | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_import/data/double_const.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_import/data/circular_imports/basic.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/circular_imports | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_import/data/circular_imports/basic2.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/circular_imports | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_import/data/circular_imports/binding.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/circular_imports | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_import/data/circular_imports/binding2.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/circular_imports | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_import/data/circular_imports/from_cycle1.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/circular_imports | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_import/data/circular_imports/from_cycle2.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/circular_imports | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_import/data/circular_imports/import_cycle.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/circular_imports | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_import/data/circular_imports/indirect.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/circular_imports | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_import/data/circular_imports/rebinding.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/circular_imports | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_import/data/circular_imports/rebinding2.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/circular_imports | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_import/data/circular_imports/singlephase.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/circular_imports | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_import/data/circular_imports/source.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/circular_imports | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_import/data/circular_imports/subpackage.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/circular_imports | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_import/data/circular_imports/use.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/circular_imports | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_import/data/circular_imports/util.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/circular_imports | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_import/data/circular_imports/subpkg/subpackage2.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/circular_imports/subpkg | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_import/data/circular_imports/subpkg/util.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/circular_imports/subpkg | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_import/data/circular_imports/subpkg2/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/circular_imports/subpkg2 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_import/data/circular_imports/subpkg2/parent/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/circular_imports/subpkg2/parent | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_import/data/circular_imports/subpkg2/parent/child.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/circular_imports/subpkg2/parent | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_import/data/package/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/package | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_import/data/package/submodule.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/package | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_import/data/package2/submodule1.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/package2 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_import/data/package2/submodule2.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/package2 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_import/data/package3/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/package3 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_import/data/package3/submodule.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/package3 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_import/data/package4/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/package4 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_import/data/package4/submodule.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/package4 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_import/data/unwritable/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/unwritable | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_import/data/unwritable/x.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/unwritable | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/__main__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/abc.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/test_abc.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/test_api.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/test_lazy.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/test_locks.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/test_namespace_pkgs.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/test_pkg_import.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/test_spec.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/test_threaded_import.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/test_util.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/test_windows.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/threaded_import_hangers.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/util.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/builtin/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/builtin | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/builtin/__main__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/builtin | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/builtin/test_finder.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/builtin | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/builtin/test_loader.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/builtin | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/extension/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/extension | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/extension/__main__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/extension | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/extension/_test_nonmodule_cases.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/extension | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/extension/test_case_sensitivity.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/extension | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/extension/test_finder.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/extension | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/extension/test_loader.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/extension | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/extension/test_path_hook.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/extension | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/frozen/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/frozen | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/frozen/__main__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/frozen | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/frozen/test_finder.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/frozen | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/frozen/test_loader.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/frozen | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/import_/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/import_ | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/import_/__main__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/import_ | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/import_/test___loader__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/import_ | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/import_/test___package__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/import_ | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/import_/test_api.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/import_ | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/import_/test_caching.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/import_ | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/import_/test_fromlist.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/import_ | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/import_/test_helpers.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/import_ | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/import_/test_meta_path.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/import_ | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/import_/test_packages.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/import_ | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/import_/test_path.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/import_ | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/import_/test_relative_imports.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/import_ | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/metadata/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/metadata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/metadata/_context.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/metadata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/metadata/_path.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/metadata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/metadata/fixtures.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/metadata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/metadata/stubs.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/metadata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/metadata/test_api.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/metadata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/metadata/test_main.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/metadata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/metadata/test_zip.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/metadata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/metadata/data/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/metadata/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/metadata/data/example-21.12-py3-none-any.whl /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/metadata/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/metadata/data/example-21.12-py3.6.egg /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/metadata/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/metadata/data/example2-1.0.0-py3-none-any.whl /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/metadata/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/metadata/data/sources/example/setup.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/metadata/data/sources/example | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/metadata/data/sources/example/example/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/metadata/data/sources/example/example | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/metadata/data/sources/example2/pyproject.toml /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/metadata/data/sources/example2 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/metadata/data/sources/example2/example2/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/metadata/data/sources/example2/example2 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/namespace_pkgs/missing_directory.zip /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/namespace_pkgs | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/namespace_pkgs/nested_portion1.zip /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/namespace_pkgs | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/namespace_pkgs/top_level_portion1.zip /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/namespace_pkgs | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/namespace_pkgs/both_portions/foo/one.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/namespace_pkgs/both_portions/foo | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/namespace_pkgs/both_portions/foo/two.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/namespace_pkgs/both_portions/foo | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/namespace_pkgs/module_and_namespace_package/a_test.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/namespace_pkgs/module_and_namespace_package | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/namespace_pkgs/module_and_namespace_package/a_test/empty /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/namespace_pkgs/module_and_namespace_package/a_test | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/namespace_pkgs/not_a_namespace_pkg/foo/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/namespace_pkgs/not_a_namespace_pkg/foo | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/namespace_pkgs/not_a_namespace_pkg/foo/one.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/namespace_pkgs/not_a_namespace_pkg/foo | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/namespace_pkgs/portion1/foo/one.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/namespace_pkgs/portion1/foo | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/namespace_pkgs/portion2/foo/two.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/namespace_pkgs/portion2/foo | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/namespace_pkgs/project1/parent/child/one.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/namespace_pkgs/project1/parent/child | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/namespace_pkgs/project2/parent/child/two.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/namespace_pkgs/project2/parent/child | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/namespace_pkgs/project3/parent/child/three.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/namespace_pkgs/project3/parent/child | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/partial/cfimport.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/partial | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/partial/pool_in_threads.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/partial | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/resources/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/resources | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/resources/_path.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/resources | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/resources/test_compatibilty_files.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/resources | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/resources/test_contents.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/resources | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/resources/test_custom.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/resources | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/resources/test_files.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/resources | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/resources/test_functional.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/resources | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/resources/test_open.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/resources | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/resources/test_path.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/resources | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/resources/test_read.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/resources | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/resources/test_reader.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/resources | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/resources/test_resource.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/resources | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/resources/util.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/resources | |
/usr/bin/install -c /root/apps/interpreters/python/Python/Lib/test/test_importlib/resources/zip.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/resources | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/source/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/source | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/source/__main__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/source | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/source/test_case_sensitivity.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/source | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/source/test_file_loader.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/source | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/source/test_finder.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/source | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/source/test_path_hook.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/source | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_importlib/source/test_source_encoding.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/source | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_inspect/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_inspect | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_inspect/inspect_fodder.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_inspect | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_inspect/inspect_fodder2.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_inspect | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_inspect/inspect_stock_annotations.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_inspect | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_inspect/inspect_stringized_annotations.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_inspect | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_inspect/inspect_stringized_annotations_2.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_inspect | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_inspect/inspect_stringized_annotations_pep695.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_inspect | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_inspect/test_inspect.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_inspect | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_interpreters/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_interpreters | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_interpreters/__main__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_interpreters | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_interpreters/test_api.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_interpreters | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_interpreters/test_channels.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_interpreters | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_interpreters/test_lifecycle.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_interpreters | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_interpreters/test_queues.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_interpreters | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_interpreters/test_stress.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_interpreters | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_interpreters/utils.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_interpreters | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_json/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_json | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_json/__main__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_json | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_json/test_decode.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_json | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_json/test_default.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_json | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_json/test_dump.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_json | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_json/test_encode_basestring_ascii.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_json | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_json/test_enum.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_json | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_json/test_fail.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_json | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_json/test_float.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_json | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_json/test_indent.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_json | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_json/test_pass1.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_json | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_json/test_pass2.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_json | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_json/test_pass3.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_json | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_json/test_recursion.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_json | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_json/test_scanstring.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_json | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_json/test_separators.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_json | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_json/test_speedups.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_json | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_json/test_tool.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_json | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_json/test_unicode.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_json | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_module/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_module | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_module/bad_getattr.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_module | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_module/bad_getattr2.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_module | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_module/bad_getattr3.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_module | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_module/final_a.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_module | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_module/final_b.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_module | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_module/good_getattr.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_module | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_multiprocessing_fork/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_multiprocessing_fork | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_multiprocessing_fork/test_manager.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_multiprocessing_fork | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_multiprocessing_fork/test_misc.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_multiprocessing_fork | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_multiprocessing_fork/test_processes.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_multiprocessing_fork | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_multiprocessing_fork/test_threads.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_multiprocessing_fork | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_multiprocessing_forkserver/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_multiprocessing_forkserver | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_multiprocessing_forkserver/test_manager.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_multiprocessing_forkserver | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_multiprocessing_forkserver/test_misc.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_multiprocessing_forkserver | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_multiprocessing_forkserver/test_processes.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_multiprocessing_forkserver | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_multiprocessing_forkserver/test_threads.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_multiprocessing_forkserver | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_multiprocessing_spawn/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_multiprocessing_spawn | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_multiprocessing_spawn/test_manager.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_multiprocessing_spawn | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_multiprocessing_spawn/test_misc.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_multiprocessing_spawn | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_multiprocessing_spawn/test_processes.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_multiprocessing_spawn | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_multiprocessing_spawn/test_threads.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_multiprocessing_spawn | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_pathlib/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_pathlib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_pathlib/test_pathlib.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_pathlib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_pathlib/test_pathlib_abc.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_pathlib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_peg_generator/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_peg_generator | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_peg_generator/__main__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_peg_generator | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_peg_generator/test_c_parser.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_peg_generator | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_peg_generator/test_first_sets.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_peg_generator | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_peg_generator/test_grammar_validator.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_peg_generator | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_peg_generator/test_pegen.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_peg_generator | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_pydoc/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_pydoc | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_pydoc/pydoc_mod.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_pydoc | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_pydoc/pydocfodder.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_pydoc | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_pydoc/test_pydoc.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_pydoc | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_pyrepl/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_pyrepl | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_pyrepl/__main__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_pyrepl | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_pyrepl/support.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_pyrepl | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_pyrepl/test_input.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_pyrepl | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_pyrepl/test_interact.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_pyrepl | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_pyrepl/test_keymap.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_pyrepl | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_pyrepl/test_pyrepl.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_pyrepl | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_pyrepl/test_reader.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_pyrepl | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_pyrepl/test_unix_console.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_pyrepl | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_pyrepl/test_unix_eventqueue.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_pyrepl | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_pyrepl/test_windows_console.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_pyrepl | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_sqlite3/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_sqlite3 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_sqlite3/__main__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_sqlite3 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_sqlite3/test_backup.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_sqlite3 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_sqlite3/test_cli.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_sqlite3 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_sqlite3/test_dbapi.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_sqlite3 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_sqlite3/test_dump.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_sqlite3 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_sqlite3/test_factory.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_sqlite3 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_sqlite3/test_hooks.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_sqlite3 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_sqlite3/test_regression.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_sqlite3 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_sqlite3/test_transactions.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_sqlite3 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_sqlite3/test_types.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_sqlite3 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_sqlite3/test_userfunctions.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_sqlite3 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_sqlite3/util.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_sqlite3 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tkinter/README /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tkinter | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tkinter/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tkinter | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tkinter/__main__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tkinter | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tkinter/support.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tkinter | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tkinter/test_colorchooser.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tkinter | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tkinter/test_font.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tkinter | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tkinter/test_geometry_managers.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tkinter | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tkinter/test_images.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tkinter | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tkinter/test_loadtk.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tkinter | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tkinter/test_messagebox.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tkinter | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tkinter/test_misc.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tkinter | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tkinter/test_simpledialog.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tkinter | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tkinter/test_text.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tkinter | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tkinter/test_variables.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tkinter | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tkinter/test_widgets.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tkinter | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tkinter/widget_tests.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tkinter | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/__main__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/burntsushi.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/test_data.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/test_error.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/test_misc.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/invalid/array-missing-comma.toml /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/invalid/basic-str-ends-in-escape.toml /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/invalid/inline-table-missing-comma.toml /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/invalid/invalid-comment-char.toml /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/invalid/invalid-escaped-unicode.toml /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/invalid/invalid-hex.toml /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/invalid/missing-closing-double-square-bracket.toml /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/invalid/missing-closing-square-bracket.toml /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/invalid/non-scalar-escaped.toml /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/invalid/unclosed-multiline-string.toml /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/invalid/unclosed-string.toml /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/invalid/array/file-end-after-val.toml /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid/array | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/invalid/array/unclosed-after-item.toml /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid/array | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/invalid/array/unclosed-empty.toml /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid/array | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/invalid/array-of-tables/overwrite-array-in-parent.toml /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid/array-of-tables | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/invalid/array-of-tables/overwrite-bool-with-aot.toml /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid/array-of-tables | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/invalid/boolean/invalid-false-casing.toml /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid/boolean | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/invalid/boolean/invalid-true-casing.toml /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid/boolean | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/invalid/dates-and-times/invalid-day.toml /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid/dates-and-times | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/invalid/dotted-keys/access-non-table.toml /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid/dotted-keys | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/invalid/dotted-keys/extend-defined-aot.toml /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid/dotted-keys | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/invalid/dotted-keys/extend-defined-table-with-subtable.toml /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid/dotted-keys | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/invalid/dotted-keys/extend-defined-table.toml /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid/dotted-keys | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/invalid/inline-table/define-twice-in-subtable.toml /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid/inline-table | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/invalid/inline-table/define-twice.toml /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid/inline-table | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/invalid/inline-table/file-end-after-key-val.toml /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid/inline-table | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/invalid/inline-table/mutate.toml /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid/inline-table | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/invalid/inline-table/override-val-in-table.toml /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid/inline-table | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/invalid/inline-table/override-val-with-array.toml /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid/inline-table | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/invalid/inline-table/override-val-with-table.toml /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid/inline-table | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/invalid/inline-table/overwrite-implicitly.toml /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid/inline-table | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/invalid/inline-table/overwrite-value-in-inner-array.toml /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid/inline-table | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/invalid/inline-table/overwrite-value-in-inner-table.toml /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid/inline-table | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/invalid/inline-table/unclosed-empty.toml /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid/inline-table | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/invalid/keys-and-vals/ends-early-table-def.toml /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid/keys-and-vals | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/invalid/keys-and-vals/ends-early.toml /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid/keys-and-vals | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/invalid/keys-and-vals/no-value.toml /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid/keys-and-vals | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/invalid/keys-and-vals/only-ws-after-dot.toml /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid/keys-and-vals | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/invalid/keys-and-vals/overwrite-with-deep-table.toml /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid/keys-and-vals | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/invalid/literal-str/unclosed.toml /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid/literal-str | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/invalid/multiline-basic-str/carriage-return.toml /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid/multiline-basic-str | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/invalid/multiline-basic-str/escape-only.toml /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid/multiline-basic-str | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/invalid/multiline-basic-str/file-ends-after-opening.toml /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid/multiline-basic-str | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/invalid/multiline-basic-str/last-line-escape.toml /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid/multiline-basic-str | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/invalid/multiline-basic-str/unclosed-ends-in-whitespace-escape.toml /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid/multiline-basic-str | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/invalid/multiline-literal-str/file-ends-after-opening.toml /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid/multiline-literal-str | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/invalid/multiline-literal-str/unclosed.toml /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid/multiline-literal-str | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/invalid/table/eof-after-opening.toml /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid/table | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/invalid/table/redefine-1.toml /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid/table | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/invalid/table/redefine-2.toml /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid/table | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/valid/apostrophes-in-literal-string.json /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/valid | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/valid/apostrophes-in-literal-string.toml /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/valid | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/valid/boolean.json /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/valid | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/valid/boolean.toml /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/valid | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/valid/empty-inline-table.json /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/valid | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/valid/empty-inline-table.toml /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/valid | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/valid/five-quotes.json /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/valid | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/valid/five-quotes.toml /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/valid | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/valid/hex-char.json /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/valid | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/valid/hex-char.toml /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/valid | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/valid/no-newlines.json /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/valid | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/valid/no-newlines.toml /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/valid | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/valid/trailing-comma.json /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/valid | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/valid/trailing-comma.toml /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/valid | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/valid/array/array-subtables.json /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/valid/array | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/valid/array/array-subtables.toml /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/valid/array | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/valid/array/open-parent-table.json /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/valid/array | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/valid/array/open-parent-table.toml /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/valid/array | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/valid/dates-and-times/datetimes.json /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/valid/dates-and-times | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/valid/dates-and-times/datetimes.toml /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/valid/dates-and-times | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/valid/dates-and-times/localtime.json /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/valid/dates-and-times | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/valid/dates-and-times/localtime.toml /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/valid/dates-and-times | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/valid/multiline-basic-str/ends-in-whitespace-escape.json /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/valid/multiline-basic-str | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tomllib/data/valid/multiline-basic-str/ends-in-whitespace-escape.toml /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/valid/multiline-basic-str | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tools/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tools | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tools/__main__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tools | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tools/test_freeze.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tools | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tools/test_i18n.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tools | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tools/test_makefile.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tools | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tools/test_makeunicodedata.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tools | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tools/test_reindent.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tools | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_tools/test_sundry.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_tools | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ttk/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_ttk | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ttk/__main__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_ttk | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ttk/test_extensions.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_ttk | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ttk/test_style.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_ttk | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_ttk/test_widgets.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_ttk | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_unittest/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_unittest | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_unittest/__main__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_unittest | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_unittest/_test_warnings.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_unittest | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_unittest/dummy.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_unittest | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_unittest/support.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_unittest | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_unittest/test_assertions.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_unittest | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_unittest/test_async_case.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_unittest | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_unittest/test_break.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_unittest | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_unittest/test_case.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_unittest | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_unittest/test_discovery.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_unittest | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_unittest/test_functiontestcase.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_unittest | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_unittest/test_loader.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_unittest | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_unittest/test_program.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_unittest | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_unittest/test_result.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_unittest | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_unittest/test_runner.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_unittest | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_unittest/test_setups.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_unittest | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_unittest/test_skipping.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_unittest | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_unittest/test_suite.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_unittest | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_unittest/test_util.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_unittest | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_unittest/testmock/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_unittest/testmock | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_unittest/testmock/__main__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_unittest/testmock | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_unittest/testmock/support.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_unittest/testmock | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_unittest/testmock/testasync.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_unittest/testmock | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_unittest/testmock/testcallable.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_unittest/testmock | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_unittest/testmock/testhelpers.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_unittest/testmock | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_unittest/testmock/testmagicmethods.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_unittest/testmock | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_unittest/testmock/testmock.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_unittest/testmock | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_unittest/testmock/testpatch.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_unittest/testmock | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_unittest/testmock/testsealable.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_unittest/testmock | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_unittest/testmock/testsentinel.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_unittest/testmock | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_unittest/testmock/testthreadingmock.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_unittest/testmock | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_unittest/testmock/testwith.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_unittest/testmock | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_warnings/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_warnings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_warnings/__main__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_warnings | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_warnings/data/import_warning.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_warnings/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_warnings/data/package_helper.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_warnings/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_warnings/data/stacklevel.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_warnings/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_zipfile/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_zipfile | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_zipfile/__main__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_zipfile | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_zipfile/test_core.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_zipfile | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_zipfile/_path/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_zipfile/_path | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_zipfile/_path/_functools.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_zipfile/_path | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_zipfile/_path/_itertools.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_zipfile/_path | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_zipfile/_path/_support.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_zipfile/_path | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_zipfile/_path/_test_params.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_zipfile/_path | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_zipfile/_path/test_complexity.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_zipfile/_path | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_zipfile/_path/test_path.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_zipfile/_path | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_zipfile/_path/write-alpharep.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_zipfile/_path | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_zoneinfo/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_zoneinfo | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_zoneinfo/__main__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_zoneinfo | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_zoneinfo/_support.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_zoneinfo | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_zoneinfo/test_zoneinfo.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_zoneinfo | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_zoneinfo/test_zoneinfo_property.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_zoneinfo | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_zoneinfo/data/update_test_data.py /root/apps/interpreters/python/install/host/lib/python3.13/test/test_zoneinfo/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/test_zoneinfo/data/zoneinfo_data.json /root/apps/interpreters/python/install/host/lib/python3.13/test/test_zoneinfo/data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/tkinterdata/python.gif /root/apps/interpreters/python/install/host/lib/python3.13/test/tkinterdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/tkinterdata/python.pgm /root/apps/interpreters/python/install/host/lib/python3.13/test/tkinterdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/tkinterdata/python.png /root/apps/interpreters/python/install/host/lib/python3.13/test/tkinterdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/tkinterdata/python.ppm /root/apps/interpreters/python/install/host/lib/python3.13/test/tkinterdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/tkinterdata/python.xbm /root/apps/interpreters/python/install/host/lib/python3.13/test/tkinterdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/tokenizedata/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/tokenizedata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/tokenizedata/bad_coding.py /root/apps/interpreters/python/install/host/lib/python3.13/test/tokenizedata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/tokenizedata/bad_coding2.py /root/apps/interpreters/python/install/host/lib/python3.13/test/tokenizedata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/tokenizedata/badsyntax_3131.py /root/apps/interpreters/python/install/host/lib/python3.13/test/tokenizedata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/tokenizedata/badsyntax_pep3120.py /root/apps/interpreters/python/install/host/lib/python3.13/test/tokenizedata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/tokenizedata/coding20731.py /root/apps/interpreters/python/install/host/lib/python3.13/test/tokenizedata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/tokenizedata/tokenize_tests-latin1-coding-cookie-and-utf8-bom-sig.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/tokenizedata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/tokenizedata/tokenize_tests-no-coding-cookie-and-utf8-bom-sig-only.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/tokenizedata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/tokenizedata/tokenize_tests-utf8-coding-cookie-and-no-utf8-bom-sig.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/tokenizedata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/tokenizedata/tokenize_tests-utf8-coding-cookie-and-utf8-bom-sig.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/tokenizedata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/tokenizedata/tokenize_tests.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/tokenizedata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/tracedmodules/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/tracedmodules | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/tracedmodules/testmod.py /root/apps/interpreters/python/install/host/lib/python3.13/test/tracedmodules | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/typinganndata/__init__.py /root/apps/interpreters/python/install/host/lib/python3.13/test/typinganndata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/typinganndata/_typed_dict_helper.py /root/apps/interpreters/python/install/host/lib/python3.13/test/typinganndata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/typinganndata/ann_module.py /root/apps/interpreters/python/install/host/lib/python3.13/test/typinganndata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/typinganndata/ann_module2.py /root/apps/interpreters/python/install/host/lib/python3.13/test/typinganndata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/typinganndata/ann_module3.py /root/apps/interpreters/python/install/host/lib/python3.13/test/typinganndata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/typinganndata/ann_module4.py /root/apps/interpreters/python/install/host/lib/python3.13/test/typinganndata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/typinganndata/ann_module5.py /root/apps/interpreters/python/install/host/lib/python3.13/test/typinganndata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/typinganndata/ann_module6.py /root/apps/interpreters/python/install/host/lib/python3.13/test/typinganndata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/typinganndata/ann_module695.py /root/apps/interpreters/python/install/host/lib/python3.13/test/typinganndata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/typinganndata/ann_module7.py /root/apps/interpreters/python/install/host/lib/python3.13/test/typinganndata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/typinganndata/ann_module8.py /root/apps/interpreters/python/install/host/lib/python3.13/test/typinganndata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/typinganndata/ann_module9.py /root/apps/interpreters/python/install/host/lib/python3.13/test/typinganndata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/typinganndata/mod_generics_cache.py /root/apps/interpreters/python/install/host/lib/python3.13/test/typinganndata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/wheeldata/setuptools-67.6.1-py3-none-any.whl /root/apps/interpreters/python/install/host/lib/python3.13/test/wheeldata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/wheeldata/wheel-0.43.0-py3-none-any.whl /root/apps/interpreters/python/install/host/lib/python3.13/test/wheeldata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/xmltestdata/expat224_utf8_bug.xml /root/apps/interpreters/python/install/host/lib/python3.13/test/xmltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/xmltestdata/simple-ns.xml /root/apps/interpreters/python/install/host/lib/python3.13/test/xmltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/xmltestdata/simple.xml /root/apps/interpreters/python/install/host/lib/python3.13/test/xmltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/xmltestdata/test.xml /root/apps/interpreters/python/install/host/lib/python3.13/test/xmltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/xmltestdata/test.xml.out /root/apps/interpreters/python/install/host/lib/python3.13/test/xmltestdata | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/xmltestdata/c14n-20/README /root/apps/interpreters/python/install/host/lib/python3.13/test/xmltestdata/c14n-20 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/xmltestdata/c14n-20/c14nComment.xml /root/apps/interpreters/python/install/host/lib/python3.13/test/xmltestdata/c14n-20 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/xmltestdata/c14n-20/c14nDefault.xml /root/apps/interpreters/python/install/host/lib/python3.13/test/xmltestdata/c14n-20 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/xmltestdata/c14n-20/c14nPrefix.xml /root/apps/interpreters/python/install/host/lib/python3.13/test/xmltestdata/c14n-20 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/xmltestdata/c14n-20/c14nPrefixQname.xml /root/apps/interpreters/python/install/host/lib/python3.13/test/xmltestdata/c14n-20 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/xmltestdata/c14n-20/c14nPrefixQnameXpathElem.xml /root/apps/interpreters/python/install/host/lib/python3.13/test/xmltestdata/c14n-20 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/xmltestdata/c14n-20/c14nQname.xml /root/apps/interpreters/python/install/host/lib/python3.13/test/xmltestdata/c14n-20 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/xmltestdata/c14n-20/c14nQnameElem.xml /root/apps/interpreters/python/install/host/lib/python3.13/test/xmltestdata/c14n-20 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/xmltestdata/c14n-20/c14nQnameXpathElem.xml /root/apps/interpreters/python/install/host/lib/python3.13/test/xmltestdata/c14n-20 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/xmltestdata/c14n-20/c14nTrim.xml /root/apps/interpreters/python/install/host/lib/python3.13/test/xmltestdata/c14n-20 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/xmltestdata/c14n-20/doc.dtd /root/apps/interpreters/python/install/host/lib/python3.13/test/xmltestdata/c14n-20 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/xmltestdata/c14n-20/doc.xsl /root/apps/interpreters/python/install/host/lib/python3.13/test/xmltestdata/c14n-20 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/xmltestdata/c14n-20/inC14N1.xml /root/apps/interpreters/python/install/host/lib/python3.13/test/xmltestdata/c14n-20 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/xmltestdata/c14n-20/inC14N2.xml /root/apps/interpreters/python/install/host/lib/python3.13/test/xmltestdata/c14n-20 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/xmltestdata/c14n-20/inC14N3.xml /root/apps/interpreters/python/install/host/lib/python3.13/test/xmltestdata/c14n-20 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/xmltestdata/c14n-20/inC14N4.xml /root/apps/interpreters/python/install/host/lib/python3.13/test/xmltestdata/c14n-20 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/xmltestdata/c14n-20/inC14N5.xml /root/apps/interpreters/python/install/host/lib/python3.13/test/xmltestdata/c14n-20 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/xmltestdata/c14n-20/inC14N6.xml /root/apps/interpreters/python/install/host/lib/python3.13/test/xmltestdata/c14n-20 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/xmltestdata/c14n-20/inNsContent.xml /root/apps/interpreters/python/install/host/lib/python3.13/test/xmltestdata/c14n-20 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/xmltestdata/c14n-20/inNsDefault.xml /root/apps/interpreters/python/install/host/lib/python3.13/test/xmltestdata/c14n-20 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/xmltestdata/c14n-20/inNsPushdown.xml /root/apps/interpreters/python/install/host/lib/python3.13/test/xmltestdata/c14n-20 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/xmltestdata/c14n-20/inNsRedecl.xml /root/apps/interpreters/python/install/host/lib/python3.13/test/xmltestdata/c14n-20 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/xmltestdata/c14n-20/inNsSort.xml /root/apps/interpreters/python/install/host/lib/python3.13/test/xmltestdata/c14n-20 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/xmltestdata/c14n-20/inNsSuperfluous.xml /root/apps/interpreters/python/install/host/lib/python3.13/test/xmltestdata/c14n-20 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/xmltestdata/c14n-20/inNsXml.xml /root/apps/interpreters/python/install/host/lib/python3.13/test/xmltestdata/c14n-20 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/xmltestdata/c14n-20/out_inC14N1_c14nComment.xml /root/apps/interpreters/python/install/host/lib/python3.13/test/xmltestdata/c14n-20 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/xmltestdata/c14n-20/out_inC14N1_c14nDefault.xml /root/apps/interpreters/python/install/host/lib/python3.13/test/xmltestdata/c14n-20 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/xmltestdata/c14n-20/out_inC14N2_c14nDefault.xml /root/apps/interpreters/python/install/host/lib/python3.13/test/xmltestdata/c14n-20 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/xmltestdata/c14n-20/out_inC14N2_c14nTrim.xml /root/apps/interpreters/python/install/host/lib/python3.13/test/xmltestdata/c14n-20 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/xmltestdata/c14n-20/out_inC14N3_c14nDefault.xml /root/apps/interpreters/python/install/host/lib/python3.13/test/xmltestdata/c14n-20 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/xmltestdata/c14n-20/out_inC14N3_c14nPrefix.xml /root/apps/interpreters/python/install/host/lib/python3.13/test/xmltestdata/c14n-20 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/xmltestdata/c14n-20/out_inC14N3_c14nTrim.xml /root/apps/interpreters/python/install/host/lib/python3.13/test/xmltestdata/c14n-20 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/xmltestdata/c14n-20/out_inC14N4_c14nDefault.xml /root/apps/interpreters/python/install/host/lib/python3.13/test/xmltestdata/c14n-20 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/xmltestdata/c14n-20/out_inC14N4_c14nTrim.xml /root/apps/interpreters/python/install/host/lib/python3.13/test/xmltestdata/c14n-20 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/xmltestdata/c14n-20/out_inC14N5_c14nDefault.xml /root/apps/interpreters/python/install/host/lib/python3.13/test/xmltestdata/c14n-20 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/xmltestdata/c14n-20/out_inC14N5_c14nTrim.xml /root/apps/interpreters/python/install/host/lib/python3.13/test/xmltestdata/c14n-20 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/xmltestdata/c14n-20/out_inC14N6_c14nDefault.xml /root/apps/interpreters/python/install/host/lib/python3.13/test/xmltestdata/c14n-20 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/xmltestdata/c14n-20/out_inNsContent_c14nDefault.xml /root/apps/interpreters/python/install/host/lib/python3.13/test/xmltestdata/c14n-20 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/xmltestdata/c14n-20/out_inNsContent_c14nPrefixQnameXpathElem.xml /root/apps/interpreters/python/install/host/lib/python3.13/test/xmltestdata/c14n-20 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/xmltestdata/c14n-20/out_inNsContent_c14nQnameElem.xml /root/apps/interpreters/python/install/host/lib/python3.13/test/xmltestdata/c14n-20 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/xmltestdata/c14n-20/out_inNsContent_c14nQnameXpathElem.xml /root/apps/interpreters/python/install/host/lib/python3.13/test/xmltestdata/c14n-20 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/xmltestdata/c14n-20/out_inNsDefault_c14nDefault.xml /root/apps/interpreters/python/install/host/lib/python3.13/test/xmltestdata/c14n-20 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/xmltestdata/c14n-20/out_inNsDefault_c14nPrefix.xml /root/apps/interpreters/python/install/host/lib/python3.13/test/xmltestdata/c14n-20 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/xmltestdata/c14n-20/out_inNsPushdown_c14nDefault.xml /root/apps/interpreters/python/install/host/lib/python3.13/test/xmltestdata/c14n-20 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/xmltestdata/c14n-20/out_inNsPushdown_c14nPrefix.xml /root/apps/interpreters/python/install/host/lib/python3.13/test/xmltestdata/c14n-20 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/xmltestdata/c14n-20/out_inNsRedecl_c14nDefault.xml /root/apps/interpreters/python/install/host/lib/python3.13/test/xmltestdata/c14n-20 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/xmltestdata/c14n-20/out_inNsRedecl_c14nPrefix.xml /root/apps/interpreters/python/install/host/lib/python3.13/test/xmltestdata/c14n-20 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/xmltestdata/c14n-20/out_inNsSort_c14nDefault.xml /root/apps/interpreters/python/install/host/lib/python3.13/test/xmltestdata/c14n-20 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/xmltestdata/c14n-20/out_inNsSort_c14nPrefix.xml /root/apps/interpreters/python/install/host/lib/python3.13/test/xmltestdata/c14n-20 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/xmltestdata/c14n-20/out_inNsSuperfluous_c14nDefault.xml /root/apps/interpreters/python/install/host/lib/python3.13/test/xmltestdata/c14n-20 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/xmltestdata/c14n-20/out_inNsSuperfluous_c14nPrefix.xml /root/apps/interpreters/python/install/host/lib/python3.13/test/xmltestdata/c14n-20 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/xmltestdata/c14n-20/out_inNsXml_c14nDefault.xml /root/apps/interpreters/python/install/host/lib/python3.13/test/xmltestdata/c14n-20 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/xmltestdata/c14n-20/out_inNsXml_c14nPrefix.xml /root/apps/interpreters/python/install/host/lib/python3.13/test/xmltestdata/c14n-20 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/xmltestdata/c14n-20/out_inNsXml_c14nPrefixQname.xml /root/apps/interpreters/python/install/host/lib/python3.13/test/xmltestdata/c14n-20 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/xmltestdata/c14n-20/out_inNsXml_c14nQname.xml /root/apps/interpreters/python/install/host/lib/python3.13/test/xmltestdata/c14n-20 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/xmltestdata/c14n-20/world.txt /root/apps/interpreters/python/install/host/lib/python3.13/test/xmltestdata/c14n-20 | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/zipimport_data/sparse-zip64-c0-0x000000000.part /root/apps/interpreters/python/install/host/lib/python3.13/test/zipimport_data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/zipimport_data/sparse-zip64-c0-0x100000000.part /root/apps/interpreters/python/install/host/lib/python3.13/test/zipimport_data | |
/usr/bin/install -c -m 644 /root/apps/interpreters/python/Python/Lib/test/zipimport_data/sparse-zip64-c0-0x200000000.part /root/apps/interpreters/python/install/host/lib/python3.13/test/zipimport_data | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/__phello__'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/_pyrepl'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/asyncio'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/collections'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/concurrent'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/concurrent/futures'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/config-3.13d-x86_64-linux-gnu'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/ctypes'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/ctypes/macholib'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/curses'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/dbm'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/email'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/email/mime'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/encodings'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/ensurepip'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/ensurepip/_bundled'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/html'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/http'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/Icons'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/importlib'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/importlib/metadata'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/importlib/resources'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/json'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/lib-dynload'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/logging'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/multiprocessing'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/multiprocessing/dummy'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/pathlib'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/pydoc_data'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/re'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/site-packages'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/sqlite3'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/sysconfig'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/archivetestdata'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/audiodata'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/certdata'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/certdata/capath'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/cjkencodings'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/configdata'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/crashers'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/data'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/decimaltestdata'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/dtracedata'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/encoded_modules'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/leakers'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/libregrtest'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/mathdata'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/regrtestdata'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/regrtestdata/import_from_tests'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/regrtestdata/import_from_tests/test_regrtest_b'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/subprocessdata'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/support'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/support/_hypothesis_stubs'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/support/interpreters'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ast'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_capi'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_cext'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_concurrent_futures'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_cppext'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_dataclasses'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_doctest'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_email'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/data'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_free_threading'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_future_stmt'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_gdb'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_import'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/circular_imports'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/circular_imports/subpkg'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/circular_imports/subpkg2'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/circular_imports/subpkg2/parent'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/package'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/package2'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/package3'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/package4'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/unwritable'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/builtin'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/extension'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/frozen'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/import_'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/metadata'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/metadata/data'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/metadata/data/sources'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/metadata/data/sources/example'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/metadata/data/sources/example/example'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/metadata/data/sources/example2'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/metadata/data/sources/example2/example2'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/namespace_pkgs'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/namespace_pkgs/both_portions'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/namespace_pkgs/both_portions/foo'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/namespace_pkgs/module_and_namespace_package'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/namespace_pkgs/module_and_namespace_package/a_test'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/namespace_pkgs/not_a_namespace_pkg'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/namespace_pkgs/not_a_namespace_pkg/foo'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/namespace_pkgs/portion1'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/namespace_pkgs/portion1/foo'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/namespace_pkgs/portion2'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/namespace_pkgs/portion2/foo'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/namespace_pkgs/project1'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/namespace_pkgs/project1/parent'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/namespace_pkgs/project1/parent/child'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/namespace_pkgs/project2'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/namespace_pkgs/project2/parent'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/namespace_pkgs/project2/parent/child'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/namespace_pkgs/project3'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/namespace_pkgs/project3/parent'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/namespace_pkgs/project3/parent/child'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/partial'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/resources'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/source'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_inspect'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_interpreters'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_json'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_module'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_multiprocessing_fork'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_multiprocessing_forkserver'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_multiprocessing_spawn'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_pathlib'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_peg_generator'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_pydoc'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_pyrepl'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_sqlite3'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/__future__.py'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_tkinter'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/__phello__/spam.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/_markupbase.py'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid/array'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/_colorize.py'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid/array-of-tables'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid/boolean'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/__hello__.py'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid/dates-and-times'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid/dotted-keys'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid/inline-table'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/_pydatetime.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/_aix_support.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/_pyrepl/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/__phello__/__init__.py'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid/keys-and-vals'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid/literal-str'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/_pyrepl/commands.py'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid/multiline-basic-str'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/_pyrepl/fancy_termios.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/_pyrepl/__main__.py'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid/multiline-literal-str'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/invalid/table'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/valid'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/valid/array'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/valid/dates-and-times'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/_pyrepl/_minimal_curses.py'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/data/valid/multiline-basic-str'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_tools'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ttk'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_unittest'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/_pyrepl/historical_reader.py'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_unittest/testmock'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/_pyrepl/_threading_handler.py'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_warnings'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/_compat_pickle.py'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_warnings/data'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_zipfile'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/_pyrepl/main.py'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_zipfile/_path'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_zoneinfo'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/_android_support.py'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_zoneinfo/data'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/tkinterdata'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/tokenizedata'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/_pyrepl/readline.py'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/tracedmodules'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/typinganndata'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/_pyrepl/pager.py'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/wheeldata'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/xmltestdata'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/xmltestdata/c14n-20'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/test/zipimport_data'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/tkinter'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/tomllib'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/turtledemo'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/unittest'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/_pyrepl/reader.py'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/urllib'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/venv'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/venv/scripts'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/venv/scripts/common'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/venv/scripts/posix'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/wsgiref'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/_collections_abc.py'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/xml'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/xml/dom'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/_compression.py'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/xml/etree'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/_pyrepl/unix_console.py'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/xml/parsers'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/xml/sax'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/xmlrpc'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/zipfile'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/zipfile/_path'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/zoneinfo'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/_sitebuiltins.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/_weakrefset.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/ast.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/_ios_support.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/asyncio/base_futures.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/_strptime.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/asyncio/coroutines.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/_pyrepl/completing_reader.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/asyncio/futures.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/asyncio/base_subprocess.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/_opcode_metadata.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/_pyrepl/simple_interact.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/asyncio/proactor_events.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/_pyrepl/input.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/asyncio/events.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/_pyrepl/trace.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/_pyrepl/console.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/_pyrepl/types.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/abc.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/asyncio/selector_events.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/_pyrepl/keymap.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/asyncio/subprocess.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/_pyrepl/unix_eventqueue.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/asyncio/locks.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/antigravity.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/argparse.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/asyncio/base_tasks.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/asyncio/timeouts.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/_sysconfigdata_d_linux_x86_64-linux-gnu.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/asyncio/windows_events.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/_pyrepl/utils.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/bisect.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/_osx_support.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/_pyrepl/windows_console.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/cmd.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/asyncio/constants.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/_pyrepl/curses.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/bz2.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/collections/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/concurrent/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/concurrent/futures/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/asyncio/taskgroups.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/concurrent/futures/_base.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/concurrent/futures/thread.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/cProfile.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/config-3.13d-x86_64-linux-gnu/python-config.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/asyncio/transports.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/asyncio/tasks.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/configparser.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/copy.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/calendar.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/ctypes/macholib/dyld.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/_threading_local.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/ctypes/macholib/framework.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/ctypes/_aix.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/ctypes/util.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/curses/ascii.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/dataclasses.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/_py_abc.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/code.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/asyncio/log.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/asyncio/mixins.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/concurrent/futures/process.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/curses/has_key.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/dbm/gnu.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/dbm/ndbm.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/dbm/sqlite3.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/copyreg.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/ctypes/macholib/dylib.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/difflib.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/curses/panel.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/curses/textpad.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/asyncio/trsock.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/decimal.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/email/base64mime.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/ctypes/_endian.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/email/_encoded_words.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/csv.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/email/charset.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/email/encoders.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/email/header.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/ctypes/macholib/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/email/contentmanager.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/asyncio/unix_events.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/email/errors.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/asyncio/exceptions.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/email/mime/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/codecs.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/email/mime/application.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/email/_header_value_parser.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/email/mime/audio.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/ctypes/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/asyncio/format_helpers.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/asyncio/threads.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/email/mime/image.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/email/mime/text.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/asyncio/sslproto.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/email/utils.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/email/headerregistry.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/ctypes/wintypes.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/email/feedparser.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/email/mime/base.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/email/parser.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/base64_codec.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/asyncio/protocols.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/email/mime/message.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/charmap.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/cp1125.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/big5.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/email/mime/multipart.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/asyncio/queues.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/_pydecimal.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/email/policy.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/big5hkscs.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/email/mime/nonmultipart.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/curses/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/datetime.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/bz2_codec.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/cp1252.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/dbm/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/cp037.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/asyncio/windows_utils.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/email/iterators.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/dbm/dumb.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/asyncio/runners.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/email/quoprimime.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/contextlib.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/cp1253.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/cp1256.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/aliases.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/email/message.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/cp424.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/cp1006.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/cp1140.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/asyncio/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/cp737.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/asyncio/staggered.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/cp1257.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/asyncio/__main__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/base64.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/cp855.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/ascii.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/cp1254.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/asyncio/streams.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/cp860.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/asyncio/base_events.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/cp1250.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/cp864.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/cp874.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/cp950.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/cp437.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/cp1258.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/cp1026.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/email/generator.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/collections/abc.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/euc_jis_2004.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/cp1251.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/euc_jisx0213.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/cp273.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/cp1255.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/cp875.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/euc_jp.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/colorsys.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/cp775.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/euc_kr.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/hex_codec.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/cp932.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/compileall.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/iso2022_jp.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/hp_roman8.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/iso2022_jp_3.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/iso8859_10.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/iso8859_15.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/iso8859_4.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/cp856.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/iso8859_8.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/codeop.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/gb18030.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/koi8_t.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/hz.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/cp857.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/cp500.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/cp949.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/cp865.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/mac_arabic.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/iso2022_jp_ext.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/gb2312.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/koi8_u.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/iso8859_11.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/idna.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/iso2022_jp_1.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/mac_greek.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/iso8859_16.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/iso8859_9.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/iso8859_5.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/iso2022_kr.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/cp861.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/cp720.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/gbk.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/kz1048.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/dis.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/cp850.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/bdb.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/iso8859_2.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/mac_iceland.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/mac_romanian.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/iso2022_jp_2.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/iso8859_1.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/palmos.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/iso8859_13.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/contextvars.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/raw_unicode_escape.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/cp858.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/iso8859_6.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/shift_jisx0213.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/utf_16.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/johab.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/latin_1.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/mac_latin2.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/iso8859_3.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/iso2022_jp_2004.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/mac_turkish.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/tis_620.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/ptcp154.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/utf_32_be.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/koi8_r.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/cp866.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/iso8859_14.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/utf_8_sig.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/mac_croatian.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/ensurepip/__main__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/rot_13.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/filecmp.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/ensurepip/_uninstall.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/cp862.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/undefined.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/iso8859_7.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/utf_32_le.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/cp852.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/ftplib.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/enum.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/getpass.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/mac_roman.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/mbcs.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/mac_cyrillic.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/unicode_escape.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/shift_jis.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/utf_16_be.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/utf_7.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/gzip.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/html/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/punycode.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/oem.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/utf_16_le.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/utf_8.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/http/client.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/uu_codec.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/mac_farsi.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/gettext.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/shift_jis_2004.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/cp869.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/autocomplete.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/fileinput.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/calltip.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/html/entities.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/config.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/zlib_codec.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/utf_32.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/__main__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/debugger_r.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/dynoption.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/format.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/cp863.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/help_about.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/encodings/quopri_codec.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/calltip_w.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/autocomplete_w.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/editor.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/ensurepip/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test/mock_tk.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test/htest.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test/test_autoexpand.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test/test_codecontext.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test/test_configdialog.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/codecontext.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/fnmatch.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test/test_debugobj_r.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/glob.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/hashlib.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test/test_delegator.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/doctest.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/colorizer.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test/mock_idle.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/grep.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test/test_filelist.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/autoexpand.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test/test_browser.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/history.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test/test_editmenu.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test/template.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/browser.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test/test_format.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test/test_help_about.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/fractions.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test/test_autocomplete.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/heapq.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/functools.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test/test_editor.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/hyperparser.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/help.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/debugobj.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test/test_macosx.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test/test_parenmatch.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/http/cookiejar.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test/test_pathbrowser.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test/test_mainmenu.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/config_key.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test/test_history.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/graphlib.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test/test_multicall.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/hmac.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test/test_percolator.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test/test_calltip.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test/test_colorizer.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test/test_outwin.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test/test_pyshell.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/debugobj_r.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test/test_rpc.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test/test_pyparse.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test/test_run.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test/test_search.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test/test_squeezer.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/delegator.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test/test_textview.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test/test_util.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test/test_searchbase.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test/test_autocomplete_w.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test/test_warning.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test/test_zzdummy.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/mainmenu.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test/test_query.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/configdialog.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test/test_hyperparser.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/html/parser.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test/test_window.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/multicall.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test/test_searchengine.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test/test_zoomheight.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/email/_parseaddr.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test/test_tooltip.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/pathbrowser.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test/test_calltip_w.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/query.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test/test_grep.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/run.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test/tkinter_testing_utils.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/genericpath.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test/test_tree.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/percolator.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test/test_help.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test/test_config.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test/test_stackviewer.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/iomenu.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test/test_undo.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/searchbase.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/getopt.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/http/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test/test_statusbar.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/stackviewer.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test/test_sidebar.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/pyparse.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/tree.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test/test_runscript.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/redirector.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test/test_text.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/zoomheight.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/email/_policybase.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/importlib/_abc.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test/test_iomenu.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/searchengine.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/statusbar.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/importlib/_bootstrap.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/outwin.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test/test_scrolledlist.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/replace.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/textview.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/filelist.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/importlib/machinery.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/_pyio.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/importlib/metadata/_functools.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/importlib/metadata/diagnose.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/zzdummy.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/importlib/metadata/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/importlib/resources/_common.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/importlib/readers.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/importlib/metadata/_itertools.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/parenmatch.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/importlib/resources/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/sidebar.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/importlib/resources/_adapters.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/runscript.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/tooltip.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/pyshell.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/importlib/metadata/_meta.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/importlib/resources/readers.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/imaplib.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test/test_debugger.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/rpc.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test/test_redirector.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/importlib/resources/_functional.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/inspect.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/json/decoder.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/keyword.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/macosx.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/scrolledlist.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/importlib/metadata/_text.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/undo.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/importlib/resources/simple.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test/test_replace.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/linecache.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/logging/handlers.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/importlib/resources/_itertools.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/modulefinder.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/importlib/resources/abc.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test/test_debugger_r.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/importlib/simple.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/multiprocessing/dummy/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/http/cookies.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test/test_debugobj.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/importlib/util.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/idle_test/test_config_key.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/locale.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/multiprocessing/managers.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/squeezer.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/search.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/multiprocessing/dummy/connection.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/multiprocessing/popen_spawn_posix.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/multiprocessing/reduction.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/multiprocessing/forkserver.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/multiprocessing/popen_spawn_win32.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/multiprocessing/sharedctypes.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/netrc.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/opcode.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/pathlib/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/util.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/json/encoder.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/window.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/pathlib/_abc.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/multiprocessing/process.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/pickle.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/operator.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/importlib/metadata/_adapters.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/http/server.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/plistlib.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/multiprocessing/resource_sharer.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/profile.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/ntpath.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/importlib/_bootstrap_external.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/importlib/metadata/_collections.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/multiprocessing/heap.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/multiprocessing/spawn.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/pyclbr.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/multiprocessing/resource_tracker.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/multiprocessing/queues.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/multiprocessing/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/multiprocessing/connection.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/optparse.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/idlelib/debugger.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/pydoc_data/topics.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/multiprocessing/shared_memory.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/lzma.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/json/scanner.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/pstats.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/re/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/email/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/logging/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/multiprocessing/synchronize.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/pathlib/_local.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/json/tool.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/mailbox.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/re/_parser.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/pydoc.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/sched.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/nturl2path.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/re/_casefix.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/numbers.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/shlex.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/secrets.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/poplib.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/re/_compiler.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/site.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/selectors.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/sqlite3/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/sqlite3/__main__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/sre_compile.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/sre_constants.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/multiprocessing/pool.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/sqlite3/dbapi2.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/sre_parse.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/stat.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/multiprocessing/util.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/ssl.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/posixpath.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/sqlite3/dump.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/multiprocessing/context.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/statistics.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/struct.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/subprocess.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/importlib/abc.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/smtplib.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/pty.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/shutil.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/sysconfig/__main__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/shelve.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/_test_embed_set_config.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/__main__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/_test_atexit.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/re/_constants.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/tabnanny.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/os.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/pprint.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/_pylong.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/importlib/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/_test_eintr.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/pdb.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/_test_venv_multiprocessing.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/py_compile.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/_test_embed_structseq.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/archiver_tests.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/archivetestdata/testdata_module_inside_zip.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/_test_monitoring_shutdown.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/audiotests.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/_test_multiprocessing.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/autotest.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/pickletools.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/bisect_cmd.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/multiprocessing/popen_fork.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/tarfile.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/certdata/make_ssl_certs.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/socket.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/multiprocessing/popen_forkserver.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/cov.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/crashers/bogus_code_obj.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/crashers/recursive_call.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/crashers/trace_at_recursion_limit.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/crashers/underlying_dict.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/crashers/gc_inspection.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/datetimetester.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/curses_tests.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/crashers/infinite_loop_re.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/crashers/mutation_inside_cyclegc.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/dis_module.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/dtracedata/gc.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/dtracedata/call_stack.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/dtracedata/instance.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/dtracedata/line.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/encoded_modules/module_iso_8859_1.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/leakers/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/encoded_modules/module_koi8_r.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/leakers/test_ctypes.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/libregrtest/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/encoded_modules/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/leakers/test_selftype.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/libregrtest/findtests.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/libregrtest/cmdline.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/libregrtest/pgo.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/audit-tests.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/libregrtest/refleak.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/logging/config.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/libregrtest/run_workers.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/fork_wait.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/libregrtest/single.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/libregrtest/result.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/reprlib.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/libregrtest/logger.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/libregrtest/win_utils.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/string.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/mapping_tests.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/memory_watchdog.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/symtable.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/libregrtest/main.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/socketserver.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/libregrtest/results.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/mock_socket.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/libregrtest/worker.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/libregrtest/testresult.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/list_tests.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/pickletester.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/rlcompleter.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/sysconfig/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/mp_fork_bomb.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/libregrtest/filter.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/stringprep.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/mp_preload.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/multibytecodec_support.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/libregrtest/tsan.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/libregrtest/utils.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/libregrtest/runtests.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/runpy.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/pythoninfo.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/re_tests.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/signal.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/libregrtest/save_env.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/pkgutil.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/regrtestdata/import_from_tests/test_regrtest_b/util.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/regrtestdata/import_from_tests/test_regrtest_c.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/mimetypes.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/seq_tests.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/relimport.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/queue.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/reperf.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/string_tests.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/subprocessdata/qgrep.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/subprocessdata/sigchild_ignore.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/support/_hypothesis_stubs/_helpers.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/support/asyncore.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/support/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/support/import_helper.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/support/_hypothesis_stubs/strategies.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/libregrtest/setup.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/support/interpreters/queues.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/support/refleak_helper.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/support/ast_helper.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/support/script_helper.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/support/testcase.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/platform.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test__colorize.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/quopri.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/support/threading_helper.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test__opcode.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/support/asynchat.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/support/interpreters/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_android.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test__interpchannels.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/signalinterproctester.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/support/bytecode_helper.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/support/warnings_helper.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test__osx_support.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/ssl_servers.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/lock_tests.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/io.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/support/logging_helper.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/support/hashlib_helper.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test___all__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/ssltests.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/support/interpreters/_crossinterp.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/support/os_helper.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ast/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncgen.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/random.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/ipaddress.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ast/snippets.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/support/hypothesis_helper.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio/echo2.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio/test_buffered_proto.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/regrtest.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/support/smtpd.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/regrtestdata/import_from_tests/test_regrtest_a.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio/test_futures.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio/echo3.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_abc.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/support/interpreters/channels.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/regrtestdata/import_from_tests/test_regrtest_b/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio/functional.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio/test_context.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio/test_proactor_events.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio/test_selector_events.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio/test_ssl.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio/test_eager_task_factory.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_argparse.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio/test_subprocess.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio/test_base_events.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/support/pty_helper.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/tempfile.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/pydoc_data/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/subprocessdata/fd_status.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio/test_timeouts.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/subprocessdata/input_reader.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio/test_events.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/subprocessdata/qcat.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio/test_windows_events.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_audit.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_bdb.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_abstract_numbers.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/support/socket_helper.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_binop.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio/test_taskgroups.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio/test_transports.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_bufio.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio/test_unix_events.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_c_locale_coercion.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_builtin.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio/test_futures2.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test__interpreters.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio/test_windows_utils.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/support/_hypothesis_stubs/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_augassign.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio/test_locks.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_capi/__main__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_capi/check_config.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio/__main__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio/echo.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_capi/test_bytes.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_bisect.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio/utils.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_capi/test_abstract.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_calendar.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_bigaddrspace.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_base64.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_capi/test_eval_code_ex.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/profilee.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_bigmem.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_capi/test_codecs.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/pyclbr_input.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio/test_tasks.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_capi/test_hash.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio/test_protocols.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_bool.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_capi/test_immortal.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_capi/test_list.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_capi/test_exceptions.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/json/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ast/test_ast.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio/test_queues.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test__locale.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio/test_sendfile.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio/test_waitfor.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_capi/test_mem.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_capi/test_opt.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_capi/test_long.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_capi/test_structmembers.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_buffer.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_atexit.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio/test_sslproto.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_capi/test_misc.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_capi/test_bytearray.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_call.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_capi/test_complex.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_capi/test_unicode.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio/test_pep492.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_cext/setup.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_capi/test_sys.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_cmath.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_code.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_charmapcodec.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_codecencodings_hk.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_codecencodings_iso2022.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_capi/test_time.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_class.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_capi/test_tuple.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_codecencodings_jp.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_baseexception.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_capi/test_dict.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_capi/test_float.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_binascii.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_codecencodings_kr.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_codecencodings_tw.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_codecmaps_kr.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_codecmaps_cn.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_codecmaps_hk.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_codecmaps_tw.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_codecmaps_jp.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_collections.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_codecs.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_concurrent_futures/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_compileall.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_capi/test_getargs.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_concurrent_futures/executor.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio/test_runners.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio/test_server.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_concurrent_futures/test_as_completed.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_code_module.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_capi/test_pyatomic.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_cmd.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_capi/test_run.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_concurrent_futures/test_deadlock.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_capi/test_set.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_cmd_line.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio/test_staggered.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_concurrent_futures/test_future.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio/test_sock_lowlevel.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio/test_streams.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_concurrent_futures/test_thread_pool.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_clinic.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_contains.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_copy.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_codeccallbacks.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_context.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_cppext/setup.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_concurrent_futures/test_init.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_concurrent_futures/test_wait.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_cprofile.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_capi/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_concurrent_futures/test_process_pool.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes/__main__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes/_support.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_concurrent_futures/util.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes/test_aligned_structures.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_csv.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_capi/test_watchers.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_array.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_configparser.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_concurrent_futures/test_shutdown.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_contextlib.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes/test_anon.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_bytes.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes/test_array_in_pointer.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes/test_arrays.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_compiler_assemble.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_asyncio/test_threads.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes/test_bitfields.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes/test_callbacks.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_capi/test_number.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes/test_as_parameter.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_compiler_codegen.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_cmd_line_script.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes/test_delattr.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes/test_funcptr.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes/test_internals.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes/test_cast.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_complex.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes/test_errno.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes/test_find.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes/test_cfuncs.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes/test_keeprefs.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes/test_buffers.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes/test_macholib.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes/test_functions.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_cext/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes/test_frombuffer.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_capi/test_object.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes/test_memfunctions.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes/test_checkretval.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes/test_parameters.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes/test_bytes.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes/test_prototypes.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes/test_byteswap.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes/test_libc.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes/test_repr.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes/test_numbers.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes/test_slicing.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_codecencodings_cn.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes/test_loading.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes/test_returnfuncptrs.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_contextlib_async.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ast/utils.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes/test_structures.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes/test_values.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes/test_simplesubclasses.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes/test_pep3118.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_curses.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_asdl_parser.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes/test_objects.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_copyreg.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_dataclasses/dataclass_module_2.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_dbm.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes/test_sizes.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes/test_varsize_struct.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_dataclasses/dataclass_module_2_str.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes/test_python_api.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_dataclasses/dataclass_textanno.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_datetime.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_dbm_sqlite3.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_deque.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes/test_pickling.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes/test_incomplete.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes/test_win32.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_dict.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_coroutines.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes/test_init.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes/test_stringptr.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes/test_pointers.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes/test_random_things.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_difflib.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_doctest/decorator_mod.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_colorsys.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_doctest/sample_doctest_no_docstrings.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_doctest/doctest_aliases.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_dbm_dumb.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_doctest/sample_doctest_no_doctests.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_doctest/doctest_lineno.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes/test_strings.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_doctest/test_doctest2.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_doctest/sample_doctest_skip.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_doctest/sample_doctest.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes/test_wintypes.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_doctest/test_doctest.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_docxmlrpc.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_decimal.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes/test_refcounts.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_dynamic.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/__main__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_compare.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_dtrace.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes/test_struct_fields.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/test_asian_codecs.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/test__encoded_words.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/test_generator.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/test_parser.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/test_contentmanager.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_dynamicclassattribute.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/torture_test.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_enumerate.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_except_star.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_dbm_gnu.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_embed.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_exceptions.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_dis.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_fcntl.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/test_pickleable.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_dbm_ndbm.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/test_headerregistry.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_eintr.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_eof.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_compile.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/test_policy.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_file.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_epoll.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_fileinput.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes/test_unaligned_structures.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_float.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/test__header_value_parser.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes/test_unicode.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_format.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ctypes/test_unions.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_dataclasses/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_bz2.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_free_threading/test_dict.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/test_defect_handling.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_descr.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_free_threading/test_list.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_errno.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_codeop.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/test_email.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_free_threading/test_monitoring.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_free_threading/test_str.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_file_eintr.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_fstring.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_free_threading/test_tokenize.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_fractions.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_future_stmt/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_future_stmt/import_nested_scope_twice.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_free_threading/test_slots.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_future_stmt/nested_scope.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_future_stmt/test_future.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_future_stmt/test_future_single_import.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_gc.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_exception_group.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_free_threading/test_type.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/test_utils.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/test_inversion.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_filecmp.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_email/test_message.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ensurepip.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_fileio.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_frozen.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_gdb/test_backtrace.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_gdb/test_pretty_print.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_extcall.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_enum.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_future_stmt/test_future_flags.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_external_inspection.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_gdb/test_cfunction.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_future_stmt/test_future_multiple_features.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_dict_version.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_faulthandler.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_future_stmt/test_future_multiple_imports.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_gdb/test_cfunction_full.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_generators.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_genexps.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_gdb/test_misc.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_getopt.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_gettext.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_graphlib.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_hashlib.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_cppext/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_dictcomps.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_gdb/util.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_htmlparser.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_getpass.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_doctest/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_httpservers.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/__main__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/circular_imports/basic.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/circular_imports/basic2.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/circular_imports/binding.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/circular_imports/binding2.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/circular_imports/from_cycle1.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/circular_imports/from_cycle2.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/circular_imports/import_cycle.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/circular_imports/indirect.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/circular_imports/rebinding.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_generated_cases.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_gdb/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/circular_imports/rebinding2.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_gdb/gdb_sample.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/circular_imports/source.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/circular_imports/subpackage.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/circular_imports/singlephase.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_grp.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/circular_imports/subpkg/subpackage2.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/circular_imports/subpkg2/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/circular_imports/subpkg/util.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/circular_imports/subpkg2/parent/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/circular_imports/subpkg2/parent/child.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/circular_imports/util.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/circular_imports/use.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_getpath.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/package2/submodule1.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/double_const.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/package2/submodule2.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/package/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/package3/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/package/submodule.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/package3/submodule.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_genericalias.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/package4/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_fileutils.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/package4/submodule.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/unwritable/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_finalization.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/__main__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_gzip.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/data/unwritable/x.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/abc.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/builtin/__main__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/extension/__main__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/builtin/test_finder.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/extension/_test_nonmodule_cases.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/extension/test_case_sensitivity.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/builtin/test_loader.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/builtin/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/extension/test_loader.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_dictviews.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/extension/test_finder.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/frozen/test_finder.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/extension/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/import_/test___loader__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/import_/test_fromlist.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/import_/test___package__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/frozen/test_loader.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_generator_stop.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_genericclass.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_glob.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/import_/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/extension/test_path_hook.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/import_/test_helpers.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/import_/__main__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/import_/test_path.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/frozen/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/metadata/_path.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/metadata/data/sources/example/example/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/frozen/__main__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/metadata/data/sources/example/setup.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/metadata/fixtures.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_flufl.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/import_/test_api.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/metadata/data/sources/example2/example2/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ftplib.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_exception_hierarchy.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/metadata/test_main.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/import_/test_meta_path.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_fnmatch.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/metadata/stubs.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/metadata/data/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/metadata/test_api.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_genericpath.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/import_/test_relative_imports.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/import_/test_packages.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/namespace_pkgs/module_and_namespace_package/a_test.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_frame.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/namespace_pkgs/not_a_namespace_pkg/foo/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_exception_variations.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_heapq.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/namespace_pkgs/not_a_namespace_pkg/foo/one.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/namespace_pkgs/project1/parent/child/one.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/namespace_pkgs/portion1/foo/one.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/namespace_pkgs/project2/parent/child/two.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/import_/test_caching.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/namespace_pkgs/project3/parent/child/three.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/partial/cfimport.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/namespace_pkgs/portion2/foo/two.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/resources/test_compatibilty_files.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/resources/test_functional.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/partial/pool_in_threads.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/resources/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_http_cookiejar.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/resources/_path.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/metadata/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/metadata/_context.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/resources/test_reader.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/source/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_global.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/source/__main__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/source/test_case_sensitivity.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/source/test_finder.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/test_api.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_grammar.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/metadata/test_zip.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/source/test_file_loader.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/resources/test_resource.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/resources/test_open.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/namespace_pkgs/both_portions/foo/one.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/namespace_pkgs/both_portions/foo/two.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/resources/test_contents.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_idle.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/source/test_path_hook.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/test_pkg_import.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/test_windows.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_imaplib.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/source/test_source_encoding.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/resources/test_path.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/resources/test_custom.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_hmac.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/resources/test_read.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_inspect/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_free_threading/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/resources/test_files.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_inspect/inspect_fodder.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_inspect/inspect_stringized_annotations.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_int.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/resources/util.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/test_spec.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/test_abc.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_fork1.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_inspect/inspect_stringized_annotations_2.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/threaded_import_hangers.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_interpreters/test_api.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_inspect/inspect_fodder2.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_inspect/inspect_stringized_annotations_pep695.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_hash.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_interpreters/test_stress.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/util.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/test_lazy.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_interpreters/utils.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ipaddress.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/resources/zip.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_inspect/test_inspect.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_itertools.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_json/test_default.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_funcattrs.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_json/test_dump.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_inspect/inspect_stock_annotations.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_json/test_fail.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/test_locks.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_html.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_json/test_float.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_json/test_separators.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_index.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_json/test_indent.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_json/test_speedups.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_json/test_encode_basestring_ascii.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_json/test_pass2.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_json/test_pass1.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_json/test_pass3.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/test_namespace_pkgs.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_keyword.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_json/test_recursion.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_json/test_enum.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_json/test_tool.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_keywordonlyarg.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_functools.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_launcher.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_json/test_scanstring.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_lltrace.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_http_cookies.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_locale.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_kqueue.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_io.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_json/test_unicode.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_longexp.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_math.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_lzma.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_metaclass.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_int_literal.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_module/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_largefile.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_mimetypes.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_interpreters/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_interpreters/__main__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_module/final_a.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_httplib.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_module/final_b.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_monitoring.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_module/good_getattr.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_modulefinder.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_interpreters/test_channels.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_module/bad_getattr.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_multiprocessing_fork/test_manager.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_logging.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_module/bad_getattr2.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_module/bad_getattr3.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_multiprocessing_fork/test_misc.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_multiprocessing_fork/test_processes.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_multiprocessing_forkserver/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_multiprocessing_forkserver/test_threads.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_multiprocessing_main_handling.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_linecache.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_multiprocessing_fork/test_threads.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_multiprocessing_forkserver/test_manager.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_multiprocessing_forkserver/test_misc.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_multiprocessing_spawn/test_misc.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_multiprocessing_forkserver/test_processes.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_multiprocessing_spawn/test_processes.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_netrc.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_multiprocessing_spawn/test_threads.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_dataclasses/dataclass_module_1.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_named_expressions.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_dataclasses/dataclass_module_1_str.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/test_threaded_import.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_opcodes.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_multiprocessing_spawn/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_multiprocessing_spawn/test_manager.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ntpath.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_optparse.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_pathlib/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_list.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_pathlib/test_pathlib.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_minidom.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_interpreters/test_lifecycle.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_openpty.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_importlib/test_util.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_operator.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_interpreters/test_queues.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_pdb.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_listcomps.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_import/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_peg_generator/test_c_parser.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_peg_generator/test_first_sets.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_pep646_syntax.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_decorators.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_perf_profiler.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_picklebuffer.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_platform.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_peg_generator/test_grammar_validator.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_mailbox.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_pickletools.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_peg_generator/test_pegen.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_defaultdict.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_perfmaps.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_pkg.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_poplib.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_pickle.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_pkgutil.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_peepholer.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_optimizer.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_numeric_tower.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ordered_dict.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_pow.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_plistlib.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_opcache.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_positional_only_arg.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_pprint.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_mmap.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_property.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_pwd.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_py_compile.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_msvcrt.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_multibytecodec.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_pyclbr.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_posix.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_pydoc/pydoc_mod.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_pstats.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_multiprocessing_fork/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_pydoc/pydocfodder.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_pathlib/test_pathlib_abc.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_pyrepl/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_print.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_pydoc/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_pyrepl/test_interact.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_pyrepl/test_unix_console.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_pyrepl/__main__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_isinstance.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_pyrepl/support.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_profile.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_pydoc/test_pydoc.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_pty.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_poll.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_quopri.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_pyrepl/test_unix_eventqueue.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_iter.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_pyrepl/test_input.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_json/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_raise.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_pyrepl/test_keymap.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_json/__main__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_re.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_reprlib.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_json/test_decode.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_pyrepl/test_windows_console.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_robotparser.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_peg_generator/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_scope.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_math_property.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_peg_generator/__main__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_selectors.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_pulldom.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_memoryio.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_popen.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_random.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_pyrepl/test_pyrepl.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_runpy.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_os.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_shlex.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_slice.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_shutil.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_set.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_queue.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_socketserver.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_smtplib.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_sqlite3/__main__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_sqlite3/test_backup.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_script_helper.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_descrtut.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_sqlite3/test_cli.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_secrets.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_sax.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_marshal.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_devpoll.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_sqlite3/test_dbapi.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_select.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_resource.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_sqlite3/test_dump.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_sort.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_sqlite3/test_transactions.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_pyexpat.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_sqlite3/test_factory.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ssl.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_richcmp.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_memoryview.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_source_encoding.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_statistics.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_sqlite3/test_types.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_sqlite3/test_hooks.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_range.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_string_literals.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_sqlite3/test_regression.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_sqlite3/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_pyrepl/test_reader.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_iterlen.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_struct.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_smtpnet.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_stringprep.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_sundry.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_socket.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_strptime.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_super.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_syntax.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_rlcompleter.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_posixpath.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_sysconfig.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_sched.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_tcl.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_thread.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_sqlite3/test_userfunctions.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_setcomps.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_threadsignals.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_tkinter/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_tkinter/__main__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_tkinter/support.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_shelve.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_support.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_threadedtempfile.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_tkinter/test_colorchooser.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_patma.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_tkinter/test_loadtk.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_sys.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_threading.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_tkinter/test_messagebox.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_time.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_tkinter/test_misc.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_syslog.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_tkinter/test_font.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_tkinter/test_text.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_structseq.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_tokenize.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_strtod.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_tabnanny.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_tkinter/test_variables.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ioctl.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_symtable.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_tempfile.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/test_data.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/test_misc.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_tkinter/test_geometry_managers.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/test_error.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_tools/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_subclassinit.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_tools/test_i18n.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_tools/test_sundry.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ttk/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_tools/__main__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ttk/__main__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_tools/test_freeze.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ttk/test_extensions.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_trace.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_tarfile.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ttk/test_widgets.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_tkinter/test_widgets.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_subprocess.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ttk/test_style.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_tools/test_makefile.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_tools/test_makeunicodedata.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_sqlite3/util.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_tools/test_reindent.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_turtle.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_signal.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_type_comments.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_typing.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_traceback.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_type_params.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_threading_local.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_type_aliases.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_tkinter/test_simpledialog.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_long.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_unicode_file_functions.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_unittest/__main__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_unittest/_test_warnings.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_unittest/dummy.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_type_annotations.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_unittest/support.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_site.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_timeit.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_unicode_identifiers.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_type_cache.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_unittest/test_assertions.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_unicodedata.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/__main__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_tomllib/burntsushi.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_tkinter/test_images.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_unittest/test_discovery.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_timeout.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_unittest/test_async_case.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_sys_setprofile.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_unittest/test_result.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_termios.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_unittest/test_suite.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_typechecks.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_unittest/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_unittest/testmock/support.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_unittest/testmock/testasync.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_str.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_types.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_tkinter/widget_tests.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_unittest/test_util.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_textwrap.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_unittest/testmock/testmagicmethods.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_unittest/testmock/testsentinel.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ttk_textonly.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_unittest/test_break.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_unpack.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_urllib2.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_osx_env.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_urllibnet.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_unittest/testmock/testthreadingmock.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_unittest/testmock/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_userstring.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_unittest/testmock/__main__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_readline.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_venv.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_stable_abi_ctypes.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_warnings/__main__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_warnings/data/import_warning.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_unpack_ex.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_warnings/data/package_helper.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_warnings/data/stacklevel.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_wave.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_sys_settrace.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_unparse.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_utf8_mode.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_unittest/testmock/testwith.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_unittest/test_case.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_weakref.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_regrtest.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_winapi.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_urlparse.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_startfile.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_unittest/test_functiontestcase.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_stat.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_unittest/testmock/testmock.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_winconsoleio.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_tty.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_unittest/test_loader.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_unittest/testmock/testcallable.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_with.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_utf8source.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_tuple.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_uuid.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_unittest/testmock/testhelpers.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_winreg.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_wait3.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_xml_etree.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_wait4.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_warnings/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_univnewlines.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_unittest/test_runner.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_xxtestfuzz.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_yield_from.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_urllib.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_zipfile/__main__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_zipfile/_path/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_winsound.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_zipfile/_path/_functools.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_zipfile/_path/_itertools.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_wmi.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_zipfile/_path/_support.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_zipfile/_path/write-alpharep.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_zipimport_support.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_zipfile/_path/_test_params.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_zipfile/test_core.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_wsgiref.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_zipfile/_path/test_complexity.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_zipfile/_path/test_path.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_zlib.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_zoneinfo/_support.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_unittest/test_program.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_urllib2_localnet.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_zoneinfo/data/update_test_data.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_zoneinfo/test_zoneinfo_property.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_strftime.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/tokenizedata/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/tokenizedata/coding20731.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/tracedmodules/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/tracedmodules/testmod.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/typinganndata/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/typinganndata/_typed_dict_helper.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/typinganndata/ann_module.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_zoneinfo/test_zoneinfo.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/typinganndata/ann_module2.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/typinganndata/ann_module6.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/typinganndata/ann_module695.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/typinganndata/ann_module3.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/typinganndata/ann_module9.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_weakset.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/typinganndata/ann_module4.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/typinganndata/mod_generics_cache.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/typinganndata/ann_module5.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/typinganndata/ann_module7.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/win_console_handler.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/typinganndata/ann_module8.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_xml_dom_minicompat.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/xmltests.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/threading.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/textwrap.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/tkinter/colorchooser.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/tkinter/dnd.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/testcodec.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/tkinter/commondialog.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/tkinter/constants.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/tf_inherit_check.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_string.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/tkinter/dialog.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_unittest/test_setups.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/tkinter/scrolledtext.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_userdict.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/tokenize.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/tomllib/_types.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/tkinter/simpledialog.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/trace.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/tty.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/turtledemo/bytedesign.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/turtledemo/forest.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_webbrowser.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/turtle.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_repl.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/this.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/tkinter/filedialog.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_urllib2net.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/turtledemo/nim.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/turtledemo/fractalcurves.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/turtledemo/planet_and_moon.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_zipapp.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_userlist.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/turtledemo/chaos.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/turtledemo/rosette.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/turtledemo/paint.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/turtledemo/tree.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/tkinter/ttk.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/turtledemo/peace.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/turtledemo/round_dance.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/turtledemo/clock.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/types.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/turtledemo/two_canvases.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/turtledemo/sorting_animate.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/turtledemo/penrose.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/unittest/_log.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/unittest/async_case.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/turtledemo/yinyang.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/turtledemo/lindenmayer.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/unittest/main.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/unittest/signals.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/unittest/case.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/typing.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/turtledemo/minimal_hanoi.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/unittest/suite.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/tkinter/font.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/tomllib/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/urllib/error.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/turtledemo/colormixer.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/urllib/robotparser.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/tomllib/_parser.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/urllib/parse.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/timeit.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_urllib_response.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/warnings.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/uuid.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_unittest/test_skipping.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_zoneinfo/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/wsgiref/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_zoneinfo/__main__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/wsgiref/handlers.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/unittest/mock.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/wsgiref/types.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_zipfile/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/traceback.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/xml/dom/NodeFilter.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/xml/dom/minicompat.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/xml/dom/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/unittest/util.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/wsgiref/util.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/tkinter/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/tkinter/messagebox.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/xml/dom/domreg.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/xml/dom/minidom.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/xml/dom/expatbuilder.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/urllib/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/wsgiref/validate.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/xml/etree/ElementInclude.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/venv/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_tracemalloc.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/xml/etree/cElementTree.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/xml/parsers/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/xml/etree/ElementPath.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/xml/parsers/expat.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/xml/sax/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_unittest/testmock/testpatch.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/wsgiref/headers.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/xml/sax/_exceptions.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/xml/sax/expatreader.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/xml/sax/xmlreader.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/wave.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/xml/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/tomllib/_re.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/wsgiref/simple_server.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/urllib/request.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/zipapp.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/venv/__main__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/zipfile/_path/glob.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/zoneinfo/_tzpath.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/token.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/xml/etree/ElementTree.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/zipimport.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/zipfile/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/xmlrpc/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/xmlrpc/client.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/zoneinfo/_zoneinfo.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/xml/sax/handler.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/unittest/loader.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/weakref.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/xml/sax/saxutils.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/tracemalloc.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/zoneinfo/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/zoneinfo/_common.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_zipfile64.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/unittest/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/unittest/__main__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/xmlrpc/server.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/zipfile/__main__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/zipfile/_path/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_zipimport.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/webbrowser.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/xml/dom/pulldom.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/turtledemo/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/turtledemo/__main__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/xml/etree/__init__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_unittest/testmock/testsealable.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/xml/dom/xmlbuilder.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_xml_etree_c.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/unittest/result.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/urllib/response.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_xmlrpc.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/unittest/runner.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/tkinter/__main__.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_xxlimited.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_ucn.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_unary.py'... | |
Compiling '/root/apps/interpreters/python/install/host/lib/python3.13/test/test_unicode_file.py'... | |
Listing '/root/apps/interpreters/python/install/host/lib/python3.13/site-packages'... | |
Looking in links: /tmp/tmpjvdrqsf6 | |
Processing /tmp/tmpjvdrqsf6/pip-24.2-py3-none-any.whl | |
Installing collected packages: pip | |
WARNING: The scripts pip3 and pip3.13 are installed in '/root/apps/interpreters/python/install/host/bin' which is not on PATH. | |
Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. | |
Successfully installed pip-24.2 | |
WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager, possibly rendering your system unusable.It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv. Use the --root-user-action option if you know what you are doing and want to suppress this warning. | |
configure: loading site script /root/apps/interpreters/python/config.site | |
checking build system type... x86_64-pc-linux-gnu | |
checking host system type... riscv-qemurv-nuttx | |
checking for --with-build-python... /root/apps/interpreters/python/install/host/bin/python3 | |
checking for Python interpreter freezing... /root/apps/interpreters/python/install/host/bin/python3 | |
checking for python3.13... (cached) /root/apps/interpreters/python/install/host/bin/python3 | |
checking Python for regen version... Python 3.13.0 | |
checking for riscv-qemurv-nuttx-pkg-config... no | |
checking for pkg-config... /usr/bin/pkg-config | |
configure: WARNING: using cross tools not prefixed with host triplet | |
checking pkg-config is at least version 0.9.0... yes | |
checking MACHDEP... "nuttx" | |
checking for --enable-universalsdk... no | |
checking for --with-universal-archs... no | |
checking for --with-app-store-compliance... not patching for app store compliance | |
checking for riscv-qemurv-nuttx-gcc... riscv-none-elf-gcc | |
checking whether the C compiler works... yes | |
checking for C compiler default output file name... a.out | |
checking for suffix of executables... | |
checking whether we are cross compiling... yes | |
checking for suffix of object files... o | |
checking whether the compiler supports GNU C... yes | |
checking whether riscv-none-elf-gcc accepts -g... yes | |
checking for riscv-none-elf-gcc option to enable C11 features... none needed | |
checking how to run the C preprocessor... riscv-none-elf-gcc -E | |
checking for grep that handles long lines and -e... /usr/bin/grep | |
checking for a sed that does not truncate output... /usr/bin/sed | |
checking for egrep... /usr/bin/grep -E | |
checking for CC compiler name... gcc | |
checking for stdio.h... yes | |
checking for stdlib.h... yes | |
checking for string.h... yes | |
checking for inttypes.h... yes | |
checking for stdint.h... yes | |
checking for strings.h... yes | |
checking for sys/stat.h... yes | |
checking for sys/types.h... yes | |
checking for unistd.h... yes | |
checking for wchar.h... yes | |
checking for minix/config.h... no | |
checking whether it is safe to define __EXTENSIONS__... yes | |
checking whether _XOPEN_SOURCE should be defined... no | |
checking for GCC compatible compiler... yes | |
checking for the platform triplet based on compiler characteristics... none | |
checking for multiarch... | |
checking for PEP 11 support tier... configure: WARNING: riscv-qemurv-nuttx/gcc is not supported | |
checking for -Wl,--no-as-needed... yes | |
checking for the Android API level... not Android | |
checking for --with-emscripten-target... | |
checking for --enable-wasm-dynamic-linking... missing | |
checking for --enable-wasm-pthreads... missing | |
checking for --with-suffix... | |
checking for case-insensitive build directory... no | |
checking LIBRARY... libpython$(VERSION)$(ABIFLAGS).a | |
checking LINKCC... $(PURIFY) $(CC) | |
checking EXPORTSYMS... | |
checking for GNU ld... yes | |
checking for --enable-shared... no | |
checking for --with-static-libpython... yes | |
checking for --enable-profiling... no | |
checking LDLIBRARY... libpython$(VERSION)$(ABIFLAGS).a | |
checking HOSTRUNNER... | |
checking for riscv-qemurv-nuttx-ar... riscv-none-elf-ar rcs | |
checking for a BSD-compatible install... /usr/bin/install -c | |
checking for a race-free mkdir -p... /usr/bin/mkdir -p | |
checking for --disable-gil... no | |
checking for --with-pydebug... no | |
checking for --with-trace-refs... no | |
checking for --enable-pystats... no | |
checking for --with-assertions... no | |
checking for --enable-experimental-jit... | |
checking for --enable-optimizations... no | |
checking PROFILE_TASK... -m test --pgo --timeout=$(TESTTIMEOUT) | |
checking for --with-lto... no | |
checking for riscv-qemurv-nuttx-llvm-profdata... no | |
checking for llvm-profdata... /tools/clang-arm-none-eabi/bin/llvm-profdata | |
checking for --enable-bolt... no | |
checking BOLT_INSTRUMENT_FLAGS... | |
checking BOLT_APPLY_FLAGS... -update-debug-sections -reorder-blocks=ext-tsp -reorder-functions=hfsort+ -split-functions -icf=1 -inline-all -split-eh -reorder-functions-use-hot-size -peepholes=none -jump-tables=aggressive -inline-ap -indirect-call-promotion=all -dyno-stats -use-gnu-stack -frame-opt=hot | |
checking if riscv-none-elf-gcc supports -fstrict-overflow and -fno-strict-overflow... yes | |
checking for --with-strict-overflow... no | |
checking if riscv-none-elf-gcc supports -Og optimization level... yes | |
checking if we can add -Wextra... yes | |
checking whether riscv-none-elf-gcc -fno-strict-aliasing accepts and needs -fno-strict-aliasing... no | |
checking if we can disable riscv-none-elf-gcc unused-parameter warning... yes | |
checking if we can disable riscv-none-elf-gcc int-conversion warning... yes | |
checking if we can disable riscv-none-elf-gcc missing-field-initializers warning... yes | |
checking if we can enable riscv-none-elf-gcc sign-compare warning... yes | |
checking if we can enable riscv-none-elf-gcc unreachable-code warning... yes | |
checking if we can enable riscv-none-elf-gcc strict-prototypes warning... (cached) no | |
checking if we can make implicit function declaration an error in riscv-none-elf-gcc -Werror=implicit-function-declaration... yes | |
checking if we can use visibility in riscv-none-elf-gcc -fvisibility=hidden... yes | |
checking whether pthreads are available without options... (cached) yes | |
/root/apps/interpreters/python/Python/configure: line 10553: test: too many arguments | |
checking whether riscv-none-elf-g++ also accepts flags for thread support... no | |
checking for alloca.h... yes | |
checking for asm/types.h... no | |
checking for bluetooth.h... no | |
checking for conio.h... no | |
checking for direct.h... no | |
checking for dlfcn.h... yes | |
checking for endian.h... yes | |
checking for errno.h... yes | |
checking for fcntl.h... yes | |
checking for grp.h... yes | |
checking for io.h... no | |
checking for langinfo.h... yes | |
checking for libintl.h... yes | |
checking for libutil.h... no | |
checking for linux/auxvec.h... no | |
checking for sys/auxv.h... no | |
checking for linux/fs.h... no | |
checking for linux/limits.h... no | |
checking for linux/memfd.h... no | |
checking for linux/random.h... no | |
checking for linux/soundcard.h... no | |
checking for linux/tipc.h... no | |
checking for linux/wait.h... no | |
checking for netdb.h... yes | |
checking for net/ethernet.h... yes | |
checking for netinet/in.h... yes | |
checking for netpacket/packet.h... yes | |
checking for poll.h... yes | |
checking for process.h... no | |
checking for pthread.h... yes | |
checking for pty.h... yes | |
checking for sched.h... yes | |
checking for setjmp.h... yes | |
checking for shadow.h... yes | |
checking for signal.h... yes | |
checking for spawn.h... yes | |
checking for stropts.h... no | |
checking for sys/audioio.h... no | |
checking for sys/bsdtty.h... no | |
checking for sys/devpoll.h... no | |
checking for sys/endian.h... yes | |
checking for sys/epoll.h... yes | |
checking for sys/event.h... no | |
checking for sys/eventfd.h... yes | |
checking for sys/file.h... yes | |
checking for sys/ioctl.h... yes | |
checking for sys/kern_control.h... no | |
checking for sys/loadavg.h... no | |
checking for sys/lock.h... yes | |
checking for sys/memfd.h... no | |
checking for sys/mkdev.h... no | |
checking for sys/mman.h... yes | |
checking for sys/modem.h... no | |
checking for sys/param.h... yes | |
checking for sys/poll.h... yes | |
checking for sys/random.h... yes | |
checking for sys/resource.h... yes | |
checking for sys/select.h... yes | |
checking for sys/sendfile.h... yes | |
checking for sys/socket.h... yes | |
checking for sys/soundcard.h... no | |
checking for sys/stat.h... (cached) yes | |
checking for sys/statvfs.h... yes | |
checking for sys/sys_domain.h... no | |
checking for sys/syscall.h... (cached) no | |
checking for sys/sysmacros.h... yes | |
checking for sys/termio.h... no | |
checking for sys/time.h... yes | |
checking for sys/times.h... yes | |
checking for sys/timerfd.h... yes | |
checking for sys/types.h... (cached) yes | |
checking for sys/uio.h... yes | |
checking for sys/un.h... yes | |
checking for sys/utsname.h... yes | |
checking for sys/wait.h... yes | |
checking for sys/xattr.h... no | |
checking for sysexits.h... no | |
checking for syslog.h... yes | |
checking for termios.h... yes | |
checking for util.h... no | |
checking for utime.h... yes | |
checking for utmp.h... no | |
checking for dirent.h that defines DIR... yes | |
checking for library containing opendir... no | |
checking for sys/mkdev.h... (cached) no | |
checking for sys/sysmacros.h... (cached) yes | |
checking for bluetooth/bluetooth.h... no | |
checking for net/if.h... yes | |
checking for linux/netlink.h... no | |
checking for netlink/netlink.h... no | |
checking for linux/qrtr.h... no | |
checking for linux/vm_sockets.h... no | |
checking for linux/can.h... no | |
checking for linux/can/bcm.h... no | |
checking for linux/can/j1939.h... no | |
checking for linux/can/raw.h... no | |
checking for netcan/can.h... no | |
checking for clock_t... yes | |
checking for makedev... yes | |
checking for le64toh... yes | |
checking for mode_t... yes | |
checking for off_t... yes | |
checking for pid_t... yes | |
checking for size_t... yes | |
checking for uid_t in sys/types.h... yes | |
checking for ssize_t... yes | |
checking for __uint128_t... no | |
checking size of int... 4 | |
checking size of long... 4 | |
checking alignment of long... 4 | |
checking size of long long... 8 | |
checking size of void *... 4 | |
checking size of short... 2 | |
checking size of float... 4 | |
checking size of double... 8 | |
checking size of fpos_t... 8 | |
checking size of size_t... 4 | |
checking alignment of size_t... 4 | |
checking size of pid_t... 4 | |
checking size of uintptr_t... 4 | |
checking alignment of max_align_t... 16 | |
checking for long double... yes | |
checking size of long double... 16 | |
checking size of _Bool... 1 | |
checking size of off_t... 8 | |
checking whether to enable large file support... yes | |
checking size of time_t... 4 | |
checking for pthread_t... yes | |
checking size of pthread_t... 4 | |
checking size of pthread_key_t... 4 | |
checking whether pthread_key_t is compatible with int... yes | |
checking for --enable-framework... no | |
checking for --with-dsymutil... no | |
checking for dyld... no | |
checking for --with-address-sanitizer... no | |
checking for --with-memory-sanitizer... no | |
checking for --with-undefined-behavior-sanitizer... no | |
checking for --with-thread-sanitizer... no | |
checking the extension of shared libraries... .so | |
checking LDSHARED... ld | |
checking BLDSHARED flags... ld | |
checking CCSHARED... | |
checking LINKFORSHARED... | |
checking CFLAGSFORSHARED... | |
checking SHLIBS... $(LIBS) | |
checking perf trampoline... no | |
checking for sendfile in -lsendfile... no | |
checking for dlopen in -ldl... no | |
checking for shl_load in -ldld... no | |
checking for uuid.h... yes | |
checking for uuid_create... no | |
checking for uuid_enc_be... no | |
checking for uuid >= 2.20... yes | |
checking for library containing sem_init... no | |
checking for textdomain in -lintl... no | |
checking aligned memory access is required... yes | |
checking for --with-hash-algorithm... default | |
checking for --with-tzpath... "/usr/share/zoneinfo:/usr/lib/zoneinfo:/usr/share/lib/zoneinfo:/etc/zoneinfo" | |
checking for t_open in -lnsl... no | |
checking for socket in -lsocket... no | |
checking for --with-libs... no | |
checking for --with-system-expat... no | |
checking for libffi... yes | |
checking for ffi_prep_cif_var... no | |
checking for ffi_prep_closure_loc... no | |
checking for ffi_closure_alloc... no | |
checking for --with-system-libmpdec... yes | |
checking for libmpdec >= 2.5.0... no | |
configure: WARNING: no system libmpdecimal found; falling back to bundled libmpdecimal (deprecated and scheduled for removal in Python 3.15) | |
checking for --with-decimal-contextvar... yes | |
checking for decimal libmpdec machine... ansi32 | |
checking for sqlite3 >= 3.15.2... no | |
checking for sqlite3.h... no | |
checking for --enable-loadable-sqlite-extensions... no | |
checking for gdbm.h... no | |
checking for ndbm.h... no | |
checking for ndbm presence and linker args... () | |
checking for gdbm/ndbm.h... no | |
checking for gdbm-ndbm.h... no | |
checking for db.h... no | |
checking for --with-dbmliborder... gdbm:ndbm:bdb | |
checking for _dbm module CFLAGS and LIBS... | |
checking if PTHREAD_SCOPE_SYSTEM is supported... no | |
checking for pthread_sigmask... no | |
checking for pthread_getcpuclockid... no | |
checking if --enable-ipv6 is specified... yes | |
checking if RFC2553 API is available... yes | |
checking CAN_RAW_FD_FRAMES... no | |
checking for CAN_RAW_JOIN_FILTERS... no | |
checking for --with-doc-strings... yes | |
checking for stdatomic.h... yes | |
checking for builtin __atomic_load_n and __atomic_store_n functions... yes | |
checking for --with-mimalloc... no | |
checking for --with-pymalloc... no | |
checking for --with-freelists... yes | |
checking for --with-c-locale-coercion... yes | |
checking for --with-valgrind... no | |
checking for --with-dtrace... no | |
checking for dlopen... no | |
checking DYNLOADFILE... dynload_stub.o | |
checking MACHDEP_OBJS... none | |
checking for accept4... no | |
checking for alarm... no | |
checking for bind_textdomain_codeset... no | |
checking for chmod... no | |
checking for chown... no | |
checking for clock... (cached) yes | |
checking for closefrom... no | |
checking for close_range... no | |
checking for confstr... no | |
checking for copy_file_range... no | |
checking for ctermid... no | |
checking for dup... no | |
checking for dup3... no | |
checking for execv... no | |
checking for explicit_bzero... no | |
checking for explicit_memset... no | |
checking for faccessat... no | |
checking for fchmod... no | |
checking for fchmodat... no | |
checking for fchown... no | |
checking for fchownat... no | |
checking for fdopendir... no | |
checking for fdwalk... no | |
checking for fexecve... no | |
checking for fork... (cached) yes | |
checking for fork1... no | |
checking for fpathconf... no | |
checking for fstatat... no | |
checking for ftime... no | |
checking for ftruncate... no | |
checking for futimens... no | |
checking for futimes... no | |
checking for futimesat... no | |
checking for gai_strerror... no | |
checking for getegid... no | |
checking for geteuid... no | |
checking for getgid... no | |
checking for getgrent... no | |
checking for getgrgid... no | |
checking for getgrgid_r... no | |
checking for getgrnam_r... no | |
checking for getgrouplist... no | |
checking for gethostname... (cached) yesexport | |
checking for getitimer... no | |
checking for getloadavg... no | |
checking for getlogin... no | |
checking for getpeername... no | |
checking for getpgid... no | |
checking for getpid... no | |
checking for getppid... no | |
checking for getpriority... no | |
checking for _getpty... no | |
checking for getpwent... no | |
checking for getpwnam_r... no | |
checking for getpwuid... no | |
checking for getpwuid_r... no | |
checking for getresgid... no | |
checking for getresuid... no | |
checking for getrusage... no | |
checking for getsid... no | |
checking for getspent... no | |
checking for getspnam... no | |
checking for getuid... no | |
checking for getwd... no | |
checking for grantpt... no | |
checking for if_nameindex... no | |
checking for initgroups... no | |
checking for kill... no | |
checking for killpg... no | |
checking for lchown... no | |
checking for linkat... no | |
checking for lockf... no | |
checking for lstat... no | |
checking for lutimes... no | |
checking for madvise... no | |
checking for mbrtowc... no | |
checking for memrchr... no | |
checking for mkdirat... no | |
checking for mkfifo... no | |
checking for mkfifoat... no | |
checking for mknod... no | |
checking for mknodat... no | |
checking for mktime... no | |
checking for mmap... no | |
checking for mremap... no | |
checking for nice... no | |
checking for openat... no | |
checking for opendir... no | |
checking for pathconf... no | |
checking for pause... no | |
checking for pipe... (cached) yes | |
checking for pipe2... no | |
checking for plock... no | |
checking for poll... (cached) yes | |
checking for posix_fadvise... no | |
checking for posix_fallocate... no | |
checking for posix_openpt... no | |
checking for posix_spawn... no | |
checking for posix_spawnp... no | |
checking for posix_spawn_file_actions_addclosefrom_np... no | |
checking for pread... no | |
checking for preadv... no | |
checking for preadv2... no | |
checking for process_vm_readv... no | |
checking for pthread_cond_timedwait_relative_np... no | |
checking for pthread_condattr_setclock... no | |
checking for pthread_init... no | |
checking for pthread_kill... no | |
checking for ptsname... no | |
checking for ptsname_r... no | |
checking for pwrite... no | |
checking for pwritev... no | |
checking for pwritev2... no | |
checking for readlink... no | |
checking for readlinkat... no | |
checking for readv... no | |
checking for realpath... no | |
checking for renameat... no | |
checking for rtpSpawn... no | |
checking for sched_get_priority_max... no | |
checking for sched_rr_get_interval... no | |
checking for sched_setaffinity... no | |
checking for sched_setparam... no | |
checking for sched_setscheduler... no | |
checking for sem_clockwait... no | |
checking for sem_getvalue... no | |
checking for sem_open... no | |
checking for sem_timedwait... no | |
checking for sem_unlink... no | |
checking for sendfile... no | |
checking for setegid... no | |
checking for seteuid... no | |
checking for setgid... no | |
checking for sethostname... no | |
checking for setitimer... no | |
checking for setlocale... no | |
checking for setpgid... no | |
checking for setpgrp... no | |
checking for setpriority... no | |
checking for setregid... no | |
checking for setresgid... no | |
checking for setresuid... no | |
checking for setreuid... no | |
checking for setsid... no | |
checking for setuid... no | |
checking for setvbuf... no | |
checking for shutdown... no | |
checking for sigaction... no | |
checking for sigaltstack... no | |
checking for sigfillset... no | |
checking for siginterrupt... no | |
checking for sigpending... no | |
checking for sigrelse... no | |
checking for sigtimedwait... no | |
checking for sigwait... no | |
checking for sigwaitinfo... no | |
checking for snprintf... no | |
checking for splice... no | |
checking for strftime... no | |
checking for strlcpy... no | |
checking for strsignal... no | |
checking for symlinkat... no | |
checking for sync... no | |
checking for sysconf... no | |
checking for tcgetpgrp... no | |
checking for tcsetpgrp... no | |
checking for tempnam... no | |
checking for timegm... (cached) yes | |
checking for times... no | |
checking for tmpfile... no | |
checking for tmpnam... no | |
checking for tmpnam_r... no | |
checking for truncate... no | |
checking for ttyname... no | |
checking for umask... no | |
checking for uname... no | |
checking for unlinkat... no | |
checking for unlockpt... no | |
checking for utimensat... no | |
checking for utimes... no | |
checking for vfork... no | |
checking for wait... no | |
checking for wait3... no | |
checking for wait4... no | |
checking for waitid... no | |
checking for waitpid... (cached) yes | |
checking for wcscoll... no | |
checking for wcsftime... no | |
checking for wcsxfrm... no | |
checking for wmemcmp... no | |
checking for writev... no | |
checking for lchmod... no | |
checking for getentropy... no | |
checking for getgroups... no | |
checking for system... (cached) no | |
checking for riscv-none-elf-gcc options needed to detect all undeclared functions... none needed | |
checking whether dirfd is declared... yes | |
checking for chroot... no | |
checking for link... yes | |
checking for symlink... yes | |
checking for fchdir... yes | |
checking for fsync... yes | |
checking for fdatasync... no | |
checking for epoll_create... yes | |
checking for epoll_create1... yes | |
checking for kqueue... no | |
checking for prlimit... no | |
checking for _dyld_shared_cache_contains_path... no | |
checking for memfd_create... yes | |
checking for eventfd... yes | |
checking for timerfd_create... yes | |
checking for ctermid_r... no | |
checking for flock declaration... yes | |
checking for flock... no | |
checking for flock in -lbsd... no | |
checking for getpagesize... no | |
checking for broken unsetenv... no | |
checking for true... true | |
checking for inet_aton in -lc... no | |
checking for inet_aton in -lresolv... no | |
checking for chflags... cross | |
checking for chflags... no | |
checking for lchflags... cross | |
checking for lchflags... no | |
checking for zlib >= 1.2.0... yes | |
checking for bzip2... no | |
checking for bzlib.h... no | |
checking for liblzma... no | |
checking for lzma.h... no | |
checking for hstrerror... no | |
checking for getservbyname... yes | |
checking for getservbyport... yes | |
checking for gethostbyname... yes | |
checking for gethostbyaddr... yes | |
checking for getprotobyname... yes | |
checking for inet_aton... yes | |
checking for inet_ntoa... yes | |
checking for inet_pton... yes | |
checking for getpeername... (cached) no | |
checking for getsockname... yes | |
checking for accept... yes | |
checking for bind... yes | |
checking for connect... yes | |
checking for listen... yes | |
checking for recvfrom... yes | |
checking for sendto... yes | |
checking for setsockopt... yes | |
checking for socket... yes | |
checking for setgroups... no | |
checking for openpty... no | |
checking for openpty in -lutil... no | |
checking for openpty in -lbsd... no | |
checking for library containing login_tty... no | |
checking for forkpty... no | |
checking for forkpty in -lutil... no | |
checking for forkpty in -lbsd... no | |
checking for fseek64... no | |
checking for fseeko... no | |
checking for fstatvfs... no | |
checking for ftell64... no | |
checking for ftello... no | |
checking for statvfs... no | |
checking for dup2... no | |
checking for getpgrp... no | |
checking for setpgrp... (cached) no | |
checking for setns... no | |
checking for unshare... no | |
checking for clock_gettime... (cached) yes | |
checking for clock_getres... no | |
checking for clock_getres in -lrt... no | |
checking for clock_settime... no | |
checking for clock_settime in -lrt... no | |
checking for clock_nanosleep... no | |
checking for clock_nanosleep in -lrt... no | |
checking for nanosleep... no | |
checking for nanosleep in -lrt... no | |
checking for major, minor, and makedev... yes | |
checking for getaddrinfo... (cached) yes | |
checking getaddrinfo bug... (cached) no | |
checking for getnameinfo... (cached) yes | |
checking whether struct tm is in sys/time.h or time.h... time.h | |
checking for struct tm.tm_zone... yes | |
checking for struct stat.st_rdev... yes | |
checking for struct stat.st_blksize... yes | |
checking for struct stat.st_flags... no | |
checking for struct stat.st_gen... no | |
checking for struct stat.st_birthtime... no | |
checking for struct stat.st_blocks... yes | |
checking for struct passwd.pw_gecos... yes | |
checking for struct passwd.pw_passwd... yes | |
checking for siginfo_t.si_band... no | |
checking for time.h that defines altzone... no | |
checking for addrinfo... yes | |
checking for sockaddr_storage... yes | |
checking for sockaddr_alg... no | |
checking for an ANSI C-conforming const... yes | |
checking for working signed char... yes | |
checking for prototypes... yes | |
checking for socketpair... yes | |
checking if sockaddr has sa_len member... no | |
checking for gethostbyname_r... no | |
checking for gethostbyname... (cached) yes | |
checking for __fpu_control... no | |
checking for __fpu_control in -lieee... no | |
checking for --with-libm=STRING... default LIBM="-lm" | |
checking for --with-libc=STRING... default LIBC="" | |
checking for x64 gcc inline assembler... no | |
checking whether float word ordering is bigendian... no | |
checking whether we can use gcc inline assembler to get and set x87 control word... no | |
checking whether we can use gcc inline assembler to get and set mc68881 fpcr... no | |
checking for x87-style double rounding... no | |
checking for acosh... (cached) yes | |
checking for asinh... (cached) yes | |
checking for atanh... (cached) yes | |
checking for erf... (cached) yes | |
checking for erfc... (cached) yes | |
checking for expm1... (cached) yes | |
checking for log1p... (cached) yes | |
checking for log2... (cached) yes | |
checking whether POSIX semaphores are enabled... yes | |
checking for broken sem_getvalue... yes | |
checking whether RTLD_LAZY is declared... yes | |
checking whether RTLD_NOW is declared... yes | |
checking whether RTLD_GLOBAL is declared... yes | |
checking whether RTLD_LOCAL is declared... yes | |
checking whether RTLD_NODELETE is declared... no | |
checking whether RTLD_NOLOAD is declared... no | |
checking whether RTLD_DEEPBIND is declared... no | |
checking whether RTLD_MEMBER is declared... no | |
checking digit size for Python's longs... no value specified | |
checking for wchar.h... (cached) yes | |
checking size of wchar_t... 4 | |
checking whether wchar_t is signed... yes | |
checking whether wchar_t is usable... no | |
checking whether byte ordering is bigendian... no | |
checking ABIFLAGS... | |
checking SOABI... cpython-313 | |
checking LDVERSION... $(VERSION)$(ABIFLAGS) | |
checking for --with-platlibdir... no | |
checking for --with-wheel-pkg-dir... no | |
checking whether right shift extends the sign bit... yes | |
checking for getc_unlocked() and friends... no | |
checking for readline... no | |
checking for readline/readline.h... yes | |
checking for readline in -lreadline... no | |
checking how to link readline... no | |
checking for broken nice()... no | |
checking for broken poll()... no | |
checking for working tzset()... no | |
checking for tv_nsec in struct stat... yes | |
checking for tv_nsec2 in struct stat... no | |
checking for ncursesw... yes | |
checking for panelw... yes | |
checking for ncursesw/curses.h... no | |
checking for ncursesw/ncurses.h... no | |
checking for ncursesw/panel.h... no | |
checking for ncurses/curses.h... no | |
checking for ncurses/ncurses.h... no | |
checking for ncurses/panel.h... no | |
checking for curses.h... no | |
checking for ncurses.h... no | |
checking for panel.h... no | |
checking for library containing initscr... no | |
checking for library containing update_panels... no | |
checking for term.h... no | |
checking whether mvwdelch is an expression... yes | |
checking whether WINDOW has _flags... no | |
checking for curses function is_pad... no | |
checking for curses function is_term_resized... no | |
checking for curses function resize_term... no | |
checking for curses function resizeterm... no | |
checking for curses function immedok... no | |
checking for curses function syncok... no | |
checking for curses function wchgat... no | |
checking for curses function filter... no | |
checking for curses function has_key... no | |
checking for curses function typeahead... no | |
checking for curses function use_env... no | |
configure: checking for device files | |
checking for /dev/ptmx... (cached) no | |
checking for /dev/ptc... (cached) no | |
/root/apps/interpreters/python/Python/configure: line 27327: test: =: unary operator expected | |
checking for socklen_t... yes | |
checking for broken mbstowcs... no | |
checking for --with-computed-gotos... no value specified | |
checking whether riscv-none-elf-gcc supports computed gotos... no | |
checking for build directories... done | |
checking for -O2... yes | |
checking for glibc _FORTIFY_SOURCE/memmove bug... undefined | |
checking for ensurepip... upgrade | |
checking if the dirent structure of a d_type field... yes | |
checking if the dirent structure of a d_ino field... no | |
checking for the Linux getrandom() syscall... no | |
checking for the getrandom() function... no | |
checking for library containing shm_open... no | |
checking for shm_open... no | |
checking for shm_unlink... no | |
checking for riscv-qemurv-nuttx-pkg-config... /usr/bin/pkg-config | |
checking whether compiling and linking against OpenSSL works... no | |
checking for --with-openssl-rpath... | |
checking whether OpenSSL provides required ssl module APIs... no | |
checking whether OpenSSL provides required hashlib module APIs... no | |
checking for --with-ssl-default-suites... python | |
checking for --with-builtin-hashlib-hashes... md5,sha1,sha2,sha3,blake2 | |
checking for libb2... no | |
checking for --disable-test-modules... no | |
checking whether libatomic is needed by <pyatomic.h>... no | |
checking for stdlib extension module _multiprocessing... missing | |
checking for stdlib extension module _posixshmem... missing | |
checking for stdlib extension module fcntl... yes | |
checking for stdlib extension module mmap... yes | |
checking for stdlib extension module _socket... yes | |
checking for stdlib extension module grp... missing | |
checking for stdlib extension module pwd... missing | |
checking for stdlib extension module resource... yes | |
checking for stdlib extension module _scproxy... n/a | |
checking for stdlib extension module syslog... yes | |
checking for stdlib extension module termios... yes | |
checking for stdlib extension module pyexpat... yes | |
checking for stdlib extension module _elementtree... yes | |
checking for stdlib extension module _md5... yes | |
checking for stdlib extension module _sha1... yes | |
checking for stdlib extension module _sha2... yes | |
checking for stdlib extension module _sha3... yes | |
checking for stdlib extension module _blake2... yes | |
checking for stdlib extension module _ctypes... yes | |
checking for stdlib extension module _curses... missing | |
checking for stdlib extension module _curses_panel... missing | |
checking for stdlib extension module _decimal... yes | |
checking for stdlib extension module _dbm... missing | |
checking for stdlib extension module _gdbm... missing | |
checking for stdlib extension module readline... missing | |
checking for stdlib extension module _sqlite3... disabled | |
checking for stdlib extension module _tkinter... missing | |
checking for stdlib extension module _uuid... yes | |
checking for stdlib extension module zlib... yes | |
checking for stdlib extension module _bz2... missing | |
checking for stdlib extension module _lzma... missing | |
checking for stdlib extension module _ssl... missing | |
checking for stdlib extension module _hashlib... missing | |
checking for stdlib extension module _testcapi... disabled | |
checking for stdlib extension module _testclinic... disabled | |
checking for stdlib extension module _testclinic_limited... disabled | |
checking for stdlib extension module _testlimitedcapi... disabled | |
checking for stdlib extension module _testinternalcapi... disabled | |
checking for stdlib extension module _testbuffer... disabled | |
checking for stdlib extension module _testimportmultiple... disabled | |
checking for stdlib extension module _testmultiphase... disabled | |
checking for stdlib extension module _testsinglephase... disabled | |
checking for stdlib extension module _testexternalinspection... disabled | |
checking for stdlib extension module xxsubtype... disabled | |
checking for stdlib extension module _xxtestfuzz... disabled | |
checking for stdlib extension module _ctypes_test... disabled | |
checking for stdlib extension module xxlimited... disabled | |
checking for stdlib extension module xxlimited_35... disabled | |
configure: creating ./config.status | |
config.status: creating Makefile.pre | |
config.status: creating Misc/python.pc | |
config.status: creating Misc/python-embed.pc | |
config.status: creating Misc/python-config.sh | |
config.status: creating Modules/Setup.bootstrap | |
config.status: creating Modules/Setup.stdlib | |
config.status: creating Modules/ld_so_aix | |
config.status: creating pyconfig.h | |
configure: creating Modules/Setup.local | |
configure: creating Makefile | |
maksetup: '_sha2' was handled by previous rule. | |
maksetup: '_sha3' was handled by previous rule. | |
maksetup: '_asyncio' was handled by previous rule. | |
maksetup: '_heapq' was handled by previous rule. | |
maksetup: '_lsprof' was handled by previous rule. | |
maksetup: '_interpchannels' was handled by previous rule. | |
maksetup: '_interpqueues' was handled by previous rule. | |
maksetup: '_zoneinfo' was handled by previous rule. | |
maksetup: '_statistics' was handled by previous rule. | |
maksetup: '_decimal' was handled by previous rule. | |
maksetup: '_md5' was handled by previous rule. | |
maksetup: '_sha1' was handled by previous rule. | |
maksetup: '_sha2' was handled by previous rule. | |
maksetup: '_sha3' was handled by previous rule. | |
maksetup: '_blake2' was handled by previous rule. | |
maksetup: 'pyexpat' was handled by previous rule. | |
maksetup: '_elementtree' was handled by previous rule. | |
maksetup: '_codecs_cn' was handled by previous rule. | |
maksetup: '_codecs_hk' was handled by previous rule. | |
maksetup: '_codecs_iso2022' was handled by previous rule. | |
maksetup: '_codecs_jp' was handled by previous rule. | |
maksetup: '_codecs_kr' was handled by previous rule. | |
maksetup: '_codecs_tw' was handled by previous rule. | |
maksetup: '_multibytecodec' was handled by previous rule. | |
maksetup: 'mmap' was handled by previous rule. | |
maksetup: 'resource' was handled by previous rule. | |
maksetup: '_ctypes' was handled by previous rule. | |
maksetup: '_uuid' was handled by previous rule. | |
configure: | |
If you want a release build with all stable optimizations active (PGO, etc), | |
please run ./configure --enable-optimizations | |
configure: WARNING: | |
Platform "riscv-qemurv-nuttx" with compiler "gcc" is not supported by the | |
CPython core team, see https://peps.python.org/pep-0011/ for more information. | |
# Updating ../../Python/Makefile.pre.in | |
# Updating ../../Python/PCbuild/_freeze_module.vcxproj | |
# Updating ../../Python/PCbuild/_freeze_module.vcxproj.filters | |
# Updating ../../Python/Python/frozen.c | |
The Makefile was updated, you may need to re-run make. | |
Created /root/apps/interpreters/python/build/target/lib/python313.zip (3.11 MiB) | |
CPP: /root/nuttx/boards/risc-v/qemu-rv/rv-virt/scripts/ld.script-> /root/nuttx/boards/risc-LD: nuttx | |
riscv-none-elf-ld: warning: /root/nuttx/nuttx has a LOAD segment with RWX permissions | |
Memory region Used Size Region Size %age Used | |
CP: nuttx.hex | |
root@c23ff7fbe548:~/nuttx# make -j ; echo Exit Code is $? | |
CPP: /root/nuttx/boards/risc-v/qemu-rv/rv-virt/scripts/ld.script-> /root/nuttx/boards/risc-LD: nuttx | |
riscv-none-elf-ld: warning: /root/nuttx/nuttx has a LOAD segment with RWX permissions | |
Memory region Used Size Region Size %age Used | |
CP: nuttx.hex | |
Exit Code is 0 | |
root@c23ff7fbe548:~/nuttx# riscv-none-elf-size nuttx | |
text data bss dec hex filename | |
13908642 286639 66512 14261793 d99e21 nuttx |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment