python (3.12.0)

mkdir /bb.build
Result = 0
Working Dir = /
Stdout
Stderr
/bb.download/source/Python-3.12.0/configure --help
Result = 0
Working Dir = /bb.build
Stdout
`configure' configures python 3.12 to adapt to many kinds of systems.

Usage: /bb.download/source/Python-3.12.0/configure [OPTION]... [VAR=VALUE]...

To assign environment variables (e.g., CC, CFLAGS...), specify them as
VAR=VALUE.  See below for descriptions of some of the useful variables.

Defaults for the options are specified in brackets.

Configuration:
  -h, --help              display this help and exit
      --help=short        display options specific to this package
      --help=recursive    display the short help of all the included packages
  -V, --version           display version information and exit
  -q, --quiet, --silent   do not print `checking ...' messages
      --cache-file=FILE   cache test results in FILE [disabled]
  -C, --config-cache      alias for `--cache-file=config.cache'
  -n, --no-create         do not create output files
      --srcdir=DIR        find the sources in DIR [configure dir or `..']

Installation directories:
  --prefix=PREFIX         install architecture-independent files in PREFIX
                          [/usr/local]
  --exec-prefix=EPREFIX   install architecture-dependent files in EPREFIX
                          [PREFIX]

By default, `make install' will install all the files in
`/usr/local/bin', `/usr/local/lib' etc.  You can specify
an installation prefix other than `/usr/local' using `--prefix',
for instance `--prefix=$HOME'.

For better control, use the options below.

Fine tuning of the installation directories:
  --bindir=DIR            user executables [EPREFIX/bin]
  --sbindir=DIR           system admin executables [EPREFIX/sbin]
  --libexecdir=DIR        program executables [EPREFIX/libexec]
  --sysconfdir=DIR        read-only single-machine data [PREFIX/etc]
  --sharedstatedir=DIR    modifiable architecture-independent data [PREFIX/com]
  --localstatedir=DIR     modifiable single-machine data [PREFIX/var]
  --runstatedir=DIR       modifiable per-process data [LOCALSTATEDIR/run]
  --libdir=DIR            object code libraries [EPREFIX/lib]
  --includedir=DIR        C header files [PREFIX/include]
  --oldincludedir=DIR     C header files for non-gcc [/usr/include]
  --datarootdir=DIR       read-only arch.-independent data root [PREFIX/share]
  --datadir=DIR           read-only architecture-independent data [DATAROOTDIR]
  --infodir=DIR           info documentation [DATAROOTDIR/info]
  --localedir=DIR         locale-dependent data [DATAROOTDIR/locale]
  --mandir=DIR            man documentation [DATAROOTDIR/man]
  --docdir=DIR            documentation root [DATAROOTDIR/doc/python]
  --htmldir=DIR           html documentation [DOCDIR]
  --dvidir=DIR            dvi documentation [DOCDIR]
  --pdfdir=DIR            pdf documentation [DOCDIR]
  --psdir=DIR             ps documentation [DOCDIR]

System types:
  --build=BUILD     configure for building on BUILD [guessed]
  --host=HOST       cross-compile to build programs to run on HOST [BUILD]

Optional Features:
  --disable-option-checking  ignore unrecognized --enable/--with options
  --disable-FEATURE       do not include FEATURE (same as --enable-FEATURE=no)
  --enable-FEATURE[=ARG]  include FEATURE [ARG=yes]
  --enable-universalsdk[=SDKDIR]
                          create a universal binary build. SDKDIR specifies
                          which macOS SDK should be used to perform the build,
                          see Mac/README.rst. (default is no)
  --enable-framework[=INSTALLDIR]
                          create a Python.framework rather than a traditional
                          Unix install. optional INSTALLDIR specifies the
                          installation path. see Mac/README.rst (default is
                          no)
  --enable-wasm-dynamic-linking
                          Enable dynamic linking support for WebAssembly
                          (default is no)
  --enable-wasm-pthreads  Enable pthread emulation for WebAssembly (default is
                          no)
  --enable-shared         enable building a shared Python library (default is
                          no)
  --enable-profiling      enable C-level code profiling with gprof (default is
                          no)
  --enable-pystats        enable internal statistics gathering (default is no)
  --enable-optimizations  enable expensive, stable optimizations (PGO, etc.)
                          (default is no)
  --enable-bolt           enable usage of the llvm-bolt post-link optimizer
                          (default is no)
  --enable-loadable-sqlite-extensions
                          support loadable extensions in the sqlite3 module,
                          see Doc/library/sqlite3.rst (default is no)
  --enable-ipv6           enable ipv6 (with ipv4) support, see
                          Doc/library/socket.rst (default is yes if supported)
  --enable-big-digits[=15|30]
                          use big digits (30 or 15 bits) for Python longs
                          (default is 30)]
  --disable-test-modules  don't build nor install test modules

Optional Packages:
  --with-PACKAGE[=ARG]    use PACKAGE [ARG=yes]
  --without-PACKAGE       do not use PACKAGE (same as --with-PACKAGE=no)
  --with-build-python=python3.12
                          path to build python binary for cross compiling
                          (default: _bootstrap_python or python3.12)
  --with-pkg-config=[yes|no|check]
                          use pkg-config to detect build options (default is
                          check)
  --with-universal-archs=ARCH
                          specify the kind of macOS universal binary that
                          should be created. This option is only valid when
                          --enable-universalsdk is set; options are:
                          ("universal2", "intel-64", "intel-32", "intel",
                          "32-bit", "64-bit", "3-way", or "all") see
                          Mac/README.rst
  --with-framework-name=FRAMEWORK
                          specify the name for the python framework on macOS
                          only valid when --enable-framework is set. see
                          Mac/README.rst (default is 'Python')
  --with-emscripten-target=[browser|node]
                          Emscripten platform
  --with-suffix=SUFFIX    set executable suffix to SUFFIX (default is empty,
                          yes is mapped to '.exe')
  --without-static-libpython
                          do not build libpythonMAJOR.MINOR.a and do not
                          install python.o (default is yes)
  --with-pydebug          build with Py_DEBUG defined (default is no)
  --with-trace-refs       enable tracing references for debugging purpose
                          (default is no)
  --with-assertions       build with C assertions enabled (default is no)
  --with-lto=[full|thin|no|yes]
                          enable Link-Time-Optimization in any build (default
                          is no)
  --with-strict-overflow  if 'yes', add -fstrict-overflow to CFLAGS, else add
                          -fno-strict-overflow (default is no)
  --with-dsymutil         link debug information into final executable with
                          dsymutil in macOS (default is no)
  --with-address-sanitizer
                          enable AddressSanitizer memory error detector,
                          'asan' (default is no)
  --with-memory-sanitizer enable MemorySanitizer allocation error detector,
                          'msan' (default is no)
  --with-undefined-behavior-sanitizer
                          enable UndefinedBehaviorSanitizer undefined
                          behaviour detector, 'ubsan' (default is no)
  --with-hash-algorithm=[fnv|siphash13|siphash24]
                          select hash algorithm for use in Python/pyhash.c
                          (default is SipHash13)
  --with-tzpath=<list of absolute paths separated by pathsep>
                          Select the default time zone search path for
                          zoneinfo.TZPATH
  --with-libs='lib1 ...'  link against additional libs (default is no)
  --with-system-expat     build pyexpat module using an installed expat
                          library, see Doc/library/pyexpat.rst (default is no)
  --with-system-libmpdec  build _decimal module using an installed libmpdec
                          library, see Doc/library/decimal.rst (default is no)
  --with-decimal-contextvar
                          build _decimal module using a coroutine-local rather
                          than a thread-local context (default is yes)
  --with-dbmliborder=db1:db2:...
                          override order to check db backends for dbm; a valid
                          value is a colon separated string with the backend
                          names `ndbm', `gdbm' and `bdb'.
  --with-doc-strings      enable documentation strings (default is yes)
  --with-pymalloc         enable specialized mallocs (default is yes)
  --with-freelists        enable object freelists (default is yes)
  --with-c-locale-coercion
                          enable C locale coercion to a UTF-8 based locale
                          (default is yes)
  --with-valgrind         enable Valgrind support (default is no)
  --with-dtrace           enable DTrace support (default is no)
  --with-libm=STRING      override libm math library to STRING (default is
                          system-dependent)
  --with-libc=STRING      override libc C library to STRING (default is
                          system-dependent)
  --with-platlibdir=DIRNAME
                          Python library directory name (default is "lib")
  --with-wheel-pkg-dir=PATH
                          Directory of wheel packages used by ensurepip
                          (default: none)
  --with(out)-readline[=editline|readline|no]
                          use libedit for backend or disable readline module
  --with-computed-gotos   enable computed gotos in evaluation loop (enabled by
                          default on supported compilers)
  --with-ensurepip[=install|upgrade|no]
                          "install" or "upgrade" using bundled pip (default is
                          upgrade)
  --with-openssl=DIR      root of the OpenSSL directory
  --with-openssl-rpath=[DIR|auto|no]
                          Set runtime library directory (rpath) for OpenSSL
                          libraries, no (default): don't set rpath, auto:
                          auto-detect rpath from --with-openssl and
                          pkg-config, DIR: set an explicit rpath
  --with-ssl-default-suites=[python|openssl|STRING]
                          override default cipher suites string, python: use
                          Python's preferred selection (default), openssl:
                          leave OpenSSL's defaults untouched, STRING: use a
                          custom string, python and STRING also set TLS 1.2 as
                          minimum TLS version
  --with-builtin-hashlib-hashes=md5,sha1,sha2,sha3,blake2
                          builtin hash modules, md5, sha1, sha2, sha3 (with
                          shake), blake2

Some influential environment variables:
  PKG_CONFIG  path to pkg-config utility
  PKG_CONFIG_PATH
              directories to add to pkg-config's search path
  PKG_CONFIG_LIBDIR
              path overriding pkg-config's built-in search path
  MACHDEP     name for machine-dependent library files
  CC          C compiler command
  CFLAGS      C compiler flags
  LDFLAGS     linker flags, e.g. -L<lib dir> if you have libraries in a
              nonstandard directory <lib dir>
  LIBS        libraries to pass to the linker, e.g. -l<library>
  CPPFLAGS    (Objective) C/C++ preprocessor flags, e.g. -I<include dir> if
              you have headers in a nonstandard directory <include dir>
  CPP         C preprocessor
  HOSTRUNNER  Program to run CPython for the host platform
  PROFILE_TASK
              Python args for PGO generation task
  BOLT_INSTRUMENT_FLAGS
              Arguments to llvm-bolt when instrumenting binaries
  BOLT_APPLY_FLAGS
              Arguments to llvm-bolt when creating a BOLT optimized binary
  LIBUUID_CFLAGS
              C compiler flags for LIBUUID, overriding pkg-config
  LIBUUID_LIBS
              linker flags for LIBUUID, overriding pkg-config
  LIBFFI_CFLAGS
              C compiler flags for LIBFFI, overriding pkg-config
  LIBFFI_LIBS linker flags for LIBFFI, overriding pkg-config
  LIBNSL_CFLAGS
              C compiler flags for LIBNSL, overriding pkg-config
  LIBNSL_LIBS linker flags for LIBNSL, overriding pkg-config
  LIBSQLITE3_CFLAGS
              C compiler flags for LIBSQLITE3, overriding pkg-config
  LIBSQLITE3_LIBS
              linker flags for LIBSQLITE3, overriding pkg-config
  TCLTK_CFLAGS
              C compiler flags for TCLTK, overriding pkg-config
  TCLTK_LIBS  linker flags for TCLTK, overriding pkg-config
  X11_CFLAGS  C compiler flags for X11, overriding pkg-config
  X11_LIBS    linker flags for X11, overriding pkg-config
  GDBM_CFLAGS C compiler flags for gdbm
  GDBM_LIBS   additional linker flags for gdbm
  ZLIB_CFLAGS C compiler flags for ZLIB, overriding pkg-config
  ZLIB_LIBS   linker flags for ZLIB, overriding pkg-config
  BZIP2_CFLAGS
              C compiler flags for BZIP2, overriding pkg-config
  BZIP2_LIBS  linker flags for BZIP2, overriding pkg-config
  LIBLZMA_CFLAGS
              C compiler flags for LIBLZMA, overriding pkg-config
  LIBLZMA_LIBS
              linker flags for LIBLZMA, overriding pkg-config
  LIBCRYPT_CFLAGS
              C compiler flags for LIBCRYPT, overriding pkg-config
  LIBCRYPT_LIBS
              linker flags for LIBCRYPT, overriding pkg-config
  LIBREADLINE_CFLAGS
              C compiler flags for LIBREADLINE, overriding pkg-config
  LIBREADLINE_LIBS
              linker flags for LIBREADLINE, overriding pkg-config
  LIBEDIT_CFLAGS
              C compiler flags for LIBEDIT, overriding pkg-config
  LIBEDIT_LIBS
              linker flags for LIBEDIT, overriding pkg-config
  CURSES_CFLAGS
              C compiler flags for CURSES, overriding pkg-config
  CURSES_LIBS linker flags for CURSES, overriding pkg-config
  PANEL_CFLAGS
              C compiler flags for PANEL, overriding pkg-config
  PANEL_LIBS  linker flags for PANEL, overriding pkg-config
  LIBB2_CFLAGS
              C compiler flags for LIBB2, overriding pkg-config
  LIBB2_LIBS  linker flags for LIBB2, overriding pkg-config

Use these variables to override the choices made by `configure' or to help
it to find libraries and programs with nonstandard names/locations.

Report bugs to <https://github.com/python/cpython/issues/>.
Stderr
env CXX=/usr/bin/g++ /bb.download/source/Python-3.12.0/configure --with-pkg-config --prefix=/BuggyBox/python/3.12.0/bootstrap
Result = 0
Working Dir = /bb.build
Stdout
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.12... no
checking for python3.12... no
checking for python3.11... no
checking for python3.10... no
checking for python3... python3
checking Python for regen version... Python 3.11.6
checking for pkg-config... /BuggyBox/pkg-config/0.29.2/bootstrap/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for --enable-universalsdk... no
checking for --with-universal-archs... no
checking MACHDEP... "linux"
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... 
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether the compiler supports GNU C... yes
checking whether gcc accepts -g... yes
checking for gcc option to enable C11 features... none needed
checking how to run the C preprocessor... gcc -E
checking for grep that handles long lines and -e... /BuggyBox/grep/3.11/bootstrap/bin/grep
checking for a sed that does not truncate output... /BuggyBox/sed/4.9/bootstrap/bin/sed
checking for egrep... /BuggyBox/grep/3.11/bootstrap/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 the platform triplet based on compiler characteristics... x86_64-linux-gnu
checking for multiarch... 
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... checking HOSTRUNNER... 
libpython$(VERSION)$(ABIFLAGS).a
checking for ar... ar
checking for a BSD-compatible install... /BuggyBox/coreutils/9.4/bootstrap/bin/install -c
checking for a race-free mkdir -p... /BuggyBox/coreutils/9.4/bootstrap/bin/mkdir -p
checking for --with-pydebug... no
checking for --with-trace-refs... no
checking for --enable-pystats... no
checking for --with-assertions... no
checking for --enable-optimizations... no
checking PROFILE_TASK... -m test --pgo --timeout=$(TESTTIMEOUT)
checking for --with-lto... no
checking for llvm-profdata... no
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 /usr/bin/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 crypt.h... yes
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 ieeefp.h... no
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/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... yes
checking for net/if.h... yes
checking for linux/netlink.h... yes
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 in time.h... 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 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 LIBUUID... no
checking for uuid/uuid.h... yes
checking for uuid_generate_time in -luuid... no
checking for uuid_generate_time_safe in -luuid... no
checking for uuid/uuid.h... (cached) yes
checking for uuid_generate_time... no
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... no
checking for ffi.h... yes
checking for ffi_call in -lffi... no
checking for --with-system-libmpdec... no
checking for --with-decimal-contextvar... yes
checking for decimal libmpdec machine... uint128
checking for LIBNSL... no
checking for library containing yp_match... no
checking for LIBSQLITE3... no
checking for sqlite3.h... yes
checking for sqlite3_bind_double in -lsqlite3... no
checking for sqlite3_column_decltype in -lsqlite3... no
checking for sqlite3_column_double in -lsqlite3... no
checking for sqlite3_complete in -lsqlite3... no
checking for sqlite3_progress_handler in -lsqlite3... no
checking for sqlite3_result_double in -lsqlite3... no
checking for sqlite3_set_authorizer in -lsqlite3... no
checking for sqlite3_trace_v2 in -lsqlite3... no
checking for sqlite3_trace in -lsqlite3... no
checking for sqlite3_value_double in -lsqlite3... no
checking for sqlite3_load_extension in -lsqlite3... no
checking for sqlite3_serialize in -lsqlite3... no
checking for --enable-loadable-sqlite-extensions... no
checking for gdbm.h... yes
checking for gdbm_open in -lgdbm... no
checking for ndbm.h... yes
checking for library containing dbm_open... no
checking for ndbm presence and linker args... no ()
checking for gdbm/ndbm.h... no
checking for gdbm-ndbm.h... no
checking for db.h... yes
checking for libdb... 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 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 --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 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 getentropy... yes
checking for geteuid... yes
checking for getgid... yes
checking for getgrgid... yes
checking for getgrgid_r... yes
checking for getgrnam_r... yes
checking for getgrouplist... yes
checking for getgroups... 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 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_spawn... yes
checking for posix_spawnp... yes
checking for pread... yes
checking for preadv... yes
checking for preadv2... yes
checking for pthread_condattr_setclock... yes
checking for pthread_init... no
checking for pthread_kill... 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... yes
checking for strsignal... yes
checking for symlinkat... yes
checking for sync... yes
checking for sysconf... yes
checking for system... 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 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 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 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... no
checking for zlib.h... yes
checking for gzread in -lz... yes
checking for inflateCopy in -lz... yes
checking for BZIP2... no
checking for bzlib.h... yes
checking for BZ2_bzCompress in -lbz2... no
checking for LIBLZMA... no
checking for lzma.h... yes
checking for lzma_easy_encoder in -llzma... 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 LIBCRYPT... yes
checking for crypt or crypt_r... 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... no
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... 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... 
checking SOABI... cpython-312-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 LIBREADLINE... 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()... yes
checking for tv_nsec in struct stat... yes
checking for tv_nsec2 in struct stat... no
checking for curses.h... yes
checking for ncurses.h... yes
checking for CURSES... no
checking for initscr in -lncursesw... no
checking for CURSES... no
checking for initscr in -lncurses... no
checking curses module flags... no
checking for panel.h... yes
checking panel flags... no
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... no
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 stdatomic.h... yes
checking for builtin __atomic_load_n and __atomic_store_n functions... yes
checking for ensurepip... upgrade
checking if the dirent structure of a d_type 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... /BuggyBox/pkg-config/0.29.2/bootstrap/bin/pkg-config
checking for include/openssl/ssl.h in /usr/local/ssl... no
checking for include/openssl/ssl.h in /usr/lib/ssl... no
checking for include/openssl/ssl.h in /usr/ssl... no
checking for include/openssl/ssl.h in /usr/pkg... no
checking for include/openssl/ssl.h in /usr/local... no
checking for include/openssl/ssl.h in /usr... yes
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... yes
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 ossaudiodev... 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 spwd... yes
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 _crypt... yes
checking for stdlib extension module _ctypes... missing
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 nis... missing
checking for stdlib extension module readline... missing
checking for stdlib extension module _sqlite3... missing
checking for stdlib extension module _tkinter... missing
checking for stdlib extension module _uuid... missing
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... yes
checking for stdlib extension module _testclinic... 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 xxsubtype... yes
checking for stdlib extension module _xxtestfuzz... yes
checking for stdlib extension module _ctypes_test... missing
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
configure:

If you want a release build with all stable optimizations active (PGO, etc),
please run ./configure --enable-optimizations

Stderr
make -j16
Result = 0
Working Dir = /bb.build
Stdout
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Programs/python.o /bb.download/source/Python-3.12.0/Programs/python.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Parser/token.o /bb.download/source/Python-3.12.0/Parser/token.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Parser/pegen.o /bb.download/source/Python-3.12.0/Parser/pegen.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Parser/pegen_errors.o /bb.download/source/Python-3.12.0/Parser/pegen_errors.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Parser/action_helpers.o /bb.download/source/Python-3.12.0/Parser/action_helpers.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Parser/parser.o /bb.download/source/Python-3.12.0/Parser/parser.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Parser/string_parser.o /bb.download/source/Python-3.12.0/Parser/string_parser.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Parser/peg_api.o /bb.download/source/Python-3.12.0/Parser/peg_api.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Parser/myreadline.o /bb.download/source/Python-3.12.0/Parser/myreadline.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Parser/tokenizer.o /bb.download/source/Python-3.12.0/Parser/tokenizer.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Objects/abstract.o /bb.download/source/Python-3.12.0/Objects/abstract.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Objects/boolobject.o /bb.download/source/Python-3.12.0/Objects/boolobject.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Objects/bytes_methods.o /bb.download/source/Python-3.12.0/Objects/bytes_methods.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Objects/bytearrayobject.o /bb.download/source/Python-3.12.0/Objects/bytearrayobject.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Objects/bytesobject.o /bb.download/source/Python-3.12.0/Objects/bytesobject.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Objects/call.o /bb.download/source/Python-3.12.0/Objects/call.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Objects/capsule.o /bb.download/source/Python-3.12.0/Objects/capsule.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Objects/cellobject.o /bb.download/source/Python-3.12.0/Objects/cellobject.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Objects/classobject.o /bb.download/source/Python-3.12.0/Objects/classobject.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Objects/codeobject.o /bb.download/source/Python-3.12.0/Objects/codeobject.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Objects/complexobject.o /bb.download/source/Python-3.12.0/Objects/complexobject.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Objects/descrobject.o /bb.download/source/Python-3.12.0/Objects/descrobject.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Objects/enumobject.o /bb.download/source/Python-3.12.0/Objects/enumobject.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Objects/exceptions.o /bb.download/source/Python-3.12.0/Objects/exceptions.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Objects/genericaliasobject.o /bb.download/source/Python-3.12.0/Objects/genericaliasobject.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Objects/genobject.o /bb.download/source/Python-3.12.0/Objects/genobject.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Objects/fileobject.o /bb.download/source/Python-3.12.0/Objects/fileobject.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Objects/floatobject.o /bb.download/source/Python-3.12.0/Objects/floatobject.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Objects/frameobject.o /bb.download/source/Python-3.12.0/Objects/frameobject.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Objects/funcobject.o /bb.download/source/Python-3.12.0/Objects/funcobject.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Objects/interpreteridobject.o /bb.download/source/Python-3.12.0/Objects/interpreteridobject.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Objects/iterobject.o /bb.download/source/Python-3.12.0/Objects/iterobject.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Objects/listobject.o /bb.download/source/Python-3.12.0/Objects/listobject.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Objects/longobject.o /bb.download/source/Python-3.12.0/Objects/longobject.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Objects/dictobject.o /bb.download/source/Python-3.12.0/Objects/dictobject.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Objects/odictobject.o /bb.download/source/Python-3.12.0/Objects/odictobject.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Objects/memoryobject.o /bb.download/source/Python-3.12.0/Objects/memoryobject.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Objects/methodobject.o /bb.download/source/Python-3.12.0/Objects/methodobject.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Objects/moduleobject.o /bb.download/source/Python-3.12.0/Objects/moduleobject.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Objects/namespaceobject.o /bb.download/source/Python-3.12.0/Objects/namespaceobject.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Objects/object.o /bb.download/source/Python-3.12.0/Objects/object.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Objects/obmalloc.o /bb.download/source/Python-3.12.0/Objects/obmalloc.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Objects/picklebufobject.o /bb.download/source/Python-3.12.0/Objects/picklebufobject.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Objects/rangeobject.o /bb.download/source/Python-3.12.0/Objects/rangeobject.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Objects/setobject.o /bb.download/source/Python-3.12.0/Objects/setobject.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Objects/sliceobject.o /bb.download/source/Python-3.12.0/Objects/sliceobject.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Objects/structseq.o /bb.download/source/Python-3.12.0/Objects/structseq.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Objects/tupleobject.o /bb.download/source/Python-3.12.0/Objects/tupleobject.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Objects/typeobject.o /bb.download/source/Python-3.12.0/Objects/typeobject.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Objects/typevarobject.o /bb.download/source/Python-3.12.0/Objects/typevarobject.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Objects/unicodeobject.o /bb.download/source/Python-3.12.0/Objects/unicodeobject.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Objects/unicodectype.o /bb.download/source/Python-3.12.0/Objects/unicodectype.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Objects/unionobject.o /bb.download/source/Python-3.12.0/Objects/unionobject.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Objects/weakrefobject.o /bb.download/source/Python-3.12.0/Objects/weakrefobject.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Python/asm_trampoline.o /bb.download/source/Python-3.12.0/Python/asm_trampoline.S
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Python/_warnings.o /bb.download/source/Python-3.12.0/Python/_warnings.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Python/Python-ast.o /bb.download/source/Python-3.12.0/Python/Python-ast.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Python/Python-tokenize.o /bb.download/source/Python-3.12.0/Python/Python-tokenize.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Python/asdl.o /bb.download/source/Python-3.12.0/Python/asdl.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Python/assemble.o /bb.download/source/Python-3.12.0/Python/assemble.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Python/ast.o /bb.download/source/Python-3.12.0/Python/ast.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Python/ast_opt.o /bb.download/source/Python-3.12.0/Python/ast_opt.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Python/ast_unparse.o /bb.download/source/Python-3.12.0/Python/ast_unparse.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Python/bltinmodule.o /bb.download/source/Python-3.12.0/Python/bltinmodule.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Python/ceval.o /bb.download/source/Python-3.12.0/Python/ceval.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Python/codecs.o /bb.download/source/Python-3.12.0/Python/codecs.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Python/compile.o /bb.download/source/Python-3.12.0/Python/compile.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Python/context.o /bb.download/source/Python-3.12.0/Python/context.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Python/dynamic_annotations.o /bb.download/source/Python-3.12.0/Python/dynamic_annotations.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Python/errors.o /bb.download/source/Python-3.12.0/Python/errors.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Python/flowgraph.o /bb.download/source/Python-3.12.0/Python/flowgraph.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Python/frame.o /bb.download/source/Python-3.12.0/Python/frame.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Python/frozenmain.o /bb.download/source/Python-3.12.0/Python/frozenmain.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Python/future.o /bb.download/source/Python-3.12.0/Python/future.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Python/getargs.o /bb.download/source/Python-3.12.0/Python/getargs.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Python/getcompiler.o /bb.download/source/Python-3.12.0/Python/getcompiler.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Python/getcopyright.o /bb.download/source/Python-3.12.0/Python/getcopyright.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -DPLATFORM='"linux"' -o Python/getplatform.o /bb.download/source/Python-3.12.0/Python/getplatform.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Python/getversion.o /bb.download/source/Python-3.12.0/Python/getversion.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Python/ceval_gil.o /bb.download/source/Python-3.12.0/Python/ceval_gil.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Python/hamt.o /bb.download/source/Python-3.12.0/Python/hamt.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Python/hashtable.o /bb.download/source/Python-3.12.0/Python/hashtable.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Python/import.o /bb.download/source/Python-3.12.0/Python/import.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -I. -o Python/importdl.o /bb.download/source/Python-3.12.0/Python/importdl.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Python/initconfig.o /bb.download/source/Python-3.12.0/Python/initconfig.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Python/instrumentation.o /bb.download/source/Python-3.12.0/Python/instrumentation.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Python/intrinsics.o /bb.download/source/Python-3.12.0/Python/intrinsics.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Python/legacy_tracing.o /bb.download/source/Python-3.12.0/Python/legacy_tracing.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Python/marshal.o /bb.download/source/Python-3.12.0/Python/marshal.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Python/modsupport.o /bb.download/source/Python-3.12.0/Python/modsupport.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Python/mysnprintf.o /bb.download/source/Python-3.12.0/Python/mysnprintf.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Python/mystrtoul.o /bb.download/source/Python-3.12.0/Python/mystrtoul.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Python/pathconfig.o /bb.download/source/Python-3.12.0/Python/pathconfig.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Python/preconfig.o /bb.download/source/Python-3.12.0/Python/preconfig.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Python/pyarena.o /bb.download/source/Python-3.12.0/Python/pyarena.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Python/pyctype.o /bb.download/source/Python-3.12.0/Python/pyctype.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Python/pyfpe.o /bb.download/source/Python-3.12.0/Python/pyfpe.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Python/pyhash.o /bb.download/source/Python-3.12.0/Python/pyhash.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Python/pylifecycle.o /bb.download/source/Python-3.12.0/Python/pylifecycle.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Python/pymath.o /bb.download/source/Python-3.12.0/Python/pymath.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Python/pystate.o /bb.download/source/Python-3.12.0/Python/pystate.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Python/pythonrun.o /bb.download/source/Python-3.12.0/Python/pythonrun.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Python/pytime.o /bb.download/source/Python-3.12.0/Python/pytime.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Python/bootstrap_hash.o /bb.download/source/Python-3.12.0/Python/bootstrap_hash.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Python/specialize.o /bb.download/source/Python-3.12.0/Python/specialize.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Python/structmember.o /bb.download/source/Python-3.12.0/Python/structmember.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Python/symtable.o /bb.download/source/Python-3.12.0/Python/symtable.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE \
	-DABIFLAGS='""' \
	-DMULTIARCH=\"x86_64-linux-gnu\" \
	-o Python/sysmodule.o /bb.download/source/Python-3.12.0/Python/sysmodule.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Python/thread.o /bb.download/source/Python-3.12.0/Python/thread.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Python/traceback.o /bb.download/source/Python-3.12.0/Python/traceback.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Python/tracemalloc.o /bb.download/source/Python-3.12.0/Python/tracemalloc.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Python/getopt.o /bb.download/source/Python-3.12.0/Python/getopt.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Python/pystrcmp.o /bb.download/source/Python-3.12.0/Python/pystrcmp.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Python/pystrtod.o /bb.download/source/Python-3.12.0/Python/pystrtod.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Python/pystrhex.o /bb.download/source/Python-3.12.0/Python/pystrhex.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE  -o Python/dtoa.o /bb.download/source/Python-3.12.0/Python/dtoa.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Python/formatter_unicode.o /bb.download/source/Python-3.12.0/Python/formatter_unicode.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Python/fileutils.o /bb.download/source/Python-3.12.0/Python/fileutils.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Python/suggestions.o /bb.download/source/Python-3.12.0/Python/suggestions.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Python/perf_trampoline.o /bb.download/source/Python-3.12.0/Python/perf_trampoline.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE \
	-DSOABI='"cpython-312-x86_64-linux-gnu"' \
	-o Python/dynload_shlib.o /bb.download/source/Python-3.12.0/Python/dynload_shlib.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Modules/config.o Modules/config.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Modules/main.o /bb.download/source/Python-3.12.0/Modules/main.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Modules/gcmodule.o /bb.download/source/Python-3.12.0/Modules/gcmodule.c
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE_BUILTIN -c /bb.download/source/Python-3.12.0/Modules/atexitmodule.c -o Modules/atexitmodule.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE_BUILTIN -c /bb.download/source/Python-3.12.0/Modules/faulthandler.c -o Modules/faulthandler.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE_BUILTIN -c /bb.download/source/Python-3.12.0/Modules/posixmodule.c -o Modules/posixmodule.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE_BUILTIN -c /bb.download/source/Python-3.12.0/Modules/signalmodule.c -o Modules/signalmodule.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE_BUILTIN -c /bb.download/source/Python-3.12.0/Modules/_tracemalloc.c -o Modules/_tracemalloc.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE_BUILTIN -c /bb.download/source/Python-3.12.0/Modules/_codecsmodule.c -o Modules/_codecsmodule.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE_BUILTIN -c /bb.download/source/Python-3.12.0/Modules/_collectionsmodule.c -o Modules/_collectionsmodule.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE_BUILTIN -c /bb.download/source/Python-3.12.0/Modules/errnomodule.c -o Modules/errnomodule.o
gcc -I/bb.download/source/Python-3.12.0/Modules/_io -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE_BUILTIN -c /bb.download/source/Python-3.12.0/Modules/_io/_iomodule.c -o Modules/_io/_iomodule.o
gcc -I/bb.download/source/Python-3.12.0/Modules/_io -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE_BUILTIN -c /bb.download/source/Python-3.12.0/Modules/_io/iobase.c -o Modules/_io/iobase.o
gcc -I/bb.download/source/Python-3.12.0/Modules/_io -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE_BUILTIN -c /bb.download/source/Python-3.12.0/Modules/_io/fileio.c -o Modules/_io/fileio.o
gcc -I/bb.download/source/Python-3.12.0/Modules/_io -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE_BUILTIN -c /bb.download/source/Python-3.12.0/Modules/_io/bytesio.c -o Modules/_io/bytesio.o
gcc -I/bb.download/source/Python-3.12.0/Modules/_io -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE_BUILTIN -c /bb.download/source/Python-3.12.0/Modules/_io/bufferedio.c -o Modules/_io/bufferedio.o
gcc -I/bb.download/source/Python-3.12.0/Modules/_io -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE_BUILTIN -c /bb.download/source/Python-3.12.0/Modules/_io/textio.c -o Modules/_io/textio.o
gcc -I/bb.download/source/Python-3.12.0/Modules/_io -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE_BUILTIN -c /bb.download/source/Python-3.12.0/Modules/_io/stringio.c -o Modules/_io/stringio.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE_BUILTIN -c /bb.download/source/Python-3.12.0/Modules/itertoolsmodule.c -o Modules/itertoolsmodule.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE_BUILTIN -c /bb.download/source/Python-3.12.0/Modules/_sre/sre.c -o Modules/_sre/sre.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE_BUILTIN -c /bb.download/source/Python-3.12.0/Modules/_threadmodule.c -o Modules/_threadmodule.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE_BUILTIN -c /bb.download/source/Python-3.12.0/Modules/timemodule.c -o Modules/timemodule.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE_BUILTIN -c /bb.download/source/Python-3.12.0/Modules/_typingmodule.c -o Modules/_typingmodule.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE_BUILTIN -c /bb.download/source/Python-3.12.0/Modules/_weakref.c -o Modules/_weakref.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE_BUILTIN -c /bb.download/source/Python-3.12.0/Modules/_abc.c -o Modules/_abc.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE_BUILTIN -c /bb.download/source/Python-3.12.0/Modules/_functoolsmodule.c -o Modules/_functoolsmodule.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE_BUILTIN -c /bb.download/source/Python-3.12.0/Modules/_localemodule.c -o Modules/_localemodule.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE_BUILTIN -c /bb.download/source/Python-3.12.0/Modules/_operator.c -o Modules/_operator.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE_BUILTIN -c /bb.download/source/Python-3.12.0/Modules/_stat.c -o Modules/_stat.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE_BUILTIN -c /bb.download/source/Python-3.12.0/Modules/symtablemodule.c -o Modules/symtablemodule.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE_BUILTIN -c /bb.download/source/Python-3.12.0/Modules/pwdmodule.c -o Modules/pwdmodule.o
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Programs/_freeze_module.o /bb.download/source/Python-3.12.0/Programs/_freeze_module.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Modules/getpath_noop.o /bb.download/source/Python-3.12.0/Modules/getpath_noop.c
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/arraymodule.c -o Modules/arraymodule.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/_asynciomodule.c -o Modules/_asynciomodule.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/_bisectmodule.c -o Modules/_bisectmodule.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/_contextvarsmodule.c -o Modules/_contextvarsmodule.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/_csv.c -o Modules/_csv.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/_heapqmodule.c -o Modules/_heapqmodule.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/_json.c -o Modules/_json.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/_lsprof.c -o Modules/_lsprof.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/rotatingtree.c -o Modules/rotatingtree.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/_opcode.c -o Modules/_opcode.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/_pickle.c -o Modules/_pickle.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/_queuemodule.c -o Modules/_queuemodule.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/_randommodule.c -o Modules/_randommodule.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/_struct.c -o Modules/_struct.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/_xxsubinterpretersmodule.c -o Modules/_xxsubinterpretersmodule.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/_xxinterpchannelsmodule.c -o Modules/_xxinterpchannelsmodule.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/_zoneinfo.c -o Modules/_zoneinfo.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/audioop.c -o Modules/audioop.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/mathmodule.c -o Modules/mathmodule.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/cmathmodule.c -o Modules/cmathmodule.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/_statisticsmodule.c -o Modules/_statisticsmodule.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/_datetimemodule.c -o Modules/_datetimemodule.o
gcc -c -I/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec -DCONFIG_64=1 -DANSI=1 -DHAVE_UINT128_T=1 -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -o Modules/_decimal/libmpdec/basearith.o /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/basearith.c
gcc -c -I/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec -DCONFIG_64=1 -DANSI=1 -DHAVE_UINT128_T=1 -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -o Modules/_decimal/libmpdec/constants.o /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/constants.c
gcc -c -I/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec -DCONFIG_64=1 -DANSI=1 -DHAVE_UINT128_T=1 -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -o Modules/_decimal/libmpdec/context.o /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/context.c
gcc -c -I/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec -DCONFIG_64=1 -DANSI=1 -DHAVE_UINT128_T=1 -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -o Modules/_decimal/libmpdec/convolute.o /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/convolute.c
gcc -c -I/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec -DCONFIG_64=1 -DANSI=1 -DHAVE_UINT128_T=1 -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -o Modules/_decimal/libmpdec/crt.o /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/crt.c
gcc -c -I/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec -DCONFIG_64=1 -DANSI=1 -DHAVE_UINT128_T=1 -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -o Modules/_decimal/libmpdec/difradix2.o /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/difradix2.c
gcc -c -I/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec -DCONFIG_64=1 -DANSI=1 -DHAVE_UINT128_T=1 -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -o Modules/_decimal/libmpdec/fnt.o /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/fnt.c
gcc -c -I/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec -DCONFIG_64=1 -DANSI=1 -DHAVE_UINT128_T=1 -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -o Modules/_decimal/libmpdec/fourstep.o /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/fourstep.c
gcc -c -I/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec -DCONFIG_64=1 -DANSI=1 -DHAVE_UINT128_T=1 -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -o Modules/_decimal/libmpdec/io.o /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c
gcc -c -I/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec -DCONFIG_64=1 -DANSI=1 -DHAVE_UINT128_T=1 -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -o Modules/_decimal/libmpdec/mpalloc.o /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/mpalloc.c
gcc -c -I/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec -DCONFIG_64=1 -DANSI=1 -DHAVE_UINT128_T=1 -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -o Modules/_decimal/libmpdec/mpdecimal.o /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/mpdecimal.c
gcc -c -I/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec -DCONFIG_64=1 -DANSI=1 -DHAVE_UINT128_T=1 -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -o Modules/_decimal/libmpdec/numbertheory.o /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/numbertheory.c
gcc -c -I/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec -DCONFIG_64=1 -DANSI=1 -DHAVE_UINT128_T=1 -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -o Modules/_decimal/libmpdec/sixstep.o /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/sixstep.c
gcc -c -I/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec -DCONFIG_64=1 -DANSI=1 -DHAVE_UINT128_T=1 -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -o Modules/_decimal/libmpdec/transpose.o /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/transpose.c
gcc -DUSE_ZLIB_CRC32  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/binascii.c -o Modules/binascii.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/zlibmodule.c -o Modules/zlibmodule.o
gcc  -I/bb.download/source/Python-3.12.0/Modules/_hacl/include -D_BSD_SOURCE -D_DEFAULT_SOURCE -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/md5module.c -o Modules/md5module.o
gcc  -I/bb.download/source/Python-3.12.0/Modules/_hacl/include -D_BSD_SOURCE -D_DEFAULT_SOURCE -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/_hacl/Hacl_Hash_MD5.c -o Modules/_hacl/Hacl_Hash_MD5.o
gcc  -I/bb.download/source/Python-3.12.0/Modules/_hacl/include -D_BSD_SOURCE -D_DEFAULT_SOURCE -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/sha1module.c -o Modules/sha1module.o
gcc  -I/bb.download/source/Python-3.12.0/Modules/_hacl/include -D_BSD_SOURCE -D_DEFAULT_SOURCE -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/_hacl/Hacl_Hash_SHA1.c -o Modules/_hacl/Hacl_Hash_SHA1.o
gcc -c -I/bb.download/source/Python-3.12.0/Modules/_hacl/include -D_BSD_SOURCE -D_DEFAULT_SOURCE -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -o Modules/_hacl/Hacl_Hash_SHA2.o /bb.download/source/Python-3.12.0/Modules/_hacl/Hacl_Hash_SHA2.c
gcc  -I/bb.download/source/Python-3.12.0/Modules/_hacl/include -D_BSD_SOURCE -D_DEFAULT_SOURCE -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/sha3module.c -o Modules/sha3module.o
gcc  -I/bb.download/source/Python-3.12.0/Modules/_hacl/include -D_BSD_SOURCE -D_DEFAULT_SOURCE -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/_hacl/Hacl_Hash_SHA3.c -o Modules/_hacl/Hacl_Hash_SHA3.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/_blake2/blake2module.c -o Modules/_blake2/blake2module.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/_blake2/blake2b_impl.c -o Modules/_blake2/blake2b_impl.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/_blake2/blake2s_impl.c -o Modules/_blake2/blake2s_impl.o
gcc -c -I/bb.download/source/Python-3.12.0/Modules/expat -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -o Modules/expat/xmlparse.o /bb.download/source/Python-3.12.0/Modules/expat/xmlparse.c
gcc -c -I/bb.download/source/Python-3.12.0/Modules/expat -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -o Modules/expat/xmlrole.o /bb.download/source/Python-3.12.0/Modules/expat/xmlrole.c
gcc -c -I/bb.download/source/Python-3.12.0/Modules/expat -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -o Modules/expat/xmltok.o /bb.download/source/Python-3.12.0/Modules/expat/xmltok.c
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/cjkcodecs/_codecs_cn.c -o Modules/cjkcodecs/_codecs_cn.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/cjkcodecs/_codecs_hk.c -o Modules/cjkcodecs/_codecs_hk.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/cjkcodecs/_codecs_iso2022.c -o Modules/cjkcodecs/_codecs_iso2022.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/cjkcodecs/_codecs_jp.c -o Modules/cjkcodecs/_codecs_jp.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/cjkcodecs/_codecs_kr.c -o Modules/cjkcodecs/_codecs_kr.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/cjkcodecs/_codecs_tw.c -o Modules/cjkcodecs/_codecs_tw.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/cjkcodecs/multibytecodec.c -o Modules/cjkcodecs/multibytecodec.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/unicodedata.c -o Modules/unicodedata.o
gcc -I/BuggyBox/libxcrypt/4.4.36/bootstrap/include -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/_cryptmodule.c -o Modules/_cryptmodule.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/fcntlmodule.c -o Modules/fcntlmodule.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/grpmodule.c -o Modules/grpmodule.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/mmapmodule.c -o Modules/mmapmodule.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/ossaudiodev.c -o Modules/ossaudiodev.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/_posixsubprocess.c -o Modules/_posixsubprocess.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/resource.c -o Modules/resource.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/selectmodule.c -o Modules/selectmodule.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/socketmodule.c -o Modules/socketmodule.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/spwdmodule.c -o Modules/spwdmodule.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/syslogmodule.c -o Modules/syslogmodule.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/termios.c -o Modules/termios.o
gcc -I/bb.download/source/Python-3.12.0/Modules/_multiprocessing -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/_multiprocessing/posixshmem.c -o Modules/_multiprocessing/posixshmem.o
gcc -I/bb.download/source/Python-3.12.0/Modules/_multiprocessing -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/_multiprocessing/multiprocessing.c -o Modules/_multiprocessing/multiprocessing.o
gcc -I/bb.download/source/Python-3.12.0/Modules/_multiprocessing -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/_multiprocessing/semaphore.c -o Modules/_multiprocessing/semaphore.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/xxsubtype.c -o Modules/xxsubtype.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/_xxtestfuzz/_xxtestfuzz.c -o Modules/_xxtestfuzz/_xxtestfuzz.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/_xxtestfuzz/fuzzer.c -o Modules/_xxtestfuzz/fuzzer.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/_testbuffer.c -o Modules/_testbuffer.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/_testinternalcapi.c -o Modules/_testinternalcapi.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/_testcapimodule.c -o Modules/_testcapimodule.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/_testcapi/vectorcall.c -o Modules/_testcapi/vectorcall.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/_testcapi/vectorcall_limited.c -o Modules/_testcapi/vectorcall_limited.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/_testcapi/heaptype.c -o Modules/_testcapi/heaptype.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/_testcapi/abstract.c -o Modules/_testcapi/abstract.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/_testcapi/unicode.c -o Modules/_testcapi/unicode.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/_testcapi/dict.c -o Modules/_testcapi/dict.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/_testcapi/getargs.c -o Modules/_testcapi/getargs.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/_testcapi/pytime.c -o Modules/_testcapi/pytime.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/_testcapi/datetime.c -o Modules/_testcapi/datetime.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/_testcapi/docstring.c -o Modules/_testcapi/docstring.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/_testcapi/mem.c -o Modules/_testcapi/mem.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/_testcapi/watchers.c -o Modules/_testcapi/watchers.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/_testcapi/long.c -o Modules/_testcapi/long.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/_testcapi/float.c -o Modules/_testcapi/float.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/_testcapi/structmember.c -o Modules/_testcapi/structmember.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/_testcapi/exceptions.c -o Modules/_testcapi/exceptions.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/_testcapi/code.c -o Modules/_testcapi/code.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/_testcapi/buffer.c -o Modules/_testcapi/buffer.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/_testcapi/pyos.c -o Modules/_testcapi/pyos.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/_testcapi/immortal.c -o Modules/_testcapi/immortal.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/_testcapi/heaptype_relative.c -o Modules/_testcapi/heaptype_relative.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/_testcapi/gc.c -o Modules/_testcapi/gc.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/_testclinic.c -o Modules/_testclinic.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/_testimportmultiple.c -o Modules/_testimportmultiple.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/_testmultiphase.c -o Modules/_testmultiphase.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/_testsinglephase.c -o Modules/_testsinglephase.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/xxlimited.c -o Modules/xxlimited.o
gcc  -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/xxlimited_35.c -o Modules/xxlimited_35.o
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Tools/gdb/libpython.py python-gdb.py
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Programs/_testembed.o /bb.download/source/Python-3.12.0/Programs/_testembed.c
sed -e "s,/usr/bin/env python3,/BuggyBox/python/3.12.0/bootstrap/bin/python3.12," < /bb.download/source/Python-3.12.0/Tools/scripts/2to3 > build/scripts-3.12/2to3-3.12
sed -e "s,/usr/bin/env python3,/BuggyBox/python/3.12.0/bootstrap/bin/python3.12," < /bb.download/source/Python-3.12.0/Tools/scripts/idle3 > build/scripts-3.12/idle3.12
sed -e "s,/usr/bin/env python3,/BuggyBox/python/3.12.0/bootstrap/bin/python3.12," < /bb.download/source/Python-3.12.0/Tools/scripts/pydoc3 > build/scripts-3.12/pydoc3.12
gcc -shared      Modules/arraymodule.o   -o Modules/array.cpython-312-x86_64-linux-gnu.so
sed -e "s,@EXENAME@,/BuggyBox/python/3.12.0/bootstrap/bin/python3.12," < /bb.download/source/Python-3.12.0/Misc/python-config.in >python-config.py
gcc -shared      Modules/_asynciomodule.o   -o Modules/_asyncio.cpython-312-x86_64-linux-gnu.so
gcc -shared      Modules/_bisectmodule.o   -o Modules/_bisect.cpython-312-x86_64-linux-gnu.so
LC_ALL=C sed -e 's,\$(\([A-Za-z0-9_]*\)),\$\{\1\},g' < Misc/python-config.sh >python-config
gcc -shared      Modules/_contextvarsmodule.o   -o Modules/_contextvars.cpython-312-x86_64-linux-gnu.so
gcc -shared      Modules/_csv.o   -o Modules/_csv.cpython-312-x86_64-linux-gnu.so
gcc -shared      Modules/_heapqmodule.o   -o Modules/_heapq.cpython-312-x86_64-linux-gnu.so
gcc -shared      Modules/_json.o   -o Modules/_json.cpython-312-x86_64-linux-gnu.so
gcc -shared      Modules/_lsprof.o Modules/rotatingtree.o   -o Modules/_lsprof.cpython-312-x86_64-linux-gnu.so
gcc -shared      Modules/_opcode.o   -o Modules/_opcode.cpython-312-x86_64-linux-gnu.so
gcc -shared      Modules/_pickle.o   -o Modules/_pickle.cpython-312-x86_64-linux-gnu.so
gcc -shared      Modules/_queuemodule.o   -o Modules/_queue.cpython-312-x86_64-linux-gnu.so
gcc -shared      Modules/_randommodule.o   -o Modules/_random.cpython-312-x86_64-linux-gnu.so
gcc -shared      Modules/_struct.o   -o Modules/_struct.cpython-312-x86_64-linux-gnu.so
gcc -shared      Modules/_xxsubinterpretersmodule.o   -o Modules/_xxsubinterpreters.cpython-312-x86_64-linux-gnu.so
gcc -shared      Modules/_xxinterpchannelsmodule.o   -o Modules/_xxinterpchannels.cpython-312-x86_64-linux-gnu.so
gcc -shared      Modules/_zoneinfo.o   -o Modules/_zoneinfo.cpython-312-x86_64-linux-gnu.so
gcc -shared      Modules/audioop.o -lm  -o Modules/audioop.cpython-312-x86_64-linux-gnu.so
gcc -shared      Modules/mathmodule.o -lm  -o Modules/math.cpython-312-x86_64-linux-gnu.so
gcc -shared      Modules/cmathmodule.o -lm  -o Modules/cmath.cpython-312-x86_64-linux-gnu.so
gcc -shared      Modules/_statisticsmodule.o -lm  -o Modules/_statistics.cpython-312-x86_64-linux-gnu.so
gcc -shared      Modules/_datetimemodule.o -lm  -o Modules/_datetime.cpython-312-x86_64-linux-gnu.so
gcc -shared      Modules/binascii.o -lz  -o Modules/binascii.cpython-312-x86_64-linux-gnu.so
gcc -shared      Modules/zlibmodule.o -lz  -o Modules/zlib.cpython-312-x86_64-linux-gnu.so
gcc -shared      Modules/md5module.o Modules/_hacl/Hacl_Hash_MD5.o   -o Modules/_md5.cpython-312-x86_64-linux-gnu.so
gcc -shared      Modules/sha1module.o Modules/_hacl/Hacl_Hash_SHA1.o   -o Modules/_sha1.cpython-312-x86_64-linux-gnu.so
rm -f Modules/_hacl/libHacl_Hash_SHA2.a
gcc -shared      Modules/sha3module.o Modules/_hacl/Hacl_Hash_SHA3.o   -o Modules/_sha3.cpython-312-x86_64-linux-gnu.so
gcc -shared      Modules/_blake2/blake2module.o Modules/_blake2/blake2b_impl.o Modules/_blake2/blake2s_impl.o   -o Modules/_blake2.cpython-312-x86_64-linux-gnu.so
rm -f Modules/expat/libexpat.a
ar rcs Modules/_hacl/libHacl_Hash_SHA2.a Modules/_hacl/Hacl_Hash_SHA2.o
gcc -shared      Modules/cjkcodecs/_codecs_cn.o   -o Modules/_codecs_cn.cpython-312-x86_64-linux-gnu.so
ar rcs Modules/expat/libexpat.a Modules/expat/xmlparse.o Modules/expat/xmlrole.o Modules/expat/xmltok.o
gcc -shared      Modules/cjkcodecs/_codecs_hk.o   -o Modules/_codecs_hk.cpython-312-x86_64-linux-gnu.so
gcc -shared      Modules/cjkcodecs/_codecs_iso2022.o   -o Modules/_codecs_iso2022.cpython-312-x86_64-linux-gnu.so
gcc -shared      Modules/cjkcodecs/_codecs_jp.o   -o Modules/_codecs_jp.cpython-312-x86_64-linux-gnu.so
gcc -shared      Modules/cjkcodecs/_codecs_kr.o   -o Modules/_codecs_kr.cpython-312-x86_64-linux-gnu.so
gcc -shared      Modules/cjkcodecs/_codecs_tw.o   -o Modules/_codecs_tw.cpython-312-x86_64-linux-gnu.so
gcc -shared      Modules/cjkcodecs/multibytecodec.o   -o Modules/_multibytecodec.cpython-312-x86_64-linux-gnu.so
gcc -shared      Modules/unicodedata.o   -o Modules/unicodedata.cpython-312-x86_64-linux-gnu.so
gcc -shared      Modules/_cryptmodule.o -L/BuggyBox/libxcrypt/4.4.36/bootstrap/lib -lcrypt  -o Modules/_crypt.cpython-312-x86_64-linux-gnu.so
gcc -shared      Modules/fcntlmodule.o   -o Modules/fcntl.cpython-312-x86_64-linux-gnu.so
gcc -shared      Modules/grpmodule.o   -o Modules/grp.cpython-312-x86_64-linux-gnu.so
gcc -shared      Modules/mmapmodule.o   -o Modules/mmap.cpython-312-x86_64-linux-gnu.so
gcc -shared      Modules/ossaudiodev.o   -o Modules/ossaudiodev.cpython-312-x86_64-linux-gnu.so
gcc -shared      Modules/_posixsubprocess.o   -o Modules/_posixsubprocess.cpython-312-x86_64-linux-gnu.so
gcc -shared      Modules/resource.o   -o Modules/resource.cpython-312-x86_64-linux-gnu.so
gcc -shared      Modules/selectmodule.o   -o Modules/select.cpython-312-x86_64-linux-gnu.so
gcc -shared      Modules/socketmodule.o   -o Modules/_socket.cpython-312-x86_64-linux-gnu.so
gcc -shared      Modules/spwdmodule.o   -o Modules/spwd.cpython-312-x86_64-linux-gnu.so
gcc -shared      Modules/syslogmodule.o   -o Modules/syslog.cpython-312-x86_64-linux-gnu.so
gcc -shared      Modules/termios.o   -o Modules/termios.cpython-312-x86_64-linux-gnu.so
gcc -shared      Modules/_multiprocessing/posixshmem.o   -o Modules/_posixshmem.cpython-312-x86_64-linux-gnu.so
gcc -shared      Modules/_multiprocessing/multiprocessing.o Modules/_multiprocessing/semaphore.o   -o Modules/_multiprocessing.cpython-312-x86_64-linux-gnu.so
gcc -shared      Modules/xxsubtype.o   -o Modules/xxsubtype.cpython-312-x86_64-linux-gnu.so
gcc -shared      Modules/_xxtestfuzz/_xxtestfuzz.o Modules/_xxtestfuzz/fuzzer.o   -o Modules/_xxtestfuzz.cpython-312-x86_64-linux-gnu.so
gcc -shared      Modules/_testbuffer.o   -o Modules/_testbuffer.cpython-312-x86_64-linux-gnu.so
gcc -shared      Modules/_testinternalcapi.o   -o Modules/_testinternalcapi.cpython-312-x86_64-linux-gnu.so
gcc -shared      Modules/_testimportmultiple.o   -o Modules/_testimportmultiple.cpython-312-x86_64-linux-gnu.so
gcc -shared      Modules/_testmultiphase.o   -o Modules/_testmultiphase.cpython-312-x86_64-linux-gnu.so
gcc -shared      Modules/_testsinglephase.o   -o Modules/_testsinglephase.cpython-312-x86_64-linux-gnu.so
gcc -shared      Modules/xxlimited.o   -o Modules/xxlimited.cpython-312-x86_64-linux-gnu.so
gcc -shared      Modules/xxlimited_35.o   -o Modules/xxlimited_35.cpython-312-x86_64-linux-gnu.so
rm -f Modules/_decimal/libmpdec/libmpdec.a
gcc  -I/bb.download/source/Python-3.12.0/Modules/_hacl/include -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/sha2module.c -o Modules/sha2module.o
gcc -I/bb.download/source/Python-3.12.0/Modules/expat -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/pyexpat.c -o Modules/pyexpat.o
gcc -I/bb.download/source/Python-3.12.0/Modules/expat -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/_elementtree.c -o Modules/_elementtree.o
ar rcs Modules/_decimal/libmpdec/libmpdec.a Modules/_decimal/libmpdec/basearith.o Modules/_decimal/libmpdec/constants.o Modules/_decimal/libmpdec/context.o Modules/_decimal/libmpdec/convolute.o Modules/_decimal/libmpdec/crt.o Modules/_decimal/libmpdec/difradix2.o Modules/_decimal/libmpdec/fnt.o Modules/_decimal/libmpdec/fourstep.o Modules/_decimal/libmpdec/io.o Modules/_decimal/libmpdec/mpalloc.o Modules/_decimal/libmpdec/mpdecimal.o Modules/_decimal/libmpdec/numbertheory.o Modules/_decimal/libmpdec/sixstep.o Modules/_decimal/libmpdec/transpose.o
gcc -I/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec -DCONFIG_64=1 -DANSI=1 -DHAVE_UINT128_T=1 -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -fPIC -c /bb.download/source/Python-3.12.0/Modules/_decimal/_decimal.c -o Modules/_decimal/_decimal.o
gcc -shared      Modules/_testcapimodule.o Modules/_testcapi/vectorcall.o Modules/_testcapi/vectorcall_limited.o Modules/_testcapi/heaptype.o Modules/_testcapi/abstract.o Modules/_testcapi/unicode.o Modules/_testcapi/dict.o Modules/_testcapi/getargs.o Modules/_testcapi/pytime.o Modules/_testcapi/datetime.o Modules/_testcapi/docstring.o Modules/_testcapi/mem.o Modules/_testcapi/watchers.o Modules/_testcapi/long.o Modules/_testcapi/float.o Modules/_testcapi/structmember.o Modules/_testcapi/exceptions.o Modules/_testcapi/code.o Modules/_testcapi/buffer.o Modules/_testcapi/pyos.o Modules/_testcapi/immortal.o Modules/_testcapi/heaptype_relative.o Modules/_testcapi/gc.o   -o Modules/_testcapi.cpython-312-x86_64-linux-gnu.so
gcc -shared      Modules/sha2module.o  Modules/_hacl/libHacl_Hash_SHA2.a  -o Modules/_sha2.cpython-312-x86_64-linux-gnu.so
gcc -shared      Modules/_testclinic.o   -o Modules/_testclinic.cpython-312-x86_64-linux-gnu.so
gcc -shared      Modules/pyexpat.o -lm Modules/expat/libexpat.a  -o Modules/pyexpat.cpython-312-x86_64-linux-gnu.so
gcc -shared      Modules/_elementtree.o   -o Modules/_elementtree.cpython-312-x86_64-linux-gnu.so
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE \
      -DGITVERSION="\"`LC_ALL=C `\"" \
      -DGITTAG="\"`LC_ALL=C `\"" \
      -DGITBRANCH="\"`LC_ALL=C `\"" \
      -o Modules/getbuildinfo.o /bb.download/source/Python-3.12.0/Modules/getbuildinfo.c
gcc     -o Programs/_freeze_module Programs/_freeze_module.o Modules/getpath_noop.o Modules/getbuildinfo.o Parser/token.o  Parser/pegen.o Parser/pegen_errors.o Parser/action_helpers.o Parser/parser.o Parser/string_parser.o Parser/peg_api.o Parser/myreadline.o Parser/tokenizer.o Objects/abstract.o Objects/boolobject.o Objects/bytes_methods.o Objects/bytearrayobject.o Objects/bytesobject.o Objects/call.o Objects/capsule.o Objects/cellobject.o Objects/classobject.o Objects/codeobject.o Objects/complexobject.o Objects/descrobject.o Objects/enumobject.o Objects/exceptions.o Objects/genericaliasobject.o Objects/genobject.o Objects/fileobject.o Objects/floatobject.o Objects/frameobject.o Objects/funcobject.o Objects/interpreteridobject.o Objects/iterobject.o Objects/listobject.o Objects/longobject.o Objects/dictobject.o Objects/odictobject.o Objects/memoryobject.o Objects/methodobject.o Objects/moduleobject.o Objects/namespaceobject.o Objects/object.o Objects/obmalloc.o Objects/picklebufobject.o Objects/rangeobject.o Objects/setobject.o Objects/sliceobject.o Objects/structseq.o Objects/tupleobject.o Objects/typeobject.o Objects/typevarobject.o Objects/unicodeobject.o Objects/unicodectype.o Objects/unionobject.o Objects/weakrefobject.o Python/asm_trampoline.o Python/_warnings.o Python/Python-ast.o Python/Python-tokenize.o Python/asdl.o Python/assemble.o Python/ast.o Python/ast_opt.o Python/ast_unparse.o Python/bltinmodule.o Python/ceval.o Python/codecs.o Python/compile.o Python/context.o Python/dynamic_annotations.o Python/errors.o Python/flowgraph.o Python/frame.o Python/frozenmain.o Python/future.o Python/getargs.o Python/getcompiler.o Python/getcopyright.o Python/getplatform.o Python/getversion.o Python/ceval_gil.o Python/hamt.o Python/hashtable.o Python/import.o Python/importdl.o Python/initconfig.o Python/instrumentation.o Python/intrinsics.o Python/legacy_tracing.o Python/marshal.o Python/modsupport.o Python/mysnprintf.o Python/mystrtoul.o Python/pathconfig.o Python/preconfig.o Python/pyarena.o Python/pyctype.o Python/pyfpe.o Python/pyhash.o Python/pylifecycle.o Python/pymath.o Python/pystate.o Python/pythonrun.o Python/pytime.o Python/bootstrap_hash.o Python/specialize.o Python/structmember.o Python/symtable.o Python/sysmodule.o Python/thread.o Python/traceback.o Python/tracemalloc.o Python/getopt.o Python/pystrcmp.o Python/pystrtod.o Python/pystrhex.o Python/dtoa.o Python/formatter_unicode.o Python/fileutils.o Python/suggestions.o Python/perf_trampoline.o Python/dynload_shlib.o     Modules/config.o Modules/main.o Modules/gcmodule.o Modules/atexitmodule.o  Modules/faulthandler.o  Modules/posixmodule.o  Modules/signalmodule.o  Modules/_tracemalloc.o  Modules/_codecsmodule.o  Modules/_collectionsmodule.o  Modules/errnomodule.o  Modules/_io/_iomodule.o Modules/_io/iobase.o Modules/_io/fileio.o Modules/_io/bytesio.o Modules/_io/bufferedio.o Modules/_io/textio.o Modules/_io/stringio.o  Modules/itertoolsmodule.o  Modules/_sre/sre.o  Modules/_threadmodule.o  Modules/timemodule.o  Modules/_typingmodule.o  Modules/_weakref.o  Modules/_abc.o  Modules/_functoolsmodule.o  Modules/_localemodule.o  Modules/_operator.o  Modules/_stat.o  Modules/symtablemodule.o  Modules/pwdmodule.o -ldl                         -lm 
./Programs/_freeze_module importlib._bootstrap /bb.download/source/Python-3.12.0/Lib/importlib/_bootstrap.py Python/frozen_modules/importlib._bootstrap.h
./Programs/_freeze_module importlib._bootstrap_external /bb.download/source/Python-3.12.0/Lib/importlib/_bootstrap_external.py Python/frozen_modules/importlib._bootstrap_external.h
./Programs/_freeze_module zipimport /bb.download/source/Python-3.12.0/Lib/zipimport.py Python/frozen_modules/zipimport.h
./Programs/_freeze_module getpath /bb.download/source/Python-3.12.0/Modules/getpath.py Python/frozen_modules/getpath.h
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -DPYTHONPATH='""' \
	-DPREFIX='"/BuggyBox/python/3.12.0/bootstrap"' \
	-DEXEC_PREFIX='"/BuggyBox/python/3.12.0/bootstrap"' \
	-DVERSION='"3.12"' \
	-DVPATH='"/bb.download/source/Python-3.12.0"' \
	-DPLATLIBDIR='"lib"' \
	-DPYTHONFRAMEWORK='""' \
	-o Modules/getpath.o /bb.download/source/Python-3.12.0/Modules/getpath.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Programs/_bootstrap_python.o /bb.download/source/Python-3.12.0/Programs/_bootstrap_python.c
gcc     -o _bootstrap_python Modules/getbuildinfo.o Parser/token.o  Parser/pegen.o Parser/pegen_errors.o Parser/action_helpers.o Parser/parser.o Parser/string_parser.o Parser/peg_api.o Parser/myreadline.o Parser/tokenizer.o Objects/abstract.o Objects/boolobject.o Objects/bytes_methods.o Objects/bytearrayobject.o Objects/bytesobject.o Objects/call.o Objects/capsule.o Objects/cellobject.o Objects/classobject.o Objects/codeobject.o Objects/complexobject.o Objects/descrobject.o Objects/enumobject.o Objects/exceptions.o Objects/genericaliasobject.o Objects/genobject.o Objects/fileobject.o Objects/floatobject.o Objects/frameobject.o Objects/funcobject.o Objects/interpreteridobject.o Objects/iterobject.o Objects/listobject.o Objects/longobject.o Objects/dictobject.o Objects/odictobject.o Objects/memoryobject.o Objects/methodobject.o Objects/moduleobject.o Objects/namespaceobject.o Objects/object.o Objects/obmalloc.o Objects/picklebufobject.o Objects/rangeobject.o Objects/setobject.o Objects/sliceobject.o Objects/structseq.o Objects/tupleobject.o Objects/typeobject.o Objects/typevarobject.o Objects/unicodeobject.o Objects/unicodectype.o Objects/unionobject.o Objects/weakrefobject.o Python/asm_trampoline.o Python/_warnings.o Python/Python-ast.o Python/Python-tokenize.o Python/asdl.o Python/assemble.o Python/ast.o Python/ast_opt.o Python/ast_unparse.o Python/bltinmodule.o Python/ceval.o Python/codecs.o Python/compile.o Python/context.o Python/dynamic_annotations.o Python/errors.o Python/flowgraph.o Python/frame.o Python/frozenmain.o Python/future.o Python/getargs.o Python/getcompiler.o Python/getcopyright.o Python/getplatform.o Python/getversion.o Python/ceval_gil.o Python/hamt.o Python/hashtable.o Python/import.o Python/importdl.o Python/initconfig.o Python/instrumentation.o Python/intrinsics.o Python/legacy_tracing.o Python/marshal.o Python/modsupport.o Python/mysnprintf.o Python/mystrtoul.o Python/pathconfig.o Python/preconfig.o Python/pyarena.o Python/pyctype.o Python/pyfpe.o Python/pyhash.o Python/pylifecycle.o Python/pymath.o Python/pystate.o Python/pythonrun.o Python/pytime.o Python/bootstrap_hash.o Python/specialize.o Python/structmember.o Python/symtable.o Python/sysmodule.o Python/thread.o Python/traceback.o Python/tracemalloc.o Python/getopt.o Python/pystrcmp.o Python/pystrtod.o Python/pystrhex.o Python/dtoa.o Python/formatter_unicode.o Python/fileutils.o Python/suggestions.o Python/perf_trampoline.o Python/dynload_shlib.o     Modules/config.o Modules/main.o Modules/gcmodule.o Modules/atexitmodule.o  Modules/faulthandler.o  Modules/posixmodule.o  Modules/signalmodule.o  Modules/_tracemalloc.o  Modules/_codecsmodule.o  Modules/_collectionsmodule.o  Modules/errnomodule.o  Modules/_io/_iomodule.o Modules/_io/iobase.o Modules/_io/fileio.o Modules/_io/bytesio.o Modules/_io/bufferedio.o Modules/_io/textio.o Modules/_io/stringio.o  Modules/itertoolsmodule.o  Modules/_sre/sre.o  Modules/_threadmodule.o  Modules/timemodule.o  Modules/_typingmodule.o  Modules/_weakref.o  Modules/_abc.o  Modules/_functoolsmodule.o  Modules/_localemodule.o  Modules/_operator.o  Modules/_stat.o  Modules/symtablemodule.o  Modules/pwdmodule.o \
	Programs/_bootstrap_python.o Modules/getpath.o -ldl                         -lm 
./_bootstrap_python /bb.download/source/Python-3.12.0/Programs/_freeze_module.py abc /bb.download/source/Python-3.12.0/Lib/abc.py Python/frozen_modules/abc.h
./_bootstrap_python /bb.download/source/Python-3.12.0/Programs/_freeze_module.py codecs /bb.download/source/Python-3.12.0/Lib/codecs.py Python/frozen_modules/codecs.h
./_bootstrap_python /bb.download/source/Python-3.12.0/Programs/_freeze_module.py io /bb.download/source/Python-3.12.0/Lib/io.py Python/frozen_modules/io.h
./_bootstrap_python /bb.download/source/Python-3.12.0/Programs/_freeze_module.py _collections_abc /bb.download/source/Python-3.12.0/Lib/_collections_abc.py Python/frozen_modules/_collections_abc.h
./_bootstrap_python /bb.download/source/Python-3.12.0/Programs/_freeze_module.py _sitebuiltins /bb.download/source/Python-3.12.0/Lib/_sitebuiltins.py Python/frozen_modules/_sitebuiltins.h
./_bootstrap_python /bb.download/source/Python-3.12.0/Programs/_freeze_module.py genericpath /bb.download/source/Python-3.12.0/Lib/genericpath.py Python/frozen_modules/genericpath.h
./_bootstrap_python /bb.download/source/Python-3.12.0/Programs/_freeze_module.py ntpath /bb.download/source/Python-3.12.0/Lib/ntpath.py Python/frozen_modules/ntpath.h
./_bootstrap_python /bb.download/source/Python-3.12.0/Programs/_freeze_module.py posixpath /bb.download/source/Python-3.12.0/Lib/posixpath.py Python/frozen_modules/posixpath.h
./_bootstrap_python /bb.download/source/Python-3.12.0/Programs/_freeze_module.py os /bb.download/source/Python-3.12.0/Lib/os.py Python/frozen_modules/os.h
./_bootstrap_python /bb.download/source/Python-3.12.0/Programs/_freeze_module.py site /bb.download/source/Python-3.12.0/Lib/site.py Python/frozen_modules/site.h
./_bootstrap_python /bb.download/source/Python-3.12.0/Programs/_freeze_module.py stat /bb.download/source/Python-3.12.0/Lib/stat.py Python/frozen_modules/stat.h
./_bootstrap_python /bb.download/source/Python-3.12.0/Programs/_freeze_module.py importlib.util /bb.download/source/Python-3.12.0/Lib/importlib/util.py Python/frozen_modules/importlib.util.h
./_bootstrap_python /bb.download/source/Python-3.12.0/Programs/_freeze_module.py importlib.machinery /bb.download/source/Python-3.12.0/Lib/importlib/machinery.py Python/frozen_modules/importlib.machinery.h
./_bootstrap_python /bb.download/source/Python-3.12.0/Programs/_freeze_module.py runpy /bb.download/source/Python-3.12.0/Lib/runpy.py Python/frozen_modules/runpy.h
./_bootstrap_python /bb.download/source/Python-3.12.0/Programs/_freeze_module.py __hello__ /bb.download/source/Python-3.12.0/Lib/__hello__.py Python/frozen_modules/__hello__.h
./_bootstrap_python /bb.download/source/Python-3.12.0/Programs/_freeze_module.py __phello__ /bb.download/source/Python-3.12.0/Lib/__phello__/__init__.py Python/frozen_modules/__phello__.h
./_bootstrap_python /bb.download/source/Python-3.12.0/Programs/_freeze_module.py __phello__.ham /bb.download/source/Python-3.12.0/Lib/__phello__/ham/__init__.py Python/frozen_modules/__phello__.ham.h
./_bootstrap_python /bb.download/source/Python-3.12.0/Programs/_freeze_module.py __phello__.ham.eggs /bb.download/source/Python-3.12.0/Lib/__phello__/ham/eggs.py Python/frozen_modules/__phello__.ham.eggs.h
./_bootstrap_python /bb.download/source/Python-3.12.0/Programs/_freeze_module.py __phello__.spam /bb.download/source/Python-3.12.0/Lib/__phello__/spam.py Python/frozen_modules/__phello__.spam.h
./_bootstrap_python /bb.download/source/Python-3.12.0/Programs/_freeze_module.py frozen_only /bb.download/source/Python-3.12.0/Tools/freeze/flag.py Python/frozen_modules/frozen_only.h
./_bootstrap_python /bb.download/source/Python-3.12.0/Tools/build/deepfreeze.py \
Python/frozen_modules/importlib._bootstrap.h:importlib._bootstrap \
Python/frozen_modules/importlib._bootstrap_external.h:importlib._bootstrap_external \
Python/frozen_modules/zipimport.h:zipimport \
Python/frozen_modules/abc.h:abc \
Python/frozen_modules/codecs.h:codecs \
Python/frozen_modules/io.h:io \
Python/frozen_modules/_collections_abc.h:_collections_abc \
Python/frozen_modules/_sitebuiltins.h:_sitebuiltins \
Python/frozen_modules/genericpath.h:genericpath \
Python/frozen_modules/ntpath.h:ntpath \
Python/frozen_modules/posixpath.h:posixpath \
Python/frozen_modules/os.h:os \
Python/frozen_modules/site.h:site \
Python/frozen_modules/stat.h:stat \
Python/frozen_modules/importlib.util.h:importlib.util \
Python/frozen_modules/importlib.machinery.h:importlib.machinery \
Python/frozen_modules/runpy.h:runpy \
Python/frozen_modules/__hello__.h:__hello__ \
Python/frozen_modules/__phello__.h:__phello__ \
Python/frozen_modules/__phello__.ham.h:__phello__.ham \
Python/frozen_modules/__phello__.ham.eggs.h:__phello__.ham.eggs \
Python/frozen_modules/__phello__.spam.h:__phello__.spam \
Python/frozen_modules/frozen_only.h:frozen_only \
-o Python/deepfreeze/deepfreeze.c
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Python/frozen.o /bb.download/source/Python-3.12.0/Python/frozen.c
gcc -shared      Modules/_decimal/_decimal.o -lm Modules/_decimal/libmpdec/libmpdec.a  -o Modules/_decimal.cpython-312-x86_64-linux-gnu.so
gcc -c -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall    -std=c11 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration -fvisibility=hidden  -I/bb.download/source/Python-3.12.0/Include/internal -IObjects -IInclude -IPython -I. -I/bb.download/source/Python-3.12.0/Include    -DPy_BUILD_CORE -o Python/deepfreeze/deepfreeze.o Python/deepfreeze/deepfreeze.c
rm -f libpython3.12.a
ar rcs libpython3.12.a Modules/getbuildinfo.o Parser/token.o  Parser/pegen.o Parser/pegen_errors.o Parser/action_helpers.o Parser/parser.o Parser/string_parser.o Parser/peg_api.o Parser/myreadline.o Parser/tokenizer.o Objects/abstract.o Objects/boolobject.o Objects/bytes_methods.o Objects/bytearrayobject.o Objects/bytesobject.o Objects/call.o Objects/capsule.o Objects/cellobject.o Objects/classobject.o Objects/codeobject.o Objects/complexobject.o Objects/descrobject.o Objects/enumobject.o Objects/exceptions.o Objects/genericaliasobject.o Objects/genobject.o Objects/fileobject.o Objects/floatobject.o Objects/frameobject.o Objects/funcobject.o Objects/interpreteridobject.o Objects/iterobject.o Objects/listobject.o Objects/longobject.o Objects/dictobject.o Objects/odictobject.o Objects/memoryobject.o Objects/methodobject.o Objects/moduleobject.o Objects/namespaceobject.o Objects/object.o Objects/obmalloc.o Objects/picklebufobject.o Objects/rangeobject.o Objects/setobject.o Objects/sliceobject.o Objects/structseq.o Objects/tupleobject.o Objects/typeobject.o Objects/typevarobject.o Objects/unicodeobject.o Objects/unicodectype.o Objects/unionobject.o Objects/weakrefobject.o Python/asm_trampoline.o Python/_warnings.o Python/Python-ast.o Python/Python-tokenize.o Python/asdl.o Python/assemble.o Python/ast.o Python/ast_opt.o Python/ast_unparse.o Python/bltinmodule.o Python/ceval.o Python/codecs.o Python/compile.o Python/context.o Python/dynamic_annotations.o Python/errors.o Python/flowgraph.o Python/frame.o Python/frozenmain.o Python/future.o Python/getargs.o Python/getcompiler.o Python/getcopyright.o Python/getplatform.o Python/getversion.o Python/ceval_gil.o Python/hamt.o Python/hashtable.o Python/import.o Python/importdl.o Python/initconfig.o Python/instrumentation.o Python/intrinsics.o Python/legacy_tracing.o Python/marshal.o Python/modsupport.o Python/mysnprintf.o Python/mystrtoul.o Python/pathconfig.o Python/preconfig.o Python/pyarena.o Python/pyctype.o Python/pyfpe.o Python/pyhash.o Python/pylifecycle.o Python/pymath.o Python/pystate.o Python/pythonrun.o Python/pytime.o Python/bootstrap_hash.o Python/specialize.o Python/structmember.o Python/symtable.o Python/sysmodule.o Python/thread.o Python/traceback.o Python/tracemalloc.o Python/getopt.o Python/pystrcmp.o Python/pystrtod.o Python/pystrhex.o Python/dtoa.o Python/formatter_unicode.o Python/fileutils.o Python/suggestions.o Python/perf_trampoline.o Python/dynload_shlib.o     Modules/config.o Modules/main.o Modules/gcmodule.o Modules/atexitmodule.o  Modules/faulthandler.o  Modules/posixmodule.o  Modules/signalmodule.o  Modules/_tracemalloc.o  Modules/_codecsmodule.o  Modules/_collectionsmodule.o  Modules/errnomodule.o  Modules/_io/_iomodule.o Modules/_io/iobase.o Modules/_io/fileio.o Modules/_io/bytesio.o Modules/_io/bufferedio.o Modules/_io/textio.o Modules/_io/stringio.o  Modules/itertoolsmodule.o  Modules/_sre/sre.o  Modules/_threadmodule.o  Modules/timemodule.o  Modules/_typingmodule.o  Modules/_weakref.o  Modules/_abc.o  Modules/_functoolsmodule.o  Modules/_localemodule.o  Modules/_operator.o  Modules/_stat.o  Modules/symtablemodule.o  Modules/pwdmodule.o Python/deepfreeze/deepfreeze.o Modules/getpath.o Python/frozen.o
gcc     -Xlinker -export-dynamic -o python Programs/python.o Modules/getbuildinfo.o Parser/token.o  Parser/pegen.o Parser/pegen_errors.o Parser/action_helpers.o Parser/parser.o Parser/string_parser.o Parser/peg_api.o Parser/myreadline.o Parser/tokenizer.o Objects/abstract.o Objects/boolobject.o Objects/bytes_methods.o Objects/bytearrayobject.o Objects/bytesobject.o Objects/call.o Objects/capsule.o Objects/cellobject.o Objects/classobject.o Objects/codeobject.o Objects/complexobject.o Objects/descrobject.o Objects/enumobject.o Objects/exceptions.o Objects/genericaliasobject.o Objects/genobject.o Objects/fileobject.o Objects/floatobject.o Objects/frameobject.o Objects/funcobject.o Objects/interpreteridobject.o Objects/iterobject.o Objects/listobject.o Objects/longobject.o Objects/dictobject.o Objects/odictobject.o Objects/memoryobject.o Objects/methodobject.o Objects/moduleobject.o Objects/namespaceobject.o Objects/object.o Objects/obmalloc.o Objects/picklebufobject.o Objects/rangeobject.o Objects/setobject.o Objects/sliceobject.o Objects/structseq.o Objects/tupleobject.o Objects/typeobject.o Objects/typevarobject.o Objects/unicodeobject.o Objects/unicodectype.o Objects/unionobject.o Objects/weakrefobject.o Python/asm_trampoline.o Python/_warnings.o Python/Python-ast.o Python/Python-tokenize.o Python/asdl.o Python/assemble.o Python/ast.o Python/ast_opt.o Python/ast_unparse.o Python/bltinmodule.o Python/ceval.o Python/codecs.o Python/compile.o Python/context.o Python/dynamic_annotations.o Python/errors.o Python/flowgraph.o Python/frame.o Python/frozenmain.o Python/future.o Python/getargs.o Python/getcompiler.o Python/getcopyright.o Python/getplatform.o Python/getversion.o Python/ceval_gil.o Python/hamt.o Python/hashtable.o Python/import.o Python/importdl.o Python/initconfig.o Python/instrumentation.o Python/intrinsics.o Python/legacy_tracing.o Python/marshal.o Python/modsupport.o Python/mysnprintf.o Python/mystrtoul.o Python/pathconfig.o Python/preconfig.o Python/pyarena.o Python/pyctype.o Python/pyfpe.o Python/pyhash.o Python/pylifecycle.o Python/pymath.o Python/pystate.o Python/pythonrun.o Python/pytime.o Python/bootstrap_hash.o Python/specialize.o Python/structmember.o Python/symtable.o Python/sysmodule.o Python/thread.o Python/traceback.o Python/tracemalloc.o Python/getopt.o Python/pystrcmp.o Python/pystrtod.o Python/pystrhex.o Python/dtoa.o Python/formatter_unicode.o Python/fileutils.o Python/suggestions.o Python/perf_trampoline.o Python/dynload_shlib.o     Modules/config.o Modules/main.o Modules/gcmodule.o Modules/atexitmodule.o  Modules/faulthandler.o  Modules/posixmodule.o  Modules/signalmodule.o  Modules/_tracemalloc.o  Modules/_codecsmodule.o  Modules/_collectionsmodule.o  Modules/errnomodule.o  Modules/_io/_iomodule.o Modules/_io/iobase.o Modules/_io/fileio.o Modules/_io/bytesio.o Modules/_io/bufferedio.o Modules/_io/textio.o Modules/_io/stringio.o  Modules/itertoolsmodule.o  Modules/_sre/sre.o  Modules/_threadmodule.o  Modules/timemodule.o  Modules/_typingmodule.o  Modules/_weakref.o  Modules/_abc.o  Modules/_functoolsmodule.o  Modules/_localemodule.o  Modules/_operator.o  Modules/_stat.o  Modules/symtablemodule.o  Modules/pwdmodule.o Python/deepfreeze/deepfreeze.o Modules/getpath.o Python/frozen.o -ldl                         -lm 
gcc     -Xlinker -export-dynamic -o Programs/_testembed Programs/_testembed.o Modules/getbuildinfo.o Parser/token.o  Parser/pegen.o Parser/pegen_errors.o Parser/action_helpers.o Parser/parser.o Parser/string_parser.o Parser/peg_api.o Parser/myreadline.o Parser/tokenizer.o Objects/abstract.o Objects/boolobject.o Objects/bytes_methods.o Objects/bytearrayobject.o Objects/bytesobject.o Objects/call.o Objects/capsule.o Objects/cellobject.o Objects/classobject.o Objects/codeobject.o Objects/complexobject.o Objects/descrobject.o Objects/enumobject.o Objects/exceptions.o Objects/genericaliasobject.o Objects/genobject.o Objects/fileobject.o Objects/floatobject.o Objects/frameobject.o Objects/funcobject.o Objects/interpreteridobject.o Objects/iterobject.o Objects/listobject.o Objects/longobject.o Objects/dictobject.o Objects/odictobject.o Objects/memoryobject.o Objects/methodobject.o Objects/moduleobject.o Objects/namespaceobject.o Objects/object.o Objects/obmalloc.o Objects/picklebufobject.o Objects/rangeobject.o Objects/setobject.o Objects/sliceobject.o Objects/structseq.o Objects/tupleobject.o Objects/typeobject.o Objects/typevarobject.o Objects/unicodeobject.o Objects/unicodectype.o Objects/unionobject.o Objects/weakrefobject.o Python/asm_trampoline.o Python/_warnings.o Python/Python-ast.o Python/Python-tokenize.o Python/asdl.o Python/assemble.o Python/ast.o Python/ast_opt.o Python/ast_unparse.o Python/bltinmodule.o Python/ceval.o Python/codecs.o Python/compile.o Python/context.o Python/dynamic_annotations.o Python/errors.o Python/flowgraph.o Python/frame.o Python/frozenmain.o Python/future.o Python/getargs.o Python/getcompiler.o Python/getcopyright.o Python/getplatform.o Python/getversion.o Python/ceval_gil.o Python/hamt.o Python/hashtable.o Python/import.o Python/importdl.o Python/initconfig.o Python/instrumentation.o Python/intrinsics.o Python/legacy_tracing.o Python/marshal.o Python/modsupport.o Python/mysnprintf.o Python/mystrtoul.o Python/pathconfig.o Python/preconfig.o Python/pyarena.o Python/pyctype.o Python/pyfpe.o Python/pyhash.o Python/pylifecycle.o Python/pymath.o Python/pystate.o Python/pythonrun.o Python/pytime.o Python/bootstrap_hash.o Python/specialize.o Python/structmember.o Python/symtable.o Python/sysmodule.o Python/thread.o Python/traceback.o Python/tracemalloc.o Python/getopt.o Python/pystrcmp.o Python/pystrtod.o Python/pystrhex.o Python/dtoa.o Python/formatter_unicode.o Python/fileutils.o Python/suggestions.o Python/perf_trampoline.o Python/dynload_shlib.o     Modules/config.o Modules/main.o Modules/gcmodule.o Modules/atexitmodule.o  Modules/faulthandler.o  Modules/posixmodule.o  Modules/signalmodule.o  Modules/_tracemalloc.o  Modules/_codecsmodule.o  Modules/_collectionsmodule.o  Modules/errnomodule.o  Modules/_io/_iomodule.o Modules/_io/iobase.o Modules/_io/fileio.o Modules/_io/bytesio.o Modules/_io/bufferedio.o Modules/_io/textio.o Modules/_io/stringio.o  Modules/itertoolsmodule.o  Modules/_sre/sre.o  Modules/_threadmodule.o  Modules/timemodule.o  Modules/_typingmodule.o  Modules/_weakref.o  Modules/_abc.o  Modules/_functoolsmodule.o  Modules/_localemodule.o  Modules/_operator.o  Modules/_stat.o  Modules/symtablemodule.o  Modules/pwdmodule.o Python/deepfreeze/deepfreeze.o Modules/getpath.o Python/frozen.o -ldl                         -lm 
./python -E -S -m sysconfig --generate-posix-vars ;\
if test $? -ne 0 ; then \
	echo "generate-posix-vars failed" ; \
	rm -f ./pybuilddir.txt ; \
	exit 1 ; \
fi
./python -E -c 'import sys ; from sysconfig import get_platform ; print("%s-%d.%d" % (get_platform(), *sys.version_info[:2]))' >platform
The necessary bits to build these optional modules were not found:
_bz2                  _ctypes               _ctypes_test       
_curses               _curses_panel         _dbm               
_gdbm                 _hashlib              _lzma              
_sqlite3              _ssl                  _tkinter           
_uuid                 nis                   readline           
To find the necessary bits, look in configure.ac and config.log.

Could not build the ssl module!
Python requires a OpenSSL 1.1.1 or newer

Checked 111 modules (31 built-in, 64 shared, 1 n/a on linux-x86_64, 0 disabled, 15 missing, 0 failed on import)
Stderr
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Programs/python.c:3:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Parser/pegen.c:1:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Parser/token.c:3:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Parser/pegen_errors.c:1:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Parser/pegen.h:5,
                 from /bb.download/source/Python-3.12.0/Parser/parser.c:2:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Parser/action_helpers.c:1:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Parser/peg_api.c:1:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Parser/myreadline.c:12:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Objects/boolobject.c:3:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Objects/bytearrayobject.c:4:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Parser/string_parser.c:3:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Parser/tokenizer.c:5:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Objects/bytesobject.c:5:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Objects/abstract.c:3:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Objects/call.c:1:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Objects/bytes_methods.c:2:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Objects/capsule.c:3:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Objects/classobject.c:3:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Objects/cellobject.c:3:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Objects/complexobject.c:8:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Objects/codeobject.c:3:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Objects/descrobject.c:3:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Objects/enumobject.c:3:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Objects/exceptions.c:8:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Objects/genericaliasobject.c:3:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Objects/genobject.c:5:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Objects/fileobject.c:4:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Objects/floatobject.c:6:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Objects/frameobject.c:3:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Objects/funcobject.c:4:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Objects/interpreteridobject.c:3:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Objects/iterobject.c:3:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Objects/listobject.c:3:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Objects/longobject.c:5:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Objects/dictobject.c:115:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Objects/odictobject.c:467:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Objects/memoryobject.c:13:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Objects/methodobject.c:4:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Objects/moduleobject.c:4:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Objects/namespaceobject.c:3:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Objects/object.c:4:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Objects/obmalloc.c:3:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Objects/picklebufobject.c:4:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Objects/rangeobject.c:3:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Objects/setobject.c:34:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Objects/sliceobject.c:16:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Objects/structseq.c:10:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Objects/typeobject.c:3:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Objects/tupleobject.c:4:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Objects/unicodeobject.c:42:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Objects/typevarobject.c:2:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Objects/unicodectype.c:11:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Objects/unionobject.c:2:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Objects/weakrefobject.c:1:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Python/Python-ast.c:3:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Python/_warnings.c:1:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Python/Python-tokenize.c:1:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Python/asdl.c:1:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Python/assemble.c:3:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Python/ast.c:5:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Python/ast_opt.c:2:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Python/ast_unparse.c:1:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Python/bltinmodule.c:3:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Python/ceval.c:5:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Python/codecs.c:11:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Python/compile.c:26:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Python/context.c:1:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Python/errors.c:4:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Python/flowgraph.c:4:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Python/frame.c:4:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Python/frozenmain.c:3:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Python/future.c:1:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Python/getargs.c:4:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Python/getcompiler.c:4:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Python/getcopyright.c:3:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Python/getplatform.c:2:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Python/getversion.c:4:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Python/ceval_gil.c:2:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Python/hamt.c:1:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Python/hashtable.c:47:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Python/import.c:3:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Python/importdl.c:4:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Python/initconfig.c:1:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Python/instrumentation.c:5:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Python/intrinsics.c:4:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Python/legacy_tracing.c:6:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Python/marshal.c:11:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Python/modsupport.c:4:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Python/mysnprintf.c:1:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Python/pathconfig.c:3:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Python/mystrtoul.c:1:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Python/preconfig.c:1:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Python/pyarena.c:1:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Python/pyctype.c:1:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Python/pyhash.c:6:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Python/pylifecycle.c:3:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Python/pymath.c:1:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Python/pystate.c:4:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Python/pythonrun.c:13:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Python/pytime.c:1:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Python/bootstrap_hash.c:1:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Python/structmember.c:4:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Python/specialize.c:1:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Python/symtable.c:1:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Python/bootstrap_hash.c:18:
/BuggyBox/glibc/2.38/bootstrap/include/sys/random.h: At top level:
/BuggyBox/glibc/2.38/bootstrap/include/sys/random.h:26: warning: "GRND_NONBLOCK" redefined
   26 | #define GRND_NONBLOCK 0x01
      | 
In file included from /bb.download/source/Python-3.12.0/Python/bootstrap_hash.c:15:
/BuggyBox/linux-headers/unknown/bootstrap/include/linux/random.h:54: note: this is the location of the previous definition
   54 | #define GRND_NONBLOCK   0x0001
      | 
/BuggyBox/glibc/2.38/bootstrap/include/sys/random.h:27: warning: "GRND_RANDOM" redefined
   27 | #define GRND_RANDOM 0x02
      | 
/BuggyBox/linux-headers/unknown/bootstrap/include/linux/random.h:55: note: this is the location of the previous definition
   55 | #define GRND_RANDOM     0x0002
      | 
/BuggyBox/glibc/2.38/bootstrap/include/sys/random.h:28: warning: "GRND_INSECURE" redefined
   28 | #define GRND_INSECURE 0x04
      | 
/BuggyBox/linux-headers/unknown/bootstrap/include/linux/random.h:56: note: this is the location of the previous definition
   56 | #define GRND_INSECURE   0x0004
      | 
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Python/sysmodule.c:17:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Python/thread.c:8:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Python/traceback.c:4:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Python/tracemalloc.c:1:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Python/getopt.c:26:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Python/pystrcmp.c:4:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Python/pystrtod.c:3:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Python/pystrhex.c:3:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Python/dtoa.c:120:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Python/formatter_unicode.c:5:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Python/fileutils.c:1:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Python/dynload_shlib.c:4:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Python/suggestions.c:1:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Python/perf_trampoline.c:132:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from Modules/config.c:19:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/main.c:3:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/gcmodule.c:26:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/atexitmodule.c:9:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/faulthandler.c:1:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/posixmodule.c:12:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/signalmodule.c:6:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Modules/posixmodule.c:246:
/BuggyBox/linux-headers/unknown/bootstrap/include/linux/wait.h: At top level:
/BuggyBox/linux-headers/unknown/bootstrap/include/linux/wait.h:5: warning: "WNOHANG" redefined
    5 | #define WNOHANG         0x00000001
      | 
In file included from /BuggyBox/glibc/2.38/bootstrap/include/stdlib.h:40,
                 from /bb.download/source/Python-3.12.0/Include/Python.h:23:
/BuggyBox/glibc/2.38/bootstrap/include/bits/waitflags.h:25: note: this is the location of the previous definition
   25 | #define WNOHANG         1       /* Don't block waiting.  */
      | 
/BuggyBox/linux-headers/unknown/bootstrap/include/linux/wait.h:6: warning: "WUNTRACED" redefined
    6 | #define WUNTRACED       0x00000002
      | 
/BuggyBox/glibc/2.38/bootstrap/include/bits/waitflags.h:26: note: this is the location of the previous definition
   26 | #define WUNTRACED       2       /* Report status of stopped children.  */
      | 
/BuggyBox/linux-headers/unknown/bootstrap/include/linux/wait.h:7: warning: "WSTOPPED" redefined
    7 | #define WSTOPPED        WUNTRACED
      | 
/BuggyBox/glibc/2.38/bootstrap/include/bits/waitflags.h:30: note: this is the location of the previous definition
   30 | # define WSTOPPED       2       /* Report stopped child (same as WUNTRACED). */
      | 
/BuggyBox/linux-headers/unknown/bootstrap/include/linux/wait.h:8: warning: "WEXITED" redefined
    8 | #define WEXITED         0x00000004
      | 
/BuggyBox/glibc/2.38/bootstrap/include/bits/waitflags.h:31: note: this is the location of the previous definition
   31 | # define WEXITED        4       /* Report dead child.  */
      | 
/BuggyBox/linux-headers/unknown/bootstrap/include/linux/wait.h:9: warning: "WCONTINUED" redefined
    9 | #define WCONTINUED      0x00000008
      | 
/BuggyBox/glibc/2.38/bootstrap/include/bits/waitflags.h:32: note: this is the location of the previous definition
   32 | # define WCONTINUED     8       /* Report continued child.  */
      | 
In file included from /bb.download/source/Python-3.12.0/Modules/posixmodule.c:262:
/BuggyBox/glibc/2.38/bootstrap/include/sysexits.h:92: warning: "EX_OK" redefined
   92 | #define EX_OK           0       /* successful termination */
      | 
/bb.download/source/Python-3.12.0/Modules/posixmodule.c:49: note: this is the location of the previous definition
   49 | #  define EX_OK EXIT_SUCCESS
      | 
In file included from /bb.download/source/Python-3.12.0/Modules/posixmodule.c:539:
/BuggyBox/linux-headers/unknown/bootstrap/include/linux/memfd.h:8: warning: "MFD_CLOEXEC" redefined
    8 | #define MFD_CLOEXEC             0x0001U
      | 
In file included from /BuggyBox/glibc/2.38/bootstrap/include/bits/mman-linux.h:116,
                 from /BuggyBox/glibc/2.38/bootstrap/include/bits/mman.h:32,
                 from /BuggyBox/glibc/2.38/bootstrap/include/sys/mman.h:41,
                 from /bb.download/source/Python-3.12.0/Modules/posixmodule.c:533:
/BuggyBox/glibc/2.38/bootstrap/include/bits/mman-shared.h:31: note: this is the location of the previous definition
   31 | #  define MFD_CLOEXEC 1U
      | 
/BuggyBox/linux-headers/unknown/bootstrap/include/linux/memfd.h:9: warning: "MFD_ALLOW_SEALING" redefined
    9 | #define MFD_ALLOW_SEALING       0x0002U
      | 
/BuggyBox/glibc/2.38/bootstrap/include/bits/mman-shared.h:32: note: this is the location of the previous definition
   32 | #  define MFD_ALLOW_SEALING 2U
      | 
/BuggyBox/linux-headers/unknown/bootstrap/include/linux/memfd.h:10: warning: "MFD_HUGETLB" redefined
   10 | #define MFD_HUGETLB             0x0004U
      | 
/BuggyBox/glibc/2.38/bootstrap/include/bits/mman-shared.h:33: note: this is the location of the previous definition
   33 | #  define MFD_HUGETLB 4U
      | 
/BuggyBox/linux-headers/unknown/bootstrap/include/linux/memfd.h:12: warning: "MFD_NOEXEC_SEAL" redefined
   12 | #define MFD_NOEXEC_SEAL         0x0008U
      | 
/BuggyBox/glibc/2.38/bootstrap/include/bits/mman-shared.h:36: note: this is the location of the previous definition
   36 | #  define MFD_NOEXEC_SEAL 8U
      | 
/BuggyBox/linux-headers/unknown/bootstrap/include/linux/memfd.h:14: warning: "MFD_EXEC" redefined
   14 | #define MFD_EXEC                0x0010U
      | 
/BuggyBox/glibc/2.38/bootstrap/include/bits/mman-shared.h:37: note: this is the location of the previous definition
   37 | #  define MFD_EXEC 0x10U
      | 
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_tracemalloc.c:1:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_codecsmodule.c:34:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_collectionsmodule.c:1:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/errnomodule.c:4:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_io/iobase.c:12:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_io/_iomodule.c:11:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_io/fileio.c:4:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_io/bufferedio.c:11:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_io/bytesio.c:1:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_io/textio.c:10:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_io/stringio.c:2:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/itertoolsmodule.c:2:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In function '_io_FileIO_close_impl',
    inlined from '_io_FileIO_close' at /bb.download/source/Python-3.12.0/Modules/_io/clinic/fileio.c.h:33:12:
/bb.download/source/Python-3.12.0/Modules/_io/fileio.c:171:9: warning: 'exc' may be used uninitialized [-Wmaybe-uninitialized]
  171 |         _PyErr_ChainExceptions1(exc);
      |         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_io/fileio.c: In function '_io_FileIO_close':
/bb.download/source/Python-3.12.0/Modules/_io/fileio.c:156:15: note: 'exc' was declared here
  156 |     PyObject *exc;
      |               ^~~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_sre/sre.c:43:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_threadmodule.c:5:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/timemodule.c:3:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_typingmodule.c:7:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_weakref.c:1:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_abc.c:6:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_functoolsmodule.c:1:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_localemodule.c:13:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_operator.c:1:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_stat.c:15:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/symtablemodule.c:1:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Programs/_freeze_module.c:12:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/pwdmodule.c:4:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/getpath_noop.c:3:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/arraymodule.c:11:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_asynciomodule.c:5:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_bisectmodule.c:7:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_contextvarsmodule.c:1:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_csv.c:13:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_heapqmodule.c:13:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_lsprof.c:5:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_json.c:11:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_opcode.c:1:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_pickle.c:11:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_queuemodule.c:5:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_randommodule.c:73:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_struct.c:12:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_xxsubinterpretersmodule.c:5:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_xxinterpchannelsmodule.c:5:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_zoneinfo.c:5:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/audioop.c:36:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/mathmodule.c:59:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/cmathmodule.c:9:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_statisticsmodule.c:3:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_datetimemodule.c:14:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:611:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:359:14: note: in expansion of macro 'EXTRACT_DIGIT'
  359 |     case 15: EXTRACT_DIGIT(s, x, 100000000000000ULL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:611:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:360:14: note: in expansion of macro 'EXTRACT_DIGIT'
  360 |     case 14: EXTRACT_DIGIT(s, x, 10000000000000ULL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:611:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:361:14: note: in expansion of macro 'EXTRACT_DIGIT'
  361 |     case 13: EXTRACT_DIGIT(s, x, 1000000000000ULL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:611:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:358:14: note: in expansion of macro 'EXTRACT_DIGIT'
  358 |     case 16: EXTRACT_DIGIT(s, x, 1000000000000000ULL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:611:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:359:14: note: in expansion of macro 'EXTRACT_DIGIT'
  359 |     case 15: EXTRACT_DIGIT(s, x, 100000000000000ULL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:611:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:360:14: note: in expansion of macro 'EXTRACT_DIGIT'
  360 |     case 14: EXTRACT_DIGIT(s, x, 10000000000000ULL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:611:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:357:14: note: in expansion of macro 'EXTRACT_DIGIT'
  357 |     case 17: EXTRACT_DIGIT(s, x, 10000000000000000ULL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:611:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:358:14: note: in expansion of macro 'EXTRACT_DIGIT'
  358 |     case 16: EXTRACT_DIGIT(s, x, 1000000000000000ULL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:611:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:359:14: note: in expansion of macro 'EXTRACT_DIGIT'
  359 |     case 15: EXTRACT_DIGIT(s, x, 100000000000000ULL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:611:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:356:14: note: in expansion of macro 'EXTRACT_DIGIT'
  356 |     case 18: EXTRACT_DIGIT(s, x, 100000000000000000ULL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:611:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:357:14: note: in expansion of macro 'EXTRACT_DIGIT'
  357 |     case 17: EXTRACT_DIGIT(s, x, 10000000000000000ULL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:611:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:358:14: note: in expansion of macro 'EXTRACT_DIGIT'
  358 |     case 16: EXTRACT_DIGIT(s, x, 1000000000000000ULL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:611:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:360:14: note: in expansion of macro 'EXTRACT_DIGIT'
  360 |     case 14: EXTRACT_DIGIT(s, x, 10000000000000ULL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:611:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:361:14: note: in expansion of macro 'EXTRACT_DIGIT'
  361 |     case 13: EXTRACT_DIGIT(s, x, 1000000000000ULL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:611:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:362:14: note: in expansion of macro 'EXTRACT_DIGIT'
  362 |     case 12: EXTRACT_DIGIT(s, x, 100000000000ULL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:611:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:361:14: note: in expansion of macro 'EXTRACT_DIGIT'
  361 |     case 13: EXTRACT_DIGIT(s, x, 1000000000000ULL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:611:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:362:14: note: in expansion of macro 'EXTRACT_DIGIT'
  362 |     case 12: EXTRACT_DIGIT(s, x, 100000000000ULL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:611:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:363:14: note: in expansion of macro 'EXTRACT_DIGIT'
  363 |     case 11: EXTRACT_DIGIT(s, x, 10000000000ULL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:611:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:362:14: note: in expansion of macro 'EXTRACT_DIGIT'
  362 |     case 12: EXTRACT_DIGIT(s, x, 100000000000ULL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:611:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:363:14: note: in expansion of macro 'EXTRACT_DIGIT'
  363 |     case 11: EXTRACT_DIGIT(s, x, 10000000000ULL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:611:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:365:14: note: in expansion of macro 'EXTRACT_DIGIT'
  365 |     case 10: EXTRACT_DIGIT(s, x, 1000000000UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:611:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:363:14: note: in expansion of macro 'EXTRACT_DIGIT'
  363 |     case 11: EXTRACT_DIGIT(s, x, 10000000000ULL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:611:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:365:14: note: in expansion of macro 'EXTRACT_DIGIT'
  365 |     case 10: EXTRACT_DIGIT(s, x, 1000000000UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:611:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:366:14: note: in expansion of macro 'EXTRACT_DIGIT'
  366 |     case 9:  EXTRACT_DIGIT(s, x, 100000000UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:611:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:365:14: note: in expansion of macro 'EXTRACT_DIGIT'
  365 |     case 10: EXTRACT_DIGIT(s, x, 1000000000UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:611:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:366:14: note: in expansion of macro 'EXTRACT_DIGIT'
  366 |     case 9:  EXTRACT_DIGIT(s, x, 100000000UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:611:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:367:14: note: in expansion of macro 'EXTRACT_DIGIT'
  367 |     case 8:  EXTRACT_DIGIT(s, x, 10000000UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:611:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:366:14: note: in expansion of macro 'EXTRACT_DIGIT'
  366 |     case 9:  EXTRACT_DIGIT(s, x, 100000000UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:611:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:367:14: note: in expansion of macro 'EXTRACT_DIGIT'
  367 |     case 8:  EXTRACT_DIGIT(s, x, 10000000UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:611:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:368:14: note: in expansion of macro 'EXTRACT_DIGIT'
  368 |     case 7:  EXTRACT_DIGIT(s, x, 1000000UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:611:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:367:14: note: in expansion of macro 'EXTRACT_DIGIT'
  367 |     case 8:  EXTRACT_DIGIT(s, x, 10000000UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:611:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:368:14: note: in expansion of macro 'EXTRACT_DIGIT'
  368 |     case 7:  EXTRACT_DIGIT(s, x, 1000000UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:611:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:369:14: note: in expansion of macro 'EXTRACT_DIGIT'
  369 |     case 6:  EXTRACT_DIGIT(s, x, 100000UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:611:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:368:14: note: in expansion of macro 'EXTRACT_DIGIT'
  368 |     case 7:  EXTRACT_DIGIT(s, x, 1000000UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:611:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:369:14: note: in expansion of macro 'EXTRACT_DIGIT'
  369 |     case 6:  EXTRACT_DIGIT(s, x, 100000UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:611:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:370:14: note: in expansion of macro 'EXTRACT_DIGIT'
  370 |     case 5:  EXTRACT_DIGIT(s, x, 10000UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:611:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:369:14: note: in expansion of macro 'EXTRACT_DIGIT'
  369 |     case 6:  EXTRACT_DIGIT(s, x, 100000UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:611:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:370:14: note: in expansion of macro 'EXTRACT_DIGIT'
  370 |     case 5:  EXTRACT_DIGIT(s, x, 10000UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:611:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:371:14: note: in expansion of macro 'EXTRACT_DIGIT'
  371 |     case 4:  EXTRACT_DIGIT(s, x, 1000UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:611:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:370:14: note: in expansion of macro 'EXTRACT_DIGIT'
  370 |     case 5:  EXTRACT_DIGIT(s, x, 10000UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:611:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:371:14: note: in expansion of macro 'EXTRACT_DIGIT'
  371 |     case 4:  EXTRACT_DIGIT(s, x, 1000UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:611:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:372:14: note: in expansion of macro 'EXTRACT_DIGIT'
  372 |     case 3:  EXTRACT_DIGIT(s, x, 100UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:611:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:371:14: note: in expansion of macro 'EXTRACT_DIGIT'
  371 |     case 4:  EXTRACT_DIGIT(s, x, 1000UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:611:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:372:14: note: in expansion of macro 'EXTRACT_DIGIT'
  372 |     case 3:  EXTRACT_DIGIT(s, x, 100UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:611:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:373:14: note: in expansion of macro 'EXTRACT_DIGIT'
  373 |     case 2:  EXTRACT_DIGIT(s, x, 10UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:611:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:372:14: note: in expansion of macro 'EXTRACT_DIGIT'
  372 |     case 3:  EXTRACT_DIGIT(s, x, 100UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:611:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:373:14: note: in expansion of macro 'EXTRACT_DIGIT'
  373 |     case 2:  EXTRACT_DIGIT(s, x, 10UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:611:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:373:14: note: in expansion of macro 'EXTRACT_DIGIT'
  373 |     case 2:  EXTRACT_DIGIT(s, x, 10UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:607:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:359:14: note: in expansion of macro 'EXTRACT_DIGIT'
  359 |     case 15: EXTRACT_DIGIT(s, x, 100000000000000ULL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:607:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:360:14: note: in expansion of macro 'EXTRACT_DIGIT'
  360 |     case 14: EXTRACT_DIGIT(s, x, 10000000000000ULL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:607:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:361:14: note: in expansion of macro 'EXTRACT_DIGIT'
  361 |     case 13: EXTRACT_DIGIT(s, x, 1000000000000ULL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:607:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:358:14: note: in expansion of macro 'EXTRACT_DIGIT'
  358 |     case 16: EXTRACT_DIGIT(s, x, 1000000000000000ULL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:607:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:359:14: note: in expansion of macro 'EXTRACT_DIGIT'
  359 |     case 15: EXTRACT_DIGIT(s, x, 100000000000000ULL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:607:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:360:14: note: in expansion of macro 'EXTRACT_DIGIT'
  360 |     case 14: EXTRACT_DIGIT(s, x, 10000000000000ULL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:607:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:357:14: note: in expansion of macro 'EXTRACT_DIGIT'
  357 |     case 17: EXTRACT_DIGIT(s, x, 10000000000000000ULL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:607:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:358:14: note: in expansion of macro 'EXTRACT_DIGIT'
  358 |     case 16: EXTRACT_DIGIT(s, x, 1000000000000000ULL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:607:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:359:14: note: in expansion of macro 'EXTRACT_DIGIT'
  359 |     case 15: EXTRACT_DIGIT(s, x, 100000000000000ULL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:607:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:356:14: note: in expansion of macro 'EXTRACT_DIGIT'
  356 |     case 18: EXTRACT_DIGIT(s, x, 100000000000000000ULL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:607:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:357:14: note: in expansion of macro 'EXTRACT_DIGIT'
  357 |     case 17: EXTRACT_DIGIT(s, x, 10000000000000000ULL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:607:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:358:14: note: in expansion of macro 'EXTRACT_DIGIT'
  358 |     case 16: EXTRACT_DIGIT(s, x, 1000000000000000ULL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:607:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:360:14: note: in expansion of macro 'EXTRACT_DIGIT'
  360 |     case 14: EXTRACT_DIGIT(s, x, 10000000000000ULL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:607:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:361:14: note: in expansion of macro 'EXTRACT_DIGIT'
  361 |     case 13: EXTRACT_DIGIT(s, x, 1000000000000ULL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:607:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:362:14: note: in expansion of macro 'EXTRACT_DIGIT'
  362 |     case 12: EXTRACT_DIGIT(s, x, 100000000000ULL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:607:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:361:14: note: in expansion of macro 'EXTRACT_DIGIT'
  361 |     case 13: EXTRACT_DIGIT(s, x, 1000000000000ULL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:607:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:362:14: note: in expansion of macro 'EXTRACT_DIGIT'
  362 |     case 12: EXTRACT_DIGIT(s, x, 100000000000ULL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:607:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:363:14: note: in expansion of macro 'EXTRACT_DIGIT'
  363 |     case 11: EXTRACT_DIGIT(s, x, 10000000000ULL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:607:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:362:14: note: in expansion of macro 'EXTRACT_DIGIT'
  362 |     case 12: EXTRACT_DIGIT(s, x, 100000000000ULL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:607:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:363:14: note: in expansion of macro 'EXTRACT_DIGIT'
  363 |     case 11: EXTRACT_DIGIT(s, x, 10000000000ULL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:607:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:365:14: note: in expansion of macro 'EXTRACT_DIGIT'
  365 |     case 10: EXTRACT_DIGIT(s, x, 1000000000UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:607:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:363:14: note: in expansion of macro 'EXTRACT_DIGIT'
  363 |     case 11: EXTRACT_DIGIT(s, x, 10000000000ULL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:607:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:365:14: note: in expansion of macro 'EXTRACT_DIGIT'
  365 |     case 10: EXTRACT_DIGIT(s, x, 1000000000UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:607:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:366:14: note: in expansion of macro 'EXTRACT_DIGIT'
  366 |     case 9:  EXTRACT_DIGIT(s, x, 100000000UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:607:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:365:14: note: in expansion of macro 'EXTRACT_DIGIT'
  365 |     case 10: EXTRACT_DIGIT(s, x, 1000000000UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:607:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:366:14: note: in expansion of macro 'EXTRACT_DIGIT'
  366 |     case 9:  EXTRACT_DIGIT(s, x, 100000000UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:607:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:367:14: note: in expansion of macro 'EXTRACT_DIGIT'
  367 |     case 8:  EXTRACT_DIGIT(s, x, 10000000UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:607:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:366:14: note: in expansion of macro 'EXTRACT_DIGIT'
  366 |     case 9:  EXTRACT_DIGIT(s, x, 100000000UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:607:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:367:14: note: in expansion of macro 'EXTRACT_DIGIT'
  367 |     case 8:  EXTRACT_DIGIT(s, x, 10000000UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:607:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:368:14: note: in expansion of macro 'EXTRACT_DIGIT'
  368 |     case 7:  EXTRACT_DIGIT(s, x, 1000000UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:607:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:367:14: note: in expansion of macro 'EXTRACT_DIGIT'
  367 |     case 8:  EXTRACT_DIGIT(s, x, 10000000UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:607:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:368:14: note: in expansion of macro 'EXTRACT_DIGIT'
  368 |     case 7:  EXTRACT_DIGIT(s, x, 1000000UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:607:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:369:14: note: in expansion of macro 'EXTRACT_DIGIT'
  369 |     case 6:  EXTRACT_DIGIT(s, x, 100000UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:607:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:368:14: note: in expansion of macro 'EXTRACT_DIGIT'
  368 |     case 7:  EXTRACT_DIGIT(s, x, 1000000UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:607:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:369:14: note: in expansion of macro 'EXTRACT_DIGIT'
  369 |     case 6:  EXTRACT_DIGIT(s, x, 100000UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:607:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:370:14: note: in expansion of macro 'EXTRACT_DIGIT'
  370 |     case 5:  EXTRACT_DIGIT(s, x, 10000UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:607:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:369:14: note: in expansion of macro 'EXTRACT_DIGIT'
  369 |     case 6:  EXTRACT_DIGIT(s, x, 100000UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:607:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:370:14: note: in expansion of macro 'EXTRACT_DIGIT'
  370 |     case 5:  EXTRACT_DIGIT(s, x, 10000UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:607:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:371:14: note: in expansion of macro 'EXTRACT_DIGIT'
  371 |     case 4:  EXTRACT_DIGIT(s, x, 1000UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:607:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:370:14: note: in expansion of macro 'EXTRACT_DIGIT'
  370 |     case 5:  EXTRACT_DIGIT(s, x, 10000UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:607:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:371:14: note: in expansion of macro 'EXTRACT_DIGIT'
  371 |     case 4:  EXTRACT_DIGIT(s, x, 1000UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:607:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:372:14: note: in expansion of macro 'EXTRACT_DIGIT'
  372 |     case 3:  EXTRACT_DIGIT(s, x, 100UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:607:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:371:14: note: in expansion of macro 'EXTRACT_DIGIT'
  371 |     case 4:  EXTRACT_DIGIT(s, x, 1000UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:607:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:372:14: note: in expansion of macro 'EXTRACT_DIGIT'
  372 |     case 3:  EXTRACT_DIGIT(s, x, 100UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:607:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:373:14: note: in expansion of macro 'EXTRACT_DIGIT'
  373 |     case 2:  EXTRACT_DIGIT(s, x, 10UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:607:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:372:14: note: in expansion of macro 'EXTRACT_DIGIT'
  372 |     case 3:  EXTRACT_DIGIT(s, x, 100UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:607:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:373:14: note: in expansion of macro 'EXTRACT_DIGIT'
  373 |     case 2:  EXTRACT_DIGIT(s, x, 10UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:607:18:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:373:14: note: in expansion of macro 'EXTRACT_DIGIT'
  373 |     case 2:  EXTRACT_DIGIT(s, x, 10UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:501:22:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:359:14: note: in expansion of macro 'EXTRACT_DIGIT'
  359 |     case 15: EXTRACT_DIGIT(s, x, 100000000000000ULL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:501:22:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:360:14: note: in expansion of macro 'EXTRACT_DIGIT'
  360 |     case 14: EXTRACT_DIGIT(s, x, 10000000000000ULL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:501:22:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:361:14: note: in expansion of macro 'EXTRACT_DIGIT'
  361 |     case 13: EXTRACT_DIGIT(s, x, 1000000000000ULL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:501:22:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:358:14: note: in expansion of macro 'EXTRACT_DIGIT'
  358 |     case 16: EXTRACT_DIGIT(s, x, 1000000000000000ULL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:501:22:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:359:14: note: in expansion of macro 'EXTRACT_DIGIT'
  359 |     case 15: EXTRACT_DIGIT(s, x, 100000000000000ULL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:501:22:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:360:14: note: in expansion of macro 'EXTRACT_DIGIT'
  360 |     case 14: EXTRACT_DIGIT(s, x, 10000000000000ULL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:501:22:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:357:14: note: in expansion of macro 'EXTRACT_DIGIT'
  357 |     case 17: EXTRACT_DIGIT(s, x, 10000000000000000ULL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:501:22:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:358:14: note: in expansion of macro 'EXTRACT_DIGIT'
  358 |     case 16: EXTRACT_DIGIT(s, x, 1000000000000000ULL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:501:22:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:359:14: note: in expansion of macro 'EXTRACT_DIGIT'
  359 |     case 15: EXTRACT_DIGIT(s, x, 100000000000000ULL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:501:22:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:356:14: note: in expansion of macro 'EXTRACT_DIGIT'
  356 |     case 18: EXTRACT_DIGIT(s, x, 100000000000000000ULL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:501:22:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:357:14: note: in expansion of macro 'EXTRACT_DIGIT'
  357 |     case 17: EXTRACT_DIGIT(s, x, 10000000000000000ULL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:501:22:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:358:14: note: in expansion of macro 'EXTRACT_DIGIT'
  358 |     case 16: EXTRACT_DIGIT(s, x, 1000000000000000ULL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:501:22:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:360:14: note: in expansion of macro 'EXTRACT_DIGIT'
  360 |     case 14: EXTRACT_DIGIT(s, x, 10000000000000ULL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:501:22:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:361:14: note: in expansion of macro 'EXTRACT_DIGIT'
  361 |     case 13: EXTRACT_DIGIT(s, x, 1000000000000ULL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:501:22:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:362:14: note: in expansion of macro 'EXTRACT_DIGIT'
  362 |     case 12: EXTRACT_DIGIT(s, x, 100000000000ULL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:501:22:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:361:14: note: in expansion of macro 'EXTRACT_DIGIT'
  361 |     case 13: EXTRACT_DIGIT(s, x, 1000000000000ULL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:501:22:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:362:14: note: in expansion of macro 'EXTRACT_DIGIT'
  362 |     case 12: EXTRACT_DIGIT(s, x, 100000000000ULL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:501:22:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:363:14: note: in expansion of macro 'EXTRACT_DIGIT'
  363 |     case 11: EXTRACT_DIGIT(s, x, 10000000000ULL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:501:22:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:362:14: note: in expansion of macro 'EXTRACT_DIGIT'
  362 |     case 12: EXTRACT_DIGIT(s, x, 100000000000ULL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:501:22:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:363:14: note: in expansion of macro 'EXTRACT_DIGIT'
  363 |     case 11: EXTRACT_DIGIT(s, x, 10000000000ULL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:501:22:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:365:14: note: in expansion of macro 'EXTRACT_DIGIT'
  365 |     case 10: EXTRACT_DIGIT(s, x, 1000000000UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:501:22:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:363:14: note: in expansion of macro 'EXTRACT_DIGIT'
  363 |     case 11: EXTRACT_DIGIT(s, x, 10000000000ULL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:501:22:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:365:14: note: in expansion of macro 'EXTRACT_DIGIT'
  365 |     case 10: EXTRACT_DIGIT(s, x, 1000000000UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:501:22:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:366:14: note: in expansion of macro 'EXTRACT_DIGIT'
  366 |     case 9:  EXTRACT_DIGIT(s, x, 100000000UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:501:22:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:365:14: note: in expansion of macro 'EXTRACT_DIGIT'
  365 |     case 10: EXTRACT_DIGIT(s, x, 1000000000UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:501:22:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:366:14: note: in expansion of macro 'EXTRACT_DIGIT'
  366 |     case 9:  EXTRACT_DIGIT(s, x, 100000000UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:501:22:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:367:14: note: in expansion of macro 'EXTRACT_DIGIT'
  367 |     case 8:  EXTRACT_DIGIT(s, x, 10000000UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:501:22:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:366:14: note: in expansion of macro 'EXTRACT_DIGIT'
  366 |     case 9:  EXTRACT_DIGIT(s, x, 100000000UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:501:22:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:367:14: note: in expansion of macro 'EXTRACT_DIGIT'
  367 |     case 8:  EXTRACT_DIGIT(s, x, 10000000UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:501:22:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:368:14: note: in expansion of macro 'EXTRACT_DIGIT'
  368 |     case 7:  EXTRACT_DIGIT(s, x, 1000000UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:501:22:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:367:14: note: in expansion of macro 'EXTRACT_DIGIT'
  367 |     case 8:  EXTRACT_DIGIT(s, x, 10000000UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:501:22:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:368:14: note: in expansion of macro 'EXTRACT_DIGIT'
  368 |     case 7:  EXTRACT_DIGIT(s, x, 1000000UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:501:22:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:369:14: note: in expansion of macro 'EXTRACT_DIGIT'
  369 |     case 6:  EXTRACT_DIGIT(s, x, 100000UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:501:22:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:368:14: note: in expansion of macro 'EXTRACT_DIGIT'
  368 |     case 7:  EXTRACT_DIGIT(s, x, 1000000UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:501:22:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:369:14: note: in expansion of macro 'EXTRACT_DIGIT'
  369 |     case 6:  EXTRACT_DIGIT(s, x, 100000UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:501:22:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:370:14: note: in expansion of macro 'EXTRACT_DIGIT'
  370 |     case 5:  EXTRACT_DIGIT(s, x, 10000UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:501:22:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:369:14: note: in expansion of macro 'EXTRACT_DIGIT'
  369 |     case 6:  EXTRACT_DIGIT(s, x, 100000UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:501:22:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:370:14: note: in expansion of macro 'EXTRACT_DIGIT'
  370 |     case 5:  EXTRACT_DIGIT(s, x, 10000UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:501:22:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:371:14: note: in expansion of macro 'EXTRACT_DIGIT'
  371 |     case 4:  EXTRACT_DIGIT(s, x, 1000UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:501:22:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:370:14: note: in expansion of macro 'EXTRACT_DIGIT'
  370 |     case 5:  EXTRACT_DIGIT(s, x, 10000UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:501:22:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:371:14: note: in expansion of macro 'EXTRACT_DIGIT'
  371 |     case 4:  EXTRACT_DIGIT(s, x, 1000UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:501:22:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:372:14: note: in expansion of macro 'EXTRACT_DIGIT'
  372 |     case 3:  EXTRACT_DIGIT(s, x, 100UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:501:22:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:371:14: note: in expansion of macro 'EXTRACT_DIGIT'
  371 |     case 4:  EXTRACT_DIGIT(s, x, 1000UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:501:22:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:372:14: note: in expansion of macro 'EXTRACT_DIGIT'
  372 |     case 3:  EXTRACT_DIGIT(s, x, 100UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:501:22:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:373:14: note: in expansion of macro 'EXTRACT_DIGIT'
  373 |     case 2:  EXTRACT_DIGIT(s, x, 10UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:501:22:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:372:14: note: in expansion of macro 'EXTRACT_DIGIT'
  372 |     case 3:  EXTRACT_DIGIT(s, x, 100UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:501:22:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:373:14: note: in expansion of macro 'EXTRACT_DIGIT'
  373 |     case 2:  EXTRACT_DIGIT(s, x, 10UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In function 'word_to_string',
    inlined from 'coeff_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:410:13,
    inlined from '_mpd_to_string' at /bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:501:22:
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:348:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
  348 |         if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d
      |                                   ~~~~~^~~~~~~~~~~~~~~~~~~~~
/bb.download/source/Python-3.12.0/Modules/_decimal/libmpdec/io.c:373:14: note: in expansion of macro 'EXTRACT_DIGIT'
  373 |     case 2:  EXTRACT_DIGIT(s, x, 10UL, dot);
      |              ^~~~~~~~~~~~~
In function '_mpd_to_string':
cc1: note: destination object is likely at address zero
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/binascii.c:62:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/zlibmodule.c:8:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/md5module.c:22:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/sha1module.c:22:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/sha3module.c:22:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_blake2/blake2module.c:15:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_blake2/blake2b_impl.c:20:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_blake2/blake2s_impl.c:20:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/cjkcodecs/cjkcodecs.h:11,
                 from /bb.download/source/Python-3.12.0/Modules/cjkcodecs/_codecs_cn.c:7:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/cjkcodecs/cjkcodecs.h:11,
                 from /bb.download/source/Python-3.12.0/Modules/cjkcodecs/_codecs_hk.c:13:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/cjkcodecs/cjkcodecs.h:11,
                 from /bb.download/source/Python-3.12.0/Modules/cjkcodecs/_codecs_iso2022.c:34:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/cjkcodecs/cjkcodecs.h:11,
                 from /bb.download/source/Python-3.12.0/Modules/cjkcodecs/_codecs_jp.c:10:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/cjkcodecs/cjkcodecs.h:11,
                 from /bb.download/source/Python-3.12.0/Modules/cjkcodecs/_codecs_kr.c:7:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/cjkcodecs/cjkcodecs.h:11,
                 from /bb.download/source/Python-3.12.0/Modules/cjkcodecs/_codecs_tw.c:7:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/cjkcodecs/multibytecodec.c:8:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/unicodedata.c:21:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_cryptmodule.c:4:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/fcntlmodule.c:6:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/grpmodule.c:4:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/mmapmodule.c:26:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/ossaudiodev.c:25:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_posixsubprocess.c:6:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/resource.c:2:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/selectmodule.c:15:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/socketmodule.c:109:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/spwdmodule.c:6:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/syslogmodule.c:52:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/termios.c:3:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_multiprocessing/posixshmem.c:7:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_multiprocessing/multiprocessing.h:6,
                 from /bb.download/source/Python-3.12.0/Modules/_multiprocessing/multiprocessing.c:10:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_multiprocessing/multiprocessing.h:6,
                 from /bb.download/source/Python-3.12.0/Modules/_multiprocessing/semaphore.c:10:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/xxsubtype.c:1:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Modules/_multiprocessing/multiprocessing.c:33:
/bb.download/source/Python-3.12.0/Modules/_multiprocessing/clinic/multiprocessing.c.h: At top level:
/bb.download/source/Python-3.12.0/Modules/_multiprocessing/clinic/multiprocessing.c.h:140:1: warning: '_multiprocessing_sem_unlink' defined but not used [-Wunused-function]
  140 | _multiprocessing_sem_unlink(PyObject *module, PyObject *arg)
      | ^~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_xxtestfuzz/_xxtestfuzz.c:2:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_xxtestfuzz/fuzzer.c:13:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_testbuffer.c:7:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_testinternalcapi.c:14:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_testcapi/parts.h:25,
                 from /bb.download/source/Python-3.12.0/Modules/_testcapi/vectorcall_limited.c:2:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_testcapimodule.c:22:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_testcapi/parts.h:25,
                 from /bb.download/source/Python-3.12.0/Modules/_testcapi/vectorcall.c:1:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_testcapi/parts.h:25,
                 from /bb.download/source/Python-3.12.0/Modules/_testcapi/heaptype.c:1:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_testcapi/parts.h:25,
                 from /bb.download/source/Python-3.12.0/Modules/_testcapi/abstract.c:4:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_testcapi/parts.h:25,
                 from /bb.download/source/Python-3.12.0/Modules/_testcapi/unicode.c:4:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_testcapi/parts.h:25,
                 from /bb.download/source/Python-3.12.0/Modules/_testcapi/dict.c:4:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_testcapi/parts.h:25,
                 from /bb.download/source/Python-3.12.0/Modules/_testcapi/getargs.c:8:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_testcapi/parts.h:25,
                 from /bb.download/source/Python-3.12.0/Modules/_testcapi/pytime.c:1:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_testcapi/parts.h:25,
                 from /bb.download/source/Python-3.12.0/Modules/_testcapi/datetime.c:1:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_testcapi/parts.h:25,
                 from /bb.download/source/Python-3.12.0/Modules/_testcapi/docstring.c:1:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_testcapi/parts.h:25,
                 from /bb.download/source/Python-3.12.0/Modules/_testcapi/mem.c:1:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_testcapi/parts.h:25,
                 from /bb.download/source/Python-3.12.0/Modules/_testcapi/long.c:1:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_testcapi/parts.h:25,
                 from /bb.download/source/Python-3.12.0/Modules/_testcapi/watchers.c:1:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_testcapi/parts.h:25,
                 from /bb.download/source/Python-3.12.0/Modules/_testcapi/float.c:3:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_testcapi/parts.h:25,
                 from /bb.download/source/Python-3.12.0/Modules/_testcapi/structmember.c:2:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_testcapi/parts.h:25,
                 from /bb.download/source/Python-3.12.0/Modules/_testcapi/exceptions.c:2:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_testcapi/parts.h:25,
                 from /bb.download/source/Python-3.12.0/Modules/_testcapi/code.c:1:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_testcapi/parts.h:25,
                 from /bb.download/source/Python-3.12.0/Modules/_testcapi/buffer.c:3:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_testcapi/parts.h:25,
                 from /bb.download/source/Python-3.12.0/Modules/_testcapi/pyos.c:1:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_testcapi/parts.h:25,
                 from /bb.download/source/Python-3.12.0/Modules/_testcapi/heaptype_relative.c:2:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_testcapi/parts.h:25,
                 from /bb.download/source/Python-3.12.0/Modules/_testcapi/immortal.c:1:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_testcapi/parts.h:25,
                 from /bb.download/source/Python-3.12.0/Modules/_testcapi/gc.c:1:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_testimportmultiple.c:6:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_testclinic.c:10:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_testsinglephase.c:9:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_testmultiphase.c:8:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/xxlimited.c:67:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/xxlimited_35.c:10:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Programs/_testembed.c:8:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_elementtree.c:16:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/pyexpat.c:1:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/sha2module.c:23:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/_decimal/_decimal.c:32:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/getbuildinfo.c:1:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Modules/getpath.c:3:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Programs/_bootstrap_python.c:9:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from /bb.download/source/Python-3.12.0/Python/frozen.c:38:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
In file included from /bb.download/source/Python-3.12.0/Include/Python.h:36,
                 from Python/deepfreeze/deepfreeze.c:1:
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h: In function 'wctob':
/BuggyBox/glibc/2.38/bootstrap/include/wchar.h:350:47: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
  350 | { return (__builtin_constant_p (__wc) && __wc >= L'\0' && __wc <= L'\x7f'
      |                                               ^~
make install
Result = 0
Working Dir = /bb.build
Stdout
Creating directory /BuggyBox/python/3.12.0/bootstrap/bin
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib
if test "no-framework" = "no-framework" ; then \
	/BuggyBox/coreutils/9.4/bootstrap/bin/install -c python /BuggyBox/python/3.12.0/bootstrap/bin/python3.12; \
else \
	/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -s Mac/pythonw /BuggyBox/python/3.12.0/bootstrap/bin/python3.12; \
fi
if test "3.12" != "3.12"; then \
	if test -f /BuggyBox/python/3.12.0/bootstrap/bin/python3.12 -o -h /BuggyBox/python/3.12.0/bootstrap/bin/python3.12; \
	then rm -f /BuggyBox/python/3.12.0/bootstrap/bin/python3.12; \
	fi; \
	(cd /BuggyBox/python/3.12.0/bootstrap/bin; ln python3.12 python3.12); \
fi
if test "x" != "x" ; then \
	rm -f /BuggyBox/python/3.12.0/bootstrap/bin/python3.12-32; \
	lipo  \
		-output /BuggyBox/python/3.12.0/bootstrap/bin/python3.12-32 \
		/BuggyBox/python/3.12.0/bootstrap/bin/python3.12; \
fi
if test "x" != "x" ; then \
	rm -f /BuggyBox/python/3.12.0/bootstrap/bin/python3.12-intel64; \
	lipo  \
		-output /BuggyBox/python/3.12.0/bootstrap/bin/python3.12-intel64 \
		/BuggyBox/python/3.12.0/bootstrap/bin/python3.12; \
fi
# Install macOS debug information (if available)
if test -d "python.dSYM"; then \
	echo  /BuggyBox/python/3.12.0/bootstrap/bin/python3.12; \
	 /BuggyBox/python/3.12.0/bootstrap/bin/python3.12; \
fi
if test "no-framework" = "no-framework" ; then \
	if test -d "libpython3.12.a.dSYM"; then \
		echo  /BuggyBox/python/3.12.0/bootstrap/lib/libpython3.12.a; \
		 /BuggyBox/python/3.12.0/bootstrap/lib/libpython3.12.a; \
	fi \
else \
	if test -d "libpython3.12.a.dSYM"; then \
		echo  /libpython3.12.a; \
       /libpython3.12.a; \
	fi \
fi
The necessary bits to build these optional modules were not found:
_bz2                  _ctypes               _ctypes_test       
_curses               _curses_panel         _dbm               
_gdbm                 _hashlib              _lzma              
_sqlite3              _ssl                  _tkinter           
_uuid                 nis                   readline           
To find the necessary bits, look in configure.ac and config.log.

Could not build the ssl module!
Python requires a OpenSSL 1.1.1 or newer

Checked 111 modules (31 built-in, 64 shared, 1 n/a on linux-x86_64, 0 disabled, 15 missing, 0 failed on import)
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/asyncio
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/collections
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/concurrent
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/concurrent/futures
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/ctypes
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/ctypes/macholib
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/curses
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/dbm
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/email
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/email/mime
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/ensurepip
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/ensurepip/_bundled
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/html
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/http
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/Icons
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/importlib
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/importlib/resources
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/importlib/metadata
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/json
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/pgen2
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/logging
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/multiprocessing
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/multiprocessing/dummy
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/pydoc_data
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/re
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/site-packages
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/sqlite3
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/tkinter
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/tomllib
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/turtledemo
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/unittest
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/urllib
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/venv
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/venv/scripts
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/venv/scripts/common
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/venv/scripts/posix
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/wsgiref
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/xml
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/xml/dom
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/xml/etree
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/xml/parsers
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/xml/sax
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/xmlrpc
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/zipfile
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/zipfile/_path
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/zoneinfo
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/__phello__
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/audiodata
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/capath
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/cjkencodings
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/crashers
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/data
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/dtracedata
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/encoded_modules
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/imghdrdata
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/leakers
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/libregrtest
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/sndhdrdata
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/subprocessdata
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/support
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/support/_hypothesis_stubs
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_capi
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_cppext
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/data
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import/data
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import/data/circular_imports
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import/data/circular_imports/subpkg
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import/data/circular_imports/subpkg2
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import/data/circular_imports/subpkg2/parent
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import/data/package
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import/data/package2
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import/data/unwritable
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/builtin
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/data
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/extension
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/frozen
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/import_
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/namespace_pkgs
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/namespace_pkgs/both_portions
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/namespace_pkgs/both_portions/foo
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/namespace_pkgs/module_and_namespace_package
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/namespace_pkgs/module_and_namespace_package/a_test
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/namespace_pkgs/not_a_namespace_pkg
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/namespace_pkgs/not_a_namespace_pkg/foo
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/namespace_pkgs/portion1
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/namespace_pkgs/portion1/foo
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/namespace_pkgs/portion2
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/namespace_pkgs/portion2/foo
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/namespace_pkgs/project1
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/namespace_pkgs/project1/parent
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/namespace_pkgs/project1/parent/child
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/namespace_pkgs/project2
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/namespace_pkgs/project2/parent
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/namespace_pkgs/project2/parent/child
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/namespace_pkgs/project3
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/namespace_pkgs/project3/parent
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/namespace_pkgs/project3/parent/child
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/partial
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/data01
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/data01/subdirectory
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/data02
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/data02/one
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/data02/subdirectory
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/data02/subdirectory/subsubdir
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/data02/two
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/data03
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/data03/namespace
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/data03/namespace/portion1
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/data03/namespace/portion2
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/namespacedata01
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/zipdata01
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/zipdata02
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/source
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_json
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_lib2to3
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_lib2to3/data
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_lib2to3/data/fixers
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_lib2to3/data/fixers/myfixes
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_module
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_peg_generator
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_sqlite3
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tkinter
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid/array
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid/array-of-tables
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid/boolean
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid/dates-and-times
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid/dotted-keys
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid/inline-table
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid/keys-and-vals
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid/literal-str
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid/multiline-basic-str
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid/multiline-literal-str
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid/table
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/valid
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/valid/array
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/valid/dates-and-times
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/valid/multiline-basic-str
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tools
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ttk
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unittest
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unittest/testmock
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_warnings
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_warnings/data
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_zipfile
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_zipfile/_path
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_zoneinfo
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_zoneinfo/data
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/tracedmodules
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/typinganndata
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/xmltestdata
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/xmltestdata/c14n-20
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/ziptestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/__future__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/__hello__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/_aix_support.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/_collections_abc.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/_compat_pickle.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/_compression.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/_markupbase.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/_osx_support.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/_py_abc.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/_pydatetime.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/_pydecimal.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/_pyio.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/_pylong.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/_sitebuiltins.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/_strptime.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/_threading_local.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/_weakrefset.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/abc.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/aifc.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/antigravity.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/argparse.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/ast.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c /bb.download/source/Python-3.12.0/Lib/base64.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/bdb.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/bisect.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/bz2.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c /bb.download/source/Python-3.12.0/Lib/cProfile.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/calendar.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c /bb.download/source/Python-3.12.0/Lib/cgi.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/cgitb.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/chunk.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/cmd.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/code.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/codecs.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/codeop.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/colorsys.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/compileall.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/configparser.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/contextlib.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/contextvars.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/copy.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/copyreg.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/crypt.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/csv.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/dataclasses.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/datetime.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/decimal.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/difflib.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/dis.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/doctest.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/enum.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/filecmp.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/fileinput.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/fnmatch.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/fractions.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/ftplib.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/functools.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/genericpath.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/getopt.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/getpass.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/gettext.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/glob.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/graphlib.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/gzip.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/hashlib.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/heapq.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/hmac.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/imaplib.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/imghdr.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/inspect.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/io.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/ipaddress.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/keyword.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/linecache.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/locale.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lzma.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/mailbox.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/mailcap.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/mimetypes.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/modulefinder.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/netrc.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/nntplib.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/ntpath.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/nturl2path.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/numbers.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/opcode.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/operator.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/optparse.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/os.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/pathlib.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c /bb.download/source/Python-3.12.0/Lib/pdb.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/pickle.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/pickletools.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/pipes.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/pkgutil.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c /bb.download/source/Python-3.12.0/Lib/platform.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/plistlib.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/poplib.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/posixpath.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/pprint.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c /bb.download/source/Python-3.12.0/Lib/profile.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/pstats.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/pty.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/py_compile.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/pyclbr.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c /bb.download/source/Python-3.12.0/Lib/pydoc.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/queue.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c /bb.download/source/Python-3.12.0/Lib/quopri.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/random.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/reprlib.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/rlcompleter.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/runpy.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/sched.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/secrets.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/selectors.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/shelve.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/shlex.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/shutil.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/signal.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/site.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c /bb.download/source/Python-3.12.0/Lib/smtplib.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/sndhdr.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/socket.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/socketserver.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/sre_compile.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/sre_constants.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/sre_parse.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/ssl.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/stat.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/statistics.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/string.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/stringprep.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/struct.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/subprocess.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/sunau.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/symtable.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/sysconfig.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c /bb.download/source/Python-3.12.0/Lib/tabnanny.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c /bb.download/source/Python-3.12.0/Lib/tarfile.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/telnetlib.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/tempfile.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/textwrap.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/this.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/threading.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c /bb.download/source/Python-3.12.0/Lib/timeit.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/token.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/tokenize.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c /bb.download/source/Python-3.12.0/Lib/trace.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/traceback.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/tracemalloc.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/tty.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/turtle.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/types.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/typing.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/uu.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/uuid.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/warnings.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/wave.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/weakref.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c /bb.download/source/Python-3.12.0/Lib/webbrowser.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/xdrlib.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/zipapp.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/zipimport.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/asyncio/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/asyncio/__main__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/asyncio/base_events.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/asyncio/base_futures.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/asyncio/base_subprocess.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/asyncio/base_tasks.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/asyncio/constants.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/asyncio/coroutines.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/asyncio/events.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/asyncio/exceptions.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/asyncio/format_helpers.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/asyncio/futures.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/asyncio/locks.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/asyncio/log.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/asyncio/mixins.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/asyncio/proactor_events.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/asyncio/protocols.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/asyncio/queues.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/asyncio/runners.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/asyncio/selector_events.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/asyncio/sslproto.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/asyncio/staggered.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/asyncio/streams.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/asyncio/subprocess.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/asyncio/taskgroups.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/asyncio/tasks.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/asyncio/threads.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/asyncio/timeouts.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/asyncio/transports.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/asyncio/trsock.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/asyncio/unix_events.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/asyncio/windows_events.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/asyncio/windows_utils.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/collections/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/collections
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/collections/abc.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/collections
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/concurrent/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/concurrent
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/concurrent/futures/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/concurrent/futures
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/concurrent/futures/_base.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/concurrent/futures
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/concurrent/futures/process.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/concurrent/futures
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/concurrent/futures/thread.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/concurrent/futures
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/ctypes/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/ctypes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/ctypes/_aix.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/ctypes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/ctypes/_endian.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/ctypes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/ctypes/util.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/ctypes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/ctypes/wintypes.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/ctypes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/ctypes/macholib/README.ctypes /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/ctypes/macholib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/ctypes/macholib/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/ctypes/macholib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/ctypes/macholib/dyld.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/ctypes/macholib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/ctypes/macholib/dylib.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/ctypes/macholib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c /bb.download/source/Python-3.12.0/Lib/ctypes/macholib/fetch_macholib /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/ctypes/macholib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/ctypes/macholib/fetch_macholib.bat /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/ctypes/macholib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/ctypes/macholib/framework.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/ctypes/macholib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/curses/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/curses
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/curses/ascii.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/curses
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/curses/has_key.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/curses
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/curses/panel.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/curses
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/curses/textpad.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/curses
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/dbm/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/dbm
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/dbm/dumb.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/dbm
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/dbm/gnu.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/dbm
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/dbm/ndbm.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/dbm
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/email/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/email
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/email/_encoded_words.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/email
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/email/_header_value_parser.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/email
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/email/_parseaddr.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/email
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/email/_policybase.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/email
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/email/architecture.rst /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/email
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/email/base64mime.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/email
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/email/charset.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/email
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/email/contentmanager.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/email
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/email/encoders.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/email
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/email/errors.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/email
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/email/feedparser.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/email
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/email/generator.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/email
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/email/header.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/email
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/email/headerregistry.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/email
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/email/iterators.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/email
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/email/message.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/email
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/email/parser.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/email
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/email/policy.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/email
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/email/quoprimime.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/email
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/email/utils.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/email
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/email/mime/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/email/mime
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/email/mime/application.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/email/mime
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/email/mime/audio.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/email/mime
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/email/mime/base.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/email/mime
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/email/mime/image.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/email/mime
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/email/mime/message.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/email/mime
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/email/mime/multipart.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/email/mime
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/email/mime/nonmultipart.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/email/mime
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/email/mime/text.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/email/mime
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/aliases.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/ascii.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/base64_codec.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/big5.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/big5hkscs.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/bz2_codec.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/charmap.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/cp037.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/cp1006.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/cp1026.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/cp1125.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/cp1140.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/cp1250.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/cp1251.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/cp1252.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/cp1253.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/cp1254.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/cp1255.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/cp1256.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/cp1257.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/cp1258.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/cp273.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/cp424.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/cp437.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/cp500.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/cp720.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/cp737.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/cp775.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/cp850.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/cp852.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/cp855.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/cp856.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/cp857.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/cp858.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/cp860.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/cp861.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/cp862.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/cp863.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/cp864.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/cp865.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/cp866.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/cp869.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/cp874.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/cp875.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/cp932.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/cp949.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/cp950.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/euc_jis_2004.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/euc_jisx0213.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/euc_jp.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/euc_kr.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/gb18030.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/gb2312.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/gbk.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/hex_codec.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/hp_roman8.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/hz.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/idna.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/iso2022_jp.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/iso2022_jp_1.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/iso2022_jp_2.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/iso2022_jp_2004.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/iso2022_jp_3.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/iso2022_jp_ext.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/iso2022_kr.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/iso8859_1.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/iso8859_10.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/iso8859_11.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/iso8859_13.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/iso8859_14.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/iso8859_15.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/iso8859_16.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/iso8859_2.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/iso8859_3.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/iso8859_4.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/iso8859_5.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/iso8859_6.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/iso8859_7.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/iso8859_8.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/iso8859_9.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/johab.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/koi8_r.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/koi8_t.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/koi8_u.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/kz1048.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/latin_1.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/mac_arabic.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/mac_croatian.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/mac_cyrillic.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/mac_farsi.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/mac_greek.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/mac_iceland.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/mac_latin2.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/mac_roman.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/mac_romanian.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/mac_turkish.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/mbcs.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/oem.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/palmos.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/ptcp154.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/punycode.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/quopri_codec.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/raw_unicode_escape.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c /bb.download/source/Python-3.12.0/Lib/encodings/rot_13.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/shift_jis.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/shift_jis_2004.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/shift_jisx0213.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/tis_620.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/undefined.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/unicode_escape.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/utf_16.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/utf_16_be.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/utf_16_le.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/utf_32.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/utf_32_be.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/utf_32_le.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/utf_7.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/utf_8.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/utf_8_sig.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/uu_codec.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/encodings/zlib_codec.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/ensurepip/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/ensurepip
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/ensurepip/__main__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/ensurepip
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/ensurepip/_uninstall.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/ensurepip
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/ensurepip/_bundled/pip-23.2.1-py3-none-any.whl /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/ensurepip/_bundled
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/html/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/html
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/html/entities.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/html
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/html/parser.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/html
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/http/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/http
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/http/client.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/http
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/http/cookiejar.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/http
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/http/cookies.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/http
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/http/server.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/http
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/CREDITS.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/ChangeLog /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/HISTORY.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/NEWS.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/NEWS2x.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/README.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/TODO.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/__main__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/autocomplete.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/autocomplete_w.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/autoexpand.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/browser.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/calltip.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/calltip_w.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/codecontext.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/colorizer.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/config-extensions.def /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/config-highlight.def /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/config-keys.def /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/config-main.def /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/config.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/config_key.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/configdialog.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/debugger.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/debugger_r.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/debugobj.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/debugobj_r.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/delegator.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/dynoption.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/editor.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/extend.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/filelist.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/format.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/grep.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/help.html /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/help.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/help_about.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/history.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/hyperparser.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle.bat /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle.pyw /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/iomenu.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/macosx.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/mainmenu.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/multicall.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/outwin.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/parenmatch.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/pathbrowser.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/percolator.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/pyparse.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c /bb.download/source/Python-3.12.0/Lib/idlelib/pyshell.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/query.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/redirector.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/replace.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/rpc.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/run.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/runscript.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/scrolledlist.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/search.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/searchbase.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/searchengine.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/sidebar.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/squeezer.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/stackviewer.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/statusbar.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/textview.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/tooltip.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/tree.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/undo.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/util.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/window.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/zoomheight.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/zzdummy.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/Icons/README.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/Icons
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/Icons/folder.gif /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/Icons
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/Icons/idle.ico /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/Icons
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/Icons/idle_16.gif /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/Icons
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/Icons/idle_16.png /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/Icons
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/Icons/idle_256.png /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/Icons
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/Icons/idle_32.gif /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/Icons
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/Icons/idle_32.png /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/Icons
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/Icons/idle_48.gif /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/Icons
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/Icons/idle_48.png /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/Icons
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/Icons/minusnode.gif /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/Icons
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/Icons/openfolder.gif /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/Icons
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/Icons/plusnode.gif /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/Icons
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/Icons/python.gif /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/Icons
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/Icons/tk.gif /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/Icons
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/importlib/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/importlib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/importlib/_abc.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/importlib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/importlib/_bootstrap.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/importlib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/importlib/_bootstrap_external.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/importlib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/importlib/abc.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/importlib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/importlib/machinery.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/importlib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/importlib/readers.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/importlib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/importlib/simple.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/importlib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/importlib/util.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/importlib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/importlib/resources/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/importlib/resources
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/importlib/resources/_adapters.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/importlib/resources
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/importlib/resources/_common.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/importlib/resources
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/importlib/resources/_itertools.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/importlib/resources
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/importlib/resources/_legacy.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/importlib/resources
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/importlib/resources/abc.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/importlib/resources
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/importlib/resources/readers.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/importlib/resources
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/importlib/resources/simple.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/importlib/resources
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/importlib/metadata/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/importlib/metadata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/importlib/metadata/_adapters.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/importlib/metadata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/importlib/metadata/_collections.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/importlib/metadata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/importlib/metadata/_functools.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/importlib/metadata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/importlib/metadata/_itertools.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/importlib/metadata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/importlib/metadata/_meta.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/importlib/metadata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/importlib/metadata/_text.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/importlib/metadata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/json/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/json
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/json/decoder.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/json
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/json/encoder.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/json
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/json/scanner.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/json
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/json/tool.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/json
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/Grammar.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/PatternGrammar.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/__main__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/btm_matcher.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/btm_utils.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/fixer_base.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/fixer_util.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/main.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/patcomp.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/pygram.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/pytree.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/refactor.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/fixes/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/fixes/fix_apply.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/fixes/fix_asserts.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/fixes/fix_basestring.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/fixes/fix_buffer.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/fixes/fix_dict.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/fixes/fix_except.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/fixes/fix_exec.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/fixes/fix_execfile.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/fixes/fix_exitfunc.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/fixes/fix_filter.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/fixes/fix_funcattrs.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/fixes/fix_future.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/fixes/fix_getcwdu.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/fixes/fix_has_key.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/fixes/fix_idioms.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/fixes/fix_import.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/fixes/fix_imports.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/fixes/fix_imports2.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/fixes/fix_input.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/fixes/fix_intern.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/fixes/fix_isinstance.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/fixes/fix_itertools.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/fixes/fix_itertools_imports.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/fixes/fix_long.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/fixes/fix_map.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/fixes/fix_metaclass.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/fixes/fix_methodattrs.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/fixes/fix_ne.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/fixes/fix_next.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/fixes/fix_nonzero.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/fixes/fix_numliterals.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/fixes/fix_operator.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/fixes/fix_paren.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/fixes/fix_print.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/fixes/fix_raise.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/fixes/fix_raw_input.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/fixes/fix_reduce.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/fixes/fix_reload.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/fixes/fix_renames.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/fixes/fix_repr.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/fixes/fix_set_literal.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/fixes/fix_standarderror.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/fixes/fix_sys_exc.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/fixes/fix_throw.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/fixes/fix_tuple_params.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/fixes/fix_types.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/fixes/fix_unicode.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/fixes/fix_urllib.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/fixes/fix_ws_comma.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/fixes/fix_xrange.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/fixes/fix_xreadlines.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/fixes/fix_zip.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/pgen2/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/pgen2
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/pgen2/conv.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/pgen2
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/pgen2/driver.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/pgen2
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/pgen2/grammar.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/pgen2
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/pgen2/literals.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/pgen2
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/pgen2/parse.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/pgen2
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/pgen2/pgen.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/pgen2
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c /bb.download/source/Python-3.12.0/Lib/lib2to3/pgen2/token.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/pgen2
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/lib2to3/pgen2/tokenize.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/pgen2
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/logging/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/logging
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/logging/config.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/logging
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/logging/handlers.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/logging
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/multiprocessing/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/multiprocessing
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/multiprocessing/connection.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/multiprocessing
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/multiprocessing/context.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/multiprocessing
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/multiprocessing/forkserver.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/multiprocessing
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/multiprocessing/heap.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/multiprocessing
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/multiprocessing/managers.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/multiprocessing
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/multiprocessing/pool.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/multiprocessing
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/multiprocessing/popen_fork.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/multiprocessing
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/multiprocessing/popen_forkserver.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/multiprocessing
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/multiprocessing/popen_spawn_posix.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/multiprocessing
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/multiprocessing/popen_spawn_win32.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/multiprocessing
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/multiprocessing/process.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/multiprocessing
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/multiprocessing/queues.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/multiprocessing
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/multiprocessing/reduction.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/multiprocessing
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/multiprocessing/resource_sharer.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/multiprocessing
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/multiprocessing/resource_tracker.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/multiprocessing
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/multiprocessing/shared_memory.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/multiprocessing
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/multiprocessing/sharedctypes.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/multiprocessing
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/multiprocessing/spawn.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/multiprocessing
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/multiprocessing/synchronize.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/multiprocessing
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/multiprocessing/util.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/multiprocessing
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/multiprocessing/dummy/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/multiprocessing/dummy
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/multiprocessing/dummy/connection.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/multiprocessing/dummy
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/pydoc_data/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/pydoc_data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/pydoc_data/_pydoc.css /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/pydoc_data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/pydoc_data/topics.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/pydoc_data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/re/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/re
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/re/_casefix.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/re
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/re/_compiler.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/re
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/re/_constants.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/re
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/re/_parser.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/re
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/site-packages/README.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/site-packages
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/sqlite3/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/sqlite3
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/sqlite3/__main__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/sqlite3
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/sqlite3/dbapi2.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/sqlite3
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/sqlite3/dump.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/sqlite3
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/tkinter/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/tkinter
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/tkinter/__main__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/tkinter
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/tkinter/colorchooser.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/tkinter
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/tkinter/commondialog.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/tkinter
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/tkinter/constants.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/tkinter
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/tkinter/dialog.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/tkinter
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/tkinter/dnd.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/tkinter
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/tkinter/filedialog.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/tkinter
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/tkinter/font.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/tkinter
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/tkinter/messagebox.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/tkinter
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/tkinter/scrolledtext.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/tkinter
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/tkinter/simpledialog.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/tkinter
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/tkinter/tix.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/tkinter
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/tkinter/ttk.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/tkinter
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/tomllib/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/tomllib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/tomllib/_parser.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/tomllib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/tomllib/_re.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/tomllib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/tomllib/_types.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/tomllib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/turtledemo/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/turtledemo
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c /bb.download/source/Python-3.12.0/Lib/turtledemo/__main__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/turtledemo
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c /bb.download/source/Python-3.12.0/Lib/turtledemo/bytedesign.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/turtledemo
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/turtledemo/chaos.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/turtledemo
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c /bb.download/source/Python-3.12.0/Lib/turtledemo/clock.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/turtledemo
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/turtledemo/colormixer.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/turtledemo
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c /bb.download/source/Python-3.12.0/Lib/turtledemo/forest.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/turtledemo
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c /bb.download/source/Python-3.12.0/Lib/turtledemo/fractalcurves.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/turtledemo
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c /bb.download/source/Python-3.12.0/Lib/turtledemo/lindenmayer.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/turtledemo
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c /bb.download/source/Python-3.12.0/Lib/turtledemo/minimal_hanoi.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/turtledemo
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/turtledemo/nim.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/turtledemo
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c /bb.download/source/Python-3.12.0/Lib/turtledemo/paint.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/turtledemo
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c /bb.download/source/Python-3.12.0/Lib/turtledemo/peace.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/turtledemo
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c /bb.download/source/Python-3.12.0/Lib/turtledemo/penrose.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/turtledemo
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c /bb.download/source/Python-3.12.0/Lib/turtledemo/planet_and_moon.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/turtledemo
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/turtledemo/rosette.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/turtledemo
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/turtledemo/round_dance.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/turtledemo
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c /bb.download/source/Python-3.12.0/Lib/turtledemo/sorting_animate.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/turtledemo
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c /bb.download/source/Python-3.12.0/Lib/turtledemo/tree.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/turtledemo
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/turtledemo/turtle.cfg /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/turtledemo
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/turtledemo/two_canvases.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/turtledemo
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c /bb.download/source/Python-3.12.0/Lib/turtledemo/yinyang.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/turtledemo
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/unittest/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/unittest
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/unittest/__main__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/unittest
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/unittest/_log.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/unittest
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/unittest/async_case.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/unittest
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/unittest/case.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/unittest
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/unittest/loader.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/unittest
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/unittest/main.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/unittest
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/unittest/mock.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/unittest
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/unittest/result.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/unittest
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/unittest/runner.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/unittest
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/unittest/signals.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/unittest
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/unittest/suite.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/unittest
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/unittest/util.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/unittest
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/urllib/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/urllib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/urllib/error.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/urllib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/urllib/parse.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/urllib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/urllib/request.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/urllib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/urllib/response.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/urllib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/urllib/robotparser.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/urllib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/venv/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/venv
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/venv/__main__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/venv
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/venv/scripts/common/Activate.ps1 /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/venv/scripts/common
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/venv/scripts/common/activate /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/venv/scripts/common
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/venv/scripts/posix/activate.csh /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/venv/scripts/posix
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/venv/scripts/posix/activate.fish /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/venv/scripts/posix
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/wsgiref/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/wsgiref
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/wsgiref/handlers.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/wsgiref
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/wsgiref/headers.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/wsgiref
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/wsgiref/simple_server.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/wsgiref
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/wsgiref/types.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/wsgiref
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/wsgiref/util.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/wsgiref
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/wsgiref/validate.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/wsgiref
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/xml/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/xml
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/xml/dom/NodeFilter.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/xml/dom
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/xml/dom/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/xml/dom
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/xml/dom/domreg.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/xml/dom
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/xml/dom/expatbuilder.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/xml/dom
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/xml/dom/minicompat.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/xml/dom
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/xml/dom/minidom.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/xml/dom
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/xml/dom/pulldom.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/xml/dom
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/xml/dom/xmlbuilder.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/xml/dom
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/xml/etree/ElementInclude.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/xml/etree
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/xml/etree/ElementPath.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/xml/etree
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/xml/etree/ElementTree.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/xml/etree
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/xml/etree/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/xml/etree
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/xml/etree/cElementTree.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/xml/etree
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/xml/parsers/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/xml/parsers
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/xml/parsers/expat.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/xml/parsers
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/xml/sax/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/xml/sax
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/xml/sax/_exceptions.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/xml/sax
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/xml/sax/expatreader.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/xml/sax
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/xml/sax/handler.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/xml/sax
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/xml/sax/saxutils.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/xml/sax
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/xml/sax/xmlreader.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/xml/sax
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/xmlrpc/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/xmlrpc
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/xmlrpc/client.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/xmlrpc
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/xmlrpc/server.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/xmlrpc
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/zipfile/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/zipfile
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/zipfile/__main__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/zipfile
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/zipfile/_path/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/zipfile/_path
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/zipfile/_path/glob.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/zipfile/_path
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/zoneinfo/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/zoneinfo
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/zoneinfo/_common.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/zoneinfo
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/zoneinfo/_tzpath.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/zoneinfo
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/zoneinfo/_zoneinfo.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/zoneinfo
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/__phello__/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/__phello__
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/__phello__/spam.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/__phello__
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle_test/README.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle_test/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle_test/example_noext /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle_test/example_stub.pyi /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle_test/htest.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle_test/mock_idle.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle_test/mock_tk.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle_test/template.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle_test/test_autocomplete.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle_test/test_autocomplete_w.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle_test/test_autoexpand.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle_test/test_browser.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle_test/test_calltip.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle_test/test_calltip_w.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle_test/test_codecontext.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle_test/test_colorizer.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle_test/test_config.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle_test/test_config_key.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle_test/test_configdialog.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle_test/test_debugger.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle_test/test_debugger_r.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle_test/test_debugobj.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle_test/test_debugobj_r.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle_test/test_delegator.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle_test/test_editmenu.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle_test/test_editor.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle_test/test_filelist.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle_test/test_format.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle_test/test_grep.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle_test/test_help.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle_test/test_help_about.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle_test/test_history.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle_test/test_hyperparser.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle_test/test_iomenu.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle_test/test_macosx.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle_test/test_mainmenu.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle_test/test_multicall.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle_test/test_outwin.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle_test/test_parenmatch.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle_test/test_pathbrowser.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle_test/test_percolator.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle_test/test_pyparse.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle_test/test_pyshell.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle_test/test_query.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle_test/test_redirector.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle_test/test_replace.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle_test/test_rpc.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle_test/test_run.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle_test/test_runscript.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle_test/test_scrolledlist.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle_test/test_search.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle_test/test_searchbase.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle_test/test_searchengine.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle_test/test_sidebar.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle_test/test_squeezer.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle_test/test_stackviewer.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle_test/test_statusbar.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle_test/test_text.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle_test/test_textview.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle_test/test_tooltip.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle_test/test_tree.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle_test/test_undo.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle_test/test_util.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle_test/test_warning.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle_test/test_window.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle_test/test_zoomheight.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle_test/test_zzdummy.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/idlelib/idle_test/tkinter_testing_utils.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/Sine-1000Hz-300ms.aif /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/__main__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/_test_atexit.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/_test_eintr.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/_test_embed_set_config.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/_test_embed_structseq.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/_test_multiprocessing.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/_test_venv_multiprocessing.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/_typed_dict_helper.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/allsans.pem /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/ann_module.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/ann_module2.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/ann_module3.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/ann_module4.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/ann_module5.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/ann_module6.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/ann_module7.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/ann_module8.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/audiotest.au /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/audiotests.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/audit-tests.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/autotest.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/bad_coding.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/bad_coding2.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/badcert.pem /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/badkey.pem /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/badsyntax_3131.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/badsyntax_future10.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/badsyntax_future3.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/badsyntax_future4.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/badsyntax_future5.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/badsyntax_future6.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/badsyntax_future7.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/badsyntax_future8.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/badsyntax_future9.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/badsyntax_pep3120.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c /bb.download/source/Python-3.12.0/Lib/test/bisect_cmd.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/cfgparser.1 /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/cfgparser.2 /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/cfgparser.3 /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/clinic.test.c /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/cmath_testcases.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/coding20731.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c /bb.download/source/Python-3.12.0/Lib/test/curses_tests.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/dataclass_module_1.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/dataclass_module_1_str.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/dataclass_module_2.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/dataclass_module_2_str.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/dataclass_textanno.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/datetimetester.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/dis_module.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/doctest_aliases.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/doctest_lineno.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/double_const.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/empty.vbs /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/exception_hierarchy.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/ffdh3072.pem /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/final_a.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/final_b.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/floating_points.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/fork_wait.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/formatfloat_testcases.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/future_test1.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/future_test2.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/gdb_sample.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/idnsans.pem /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/ieee754.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/imp_dummy.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/inspect_fodder.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/inspect_fodder2.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/inspect_stock_annotations.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/inspect_stringized_annotations.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/inspect_stringized_annotations_2.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/keycert.passwd.pem /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/keycert.pem /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/keycert2.pem /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/keycert3.pem /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/keycert4.pem /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/keycertecc.pem /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/levenshtein_examples.json /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/list_tests.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/lock_tests.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/mailcap.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/make_ssl_certs.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/mapping_tests.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/math_testcases.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/memory_watchdog.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/mime.types /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/mock_socket.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/mod_generics_cache.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/mp_fork_bomb.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/mp_preload.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/multibytecodec_support.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/nokia.pem /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/nosan.pem /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/nullbytecert.pem /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/nullcert.pem /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/pickletester.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/profilee.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/pstats.pck /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/pycacert.pem /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/pycakey.pem /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/pyclbr_input.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/pydoc_mod.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/pydocfodder.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/pythoninfo.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/randv2_32.pck /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/randv2_64.pck /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/randv3.pck /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c /bb.download/source/Python-3.12.0/Lib/test/re_tests.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/recursion.tar /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c /bb.download/source/Python-3.12.0/Lib/test/regrtest.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/relimport.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/reperf.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/revocation.crl /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/sample_doctest.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/sample_doctest_no_docstrings.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/sample_doctest_no_doctests.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/secp384r1.pem /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/selfsigned_pythontestdotnet.pem /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/seq_tests.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/setuptools-67.6.1-py3-none-any.whl /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/sgml_input.html /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/shadowed_super.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/signalinterproctester.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c /bb.download/source/Python-3.12.0/Lib/test/smtpd.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/sortperf.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/ssl_cert.pem /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/ssl_key.passwd.pem /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/ssl_key.pem /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/ssl_servers.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/ssltests.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/string_tests.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/talos-2019-0758.pem /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test___all__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test___future__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test__locale.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test__opcode.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test__osx_support.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test__xxinterpchannels.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test__xxsubinterpreters.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_abc.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_abstract_numbers.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_aifc.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_argparse.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c /bb.download/source/Python-3.12.0/Lib/test/test_array.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_asdl_parser.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ast.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_asyncgen.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_atexit.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_audioop.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_audit.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_augassign.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_base64.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_baseexception.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_bdb.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_bigaddrspace.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_bigmem.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_binascii.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_binop.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_bisect.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_bool.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_buffer.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_bufio.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_builtin.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_bytes.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_bz2.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_c_locale_coercion.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_calendar.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_call.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_cgi.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_cgitb.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_charmapcodec.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_class.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_clinic.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_cmath.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_cmd.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_cmd_line.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_cmd_line_script.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_code.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_code_module.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_codeccallbacks.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_codecencodings_cn.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_codecencodings_hk.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_codecencodings_iso2022.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_codecencodings_jp.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_codecencodings_kr.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_codecencodings_tw.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_codecmaps_cn.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_codecmaps_hk.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_codecmaps_jp.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_codecmaps_kr.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_codecmaps_tw.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_codecs.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_codeop.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_collections.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_colorsys.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_compare.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_compile.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_compileall.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_compiler_assemble.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_compiler_codegen.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_complex.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_configparser.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_contains.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_context.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_contextlib.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_contextlib_async.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_copy.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_copyreg.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_coroutines.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_cprofile.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_crashers.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_crypt.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_csv.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_curses.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_dataclasses.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_datetime.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_dbm.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_dbm_dumb.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_dbm_gnu.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_dbm_ndbm.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_decimal.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_decorators.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_defaultdict.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_deque.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_descr.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_descrtut.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_devpoll.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_dict.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_dict_version.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_dictcomps.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_dictviews.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_difflib.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_difflib_expect.html /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_dis.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_doctest.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_doctest.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_doctest2.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_doctest2.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_doctest3.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_doctest4.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_docxmlrpc.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_dtrace.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_dynamic.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_dynamicclassattribute.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_eintr.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_embed.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ensurepip.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_enum.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_enumerate.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_eof.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_epoll.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_errno.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_except_star.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_exception_group.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_exception_hierarchy.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_exception_variations.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_exceptions.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_extcall.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_faulthandler.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_fcntl.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_file.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_file_eintr.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_filecmp.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_fileinput.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_fileio.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_fileutils.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_finalization.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_float.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_flufl.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_fnmatch.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_fork1.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_format.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_fractions.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_frame.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_frozen.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_fstring.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ftplib.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_funcattrs.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_functools.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_future.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_future3.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_future4.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_future5.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_gc.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_gdb.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_generator_stop.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_generators.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_genericalias.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_genericclass.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_genericpath.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_genexps.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_getopt.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_getpass.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_getpath.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_gettext.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_glob.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_global.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_grammar.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_graphlib.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_grp.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_gzip.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_hash.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_hashlib.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_heapq.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_hmac.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_html.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_htmlparser.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_http_cookiejar.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_http_cookies.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_httplib.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_httpservers.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_idle.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_imaplib.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_imghdr.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_index.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_inspect.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_int.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_int_literal.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_interpreters.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_io.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ioctl.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ipaddress.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_isinstance.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_iter.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_iterlen.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_itertools.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_keyword.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_keywordonlyarg.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_kqueue.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_largefile.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_launcher.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_linecache.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_list.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_listcomps.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_lltrace.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_locale.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_logging.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_long.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_longexp.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_lzma.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_mailbox.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_mailcap.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_marshal.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_math.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_math_property.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_memoryio.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_memoryview.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_metaclass.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_mimetypes.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_minidom.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_mmap.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_modulefinder.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_monitoring.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_msilib.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_multibytecodec.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_multiprocessing_main_handling.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_named_expressions.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_netrc.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_nis.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_nntplib.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ntpath.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_numeric_tower.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_opcache.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_opcodes.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_openpty.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_operator.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_optparse.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ordered_dict.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_os.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ossaudiodev.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_osx_env.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_pathlib.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_patma.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_pdb.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_peepholer.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_pep646_syntax.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_perf_profiler.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_perfmaps.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_pickle.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_picklebuffer.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_pickletools.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_pipes.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_pkg.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_pkgutil.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_platform.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_plistlib.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_poll.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_popen.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_poplib.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_positional_only_arg.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_posix.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_posixpath.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_pow.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_pprint.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_print.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_profile.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_property.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_pstats.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_pty.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_pulldom.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_pwd.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_py_compile.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_pyclbr.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_pydoc.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_pyexpat.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_queue.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_quopri.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_raise.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_random.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_range.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_re.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_readline.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_regrtest.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_repl.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_reprlib.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_resource.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_richcmp.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_rlcompleter.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_robotparser.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_runpy.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_sax.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_sched.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_scope.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_script_helper.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_secrets.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_select.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_selectors.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_set.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_setcomps.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_shelve.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_shlex.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_shutil.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_signal.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_site.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_slice.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_smtplib.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_smtpnet.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_sndhdr.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_socket.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_socketserver.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_sort.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_source_encoding.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_spwd.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ssl.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_stable_abi_ctypes.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_startfile.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_stat.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_statistics.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_strftime.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_string.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_string_literals.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_stringprep.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_strptime.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_strtod.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_struct.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_structseq.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_subclassinit.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_subprocess.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_sunau.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_sundry.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_super.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_support.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_symtable.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_syntax.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_sys.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_sys_setprofile.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_sys_settrace.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_sysconfig.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_syslog.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tabnanny.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tarfile.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tcl.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_telnetlib.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tempfile.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_textwrap.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_thread.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_threadedtempfile.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_threading.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_threading_local.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_threadsignals.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_time.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_timeit.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_timeout.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tix.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tokenize.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_trace.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_traceback.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tracemalloc.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ttk_textonly.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tuple.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_turtle.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_type_aliases.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_type_annotations.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_type_cache.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_type_comments.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_type_params.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_typechecks.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_types.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_typing.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ucn.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_unary.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_unicode.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_unicode_file.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_unicode_file_functions.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_unicode_identifiers.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_unicodedata.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_univnewlines.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_unpack.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_unpack_ex.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_unparse.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_urllib.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_urllib2.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_urllib2_localnet.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_urllib2net.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_urllib_response.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_urllibnet.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_urlparse.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_userdict.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_userlist.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_userstring.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_utf8_mode.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_utf8source.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_uu.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c /bb.download/source/Python-3.12.0/Lib/test/test_uuid.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_venv.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_wait3.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_wait4.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_wave.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_weakref.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_weakset.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_webbrowser.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_winconsoleio.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_winreg.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_winsound.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_with.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_wmi.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_wsgiref.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_xdrlib.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_xml_dom_minicompat.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_xml_etree.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_xml_etree_c.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_xmlrpc.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_xmlrpc_net.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_xxlimited.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_xxtestfuzz.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_yield_from.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_zipapp.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_zipfile64.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_zipimport.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_zipimport_support.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_zlib.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/testcodec.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/testtar.tar /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/testtar.tar.xz /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/tf_inherit_check.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/time_hashlib.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/tokenize_tests-latin1-coding-cookie-and-utf8-bom-sig.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/tokenize_tests-no-coding-cookie-and-utf8-bom-sig-only.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/tokenize_tests-utf8-coding-cookie-and-no-utf8-bom-sig.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/tokenize_tests-utf8-coding-cookie-and-utf8-bom-sig.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/tokenize_tests.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/wheel-0.40.0-py3-none-any.whl /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/win_console_handler.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/xmltests.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/zip_cp437_header.zip /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/zipdir.zip /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/audiodata/pluck-alaw.aifc /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/audiodata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/audiodata/pluck-pcm16.aiff /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/audiodata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/audiodata/pluck-pcm16.au /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/audiodata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/audiodata/pluck-pcm16.wav /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/audiodata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/audiodata/pluck-pcm24-ext.wav /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/audiodata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/audiodata/pluck-pcm24.aiff /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/audiodata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/audiodata/pluck-pcm24.au /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/audiodata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/audiodata/pluck-pcm24.wav /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/audiodata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/audiodata/pluck-pcm32.aiff /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/audiodata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/audiodata/pluck-pcm32.au /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/audiodata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/audiodata/pluck-pcm32.wav /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/audiodata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/audiodata/pluck-pcm8.aiff /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/audiodata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/audiodata/pluck-pcm8.au /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/audiodata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/audiodata/pluck-pcm8.wav /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/audiodata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/audiodata/pluck-ulaw.aifc /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/audiodata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/audiodata/pluck-ulaw.au /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/audiodata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/capath/4e1295a3.0 /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/capath
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/capath/5ed36f99.0 /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/capath
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/capath/6e88d7b8.0 /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/capath
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/capath/99d0fa06.0 /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/capath
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/capath/b1930218.0 /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/capath
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/capath/ceff1710.0 /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/capath
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/cjkencodings/big5-utf8.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/cjkencodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/cjkencodings/big5.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/cjkencodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/cjkencodings/big5hkscs-utf8.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/cjkencodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/cjkencodings/big5hkscs.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/cjkencodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/cjkencodings/cp949-utf8.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/cjkencodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/cjkencodings/cp949.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/cjkencodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/cjkencodings/euc_jisx0213-utf8.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/cjkencodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/cjkencodings/euc_jisx0213.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/cjkencodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/cjkencodings/euc_jp-utf8.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/cjkencodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/cjkencodings/euc_jp.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/cjkencodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/cjkencodings/euc_kr-utf8.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/cjkencodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/cjkencodings/euc_kr.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/cjkencodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/cjkencodings/gb18030-utf8.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/cjkencodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/cjkencodings/gb18030.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/cjkencodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/cjkencodings/gb2312-utf8.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/cjkencodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/cjkencodings/gb2312.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/cjkencodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/cjkencodings/gbk-utf8.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/cjkencodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/cjkencodings/gbk.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/cjkencodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/cjkencodings/hz-utf8.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/cjkencodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/cjkencodings/hz.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/cjkencodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/cjkencodings/iso2022_jp-utf8.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/cjkencodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/cjkencodings/iso2022_jp.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/cjkencodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/cjkencodings/iso2022_kr-utf8.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/cjkencodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/cjkencodings/iso2022_kr.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/cjkencodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/cjkencodings/johab-utf8.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/cjkencodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/cjkencodings/johab.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/cjkencodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/cjkencodings/shift_jis-utf8.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/cjkencodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/cjkencodings/shift_jis.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/cjkencodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/cjkencodings/shift_jisx0213-utf8.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/cjkencodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/cjkencodings/shift_jisx0213.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/cjkencodings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/crashers/README /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/crashers
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/crashers/bogus_code_obj.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/crashers
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/crashers/gc_inspection.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/crashers
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/crashers/infinite_loop_re.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/crashers
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/crashers/mutation_inside_cyclegc.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/crashers
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c /bb.download/source/Python-3.12.0/Lib/test/crashers/recursive_call.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/crashers
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/crashers/trace_at_recursion_limit.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/crashers
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/crashers/underlying_dict.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/crashers
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/data/README /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/abs.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/add.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/and.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/base.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/clamp.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/class.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/compare.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/comparetotal.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/comparetotmag.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/copy.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/copyabs.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/copynegate.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/copysign.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/ddAbs.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/ddAdd.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/ddAnd.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/ddBase.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/ddCanonical.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/ddClass.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/ddCompare.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/ddCompareSig.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/ddCompareTotal.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/ddCompareTotalMag.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/ddCopy.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/ddCopyAbs.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/ddCopyNegate.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/ddCopySign.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/ddDivide.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/ddDivideInt.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/ddEncode.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/ddFMA.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/ddInvert.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/ddLogB.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/ddMax.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/ddMaxMag.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/ddMin.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/ddMinMag.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/ddMinus.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/ddMultiply.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/ddNextMinus.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/ddNextPlus.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/ddNextToward.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/ddOr.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/ddPlus.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/ddQuantize.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/ddReduce.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/ddRemainder.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/ddRemainderNear.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/ddRotate.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/ddSameQuantum.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/ddScaleB.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/ddShift.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/ddSubtract.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/ddToIntegral.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/ddXor.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/decDouble.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/decQuad.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/decSingle.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/divide.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/divideint.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/dqAbs.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/dqAdd.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/dqAnd.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/dqBase.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/dqCanonical.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/dqClass.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/dqCompare.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/dqCompareSig.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/dqCompareTotal.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/dqCompareTotalMag.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/dqCopy.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/dqCopyAbs.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/dqCopyNegate.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/dqCopySign.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/dqDivide.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/dqDivideInt.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/dqEncode.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/dqFMA.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/dqInvert.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/dqLogB.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/dqMax.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/dqMaxMag.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/dqMin.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/dqMinMag.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/dqMinus.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/dqMultiply.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/dqNextMinus.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/dqNextPlus.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/dqNextToward.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/dqOr.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/dqPlus.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/dqQuantize.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/dqReduce.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/dqRemainder.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/dqRemainderNear.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/dqRotate.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/dqSameQuantum.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/dqScaleB.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/dqShift.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/dqSubtract.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/dqToIntegral.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/dqXor.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/dsBase.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/dsEncode.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/exp.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/extra.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/fma.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/inexact.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/invert.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/ln.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/log10.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/logb.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/max.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/maxmag.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/min.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/minmag.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/minus.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/multiply.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/nextminus.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/nextplus.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/nexttoward.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/or.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/plus.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/power.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/powersqrt.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/quantize.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/randomBound32.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/randoms.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/reduce.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/remainder.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/remainderNear.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/rescale.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/rotate.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/rounding.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/samequantum.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/scaleb.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/shift.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/squareroot.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/subtract.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/testall.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/tointegral.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/tointegralx.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/decimaltestdata/xor.decTest /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/dtracedata/assert_usable.d /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/dtracedata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/dtracedata/assert_usable.stp /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/dtracedata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/dtracedata/call_stack.d /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/dtracedata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/dtracedata/call_stack.d.expected /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/dtracedata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/dtracedata/call_stack.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/dtracedata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/dtracedata/call_stack.stp /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/dtracedata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/dtracedata/call_stack.stp.expected /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/dtracedata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/dtracedata/gc.d /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/dtracedata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/dtracedata/gc.d.expected /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/dtracedata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/dtracedata/gc.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/dtracedata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/dtracedata/gc.stp /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/dtracedata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/dtracedata/gc.stp.expected /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/dtracedata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/dtracedata/instance.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/dtracedata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/dtracedata/line.d /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/dtracedata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/dtracedata/line.d.expected /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/dtracedata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/dtracedata/line.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/dtracedata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/encoded_modules/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/encoded_modules
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/encoded_modules/module_iso_8859_1.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/encoded_modules
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/encoded_modules/module_koi8_r.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/encoded_modules
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/imghdrdata/python-raw.jpg /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/imghdrdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/imghdrdata/python.bmp /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/imghdrdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/imghdrdata/python.exr /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/imghdrdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/imghdrdata/python.gif /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/imghdrdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/imghdrdata/python.jpg /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/imghdrdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/imghdrdata/python.pbm /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/imghdrdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/imghdrdata/python.pgm /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/imghdrdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/imghdrdata/python.png /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/imghdrdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/imghdrdata/python.ppm /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/imghdrdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/imghdrdata/python.ras /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/imghdrdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/imghdrdata/python.sgi /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/imghdrdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/imghdrdata/python.tiff /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/imghdrdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/imghdrdata/python.webp /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/imghdrdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/imghdrdata/python.xbm /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/imghdrdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/leakers/README.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/leakers
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/leakers/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/leakers
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/leakers/test_ctypes.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/leakers
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/leakers/test_selftype.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/leakers
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/libregrtest/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/libregrtest
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/libregrtest/cmdline.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/libregrtest
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/libregrtest/main.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/libregrtest
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/libregrtest/pgo.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/libregrtest
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/libregrtest/refleak.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/libregrtest
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/libregrtest/runtest.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/libregrtest
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/libregrtest/runtest_mp.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/libregrtest
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/libregrtest/save_env.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/libregrtest
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/libregrtest/setup.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/libregrtest
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/libregrtest/utils.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/libregrtest
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/libregrtest/win_utils.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/libregrtest
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/sndhdrdata/README /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/sndhdrdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/sndhdrdata/sndhdr.8svx /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/sndhdrdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/sndhdrdata/sndhdr.aifc /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/sndhdrdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/sndhdrdata/sndhdr.aiff /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/sndhdrdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/sndhdrdata/sndhdr.au /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/sndhdrdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/sndhdrdata/sndhdr.hcom /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/sndhdrdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/sndhdrdata/sndhdr.sndt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/sndhdrdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/sndhdrdata/sndhdr.voc /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/sndhdrdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/sndhdrdata/sndhdr.wav /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/sndhdrdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/subprocessdata/fd_status.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/subprocessdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/subprocessdata/input_reader.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/subprocessdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/subprocessdata/qcat.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/subprocessdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/subprocessdata/qgrep.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/subprocessdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/subprocessdata/sigchild_ignore.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/subprocessdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/support/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/support
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/support/ast_helper.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/support
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/support/asynchat.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/support
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/support/asyncore.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/support
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/support/bytecode_helper.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/support
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/support/hashlib_helper.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/support
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/support/hypothesis_helper.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/support
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/support/import_helper.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/support
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/support/interpreters.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/support
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/support/logging_helper.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/support
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/support/os_helper.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/support
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/support/script_helper.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/support
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/support/socket_helper.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/support
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/support/testcase.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/support
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/support/testresult.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/support
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/support/threading_helper.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/support
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/support/warnings_helper.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/support
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/support/_hypothesis_stubs/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/support/_hypothesis_stubs
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/support/_hypothesis_stubs/_helpers.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/support/_hypothesis_stubs
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/support/_hypothesis_stubs/strategies.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/support/_hypothesis_stubs
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_asyncio/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_asyncio/__main__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_asyncio/echo.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_asyncio/echo2.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_asyncio/echo3.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_asyncio/functional.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_asyncio/test_base_events.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_asyncio/test_buffered_proto.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_asyncio/test_context.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_asyncio/test_eager_task_factory.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_asyncio/test_events.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_asyncio/test_futures.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_asyncio/test_futures2.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_asyncio/test_locks.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_asyncio/test_pep492.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_asyncio/test_proactor_events.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_asyncio/test_protocols.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_asyncio/test_queues.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_asyncio/test_runners.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_asyncio/test_selector_events.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_asyncio/test_sendfile.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_asyncio/test_server.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_asyncio/test_sock_lowlevel.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_asyncio/test_ssl.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_asyncio/test_sslproto.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_asyncio/test_streams.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_asyncio/test_subprocess.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_asyncio/test_taskgroups.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_asyncio/test_tasks.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_asyncio/test_threads.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_asyncio/test_timeouts.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_asyncio/test_transports.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_asyncio/test_unix_events.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_asyncio/test_waitfor.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_asyncio/test_windows_events.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_asyncio/test_windows_utils.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_asyncio/utils.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_capi/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_capi
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_capi/__main__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_capi
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_capi/check_config.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_capi
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_capi/test_abstract.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_capi
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_capi/test_codecs.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_capi
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_capi/test_dict.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_capi
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_capi/test_eval_code_ex.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_capi
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_capi/test_exceptions.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_capi
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_capi/test_getargs.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_capi
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_capi/test_immortal.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_capi
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_capi/test_long.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_capi
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_capi/test_mem.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_capi
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_capi/test_misc.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_capi
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_capi/test_structmembers.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_capi
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_capi/test_unicode.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_capi
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_capi/test_watchers.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_capi
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_cppext/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_cppext
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_cppext/extension.cpp /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_cppext
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_cppext/setup.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_cppext
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ctypes/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ctypes/__main__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ctypes/test_anon.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ctypes/test_array_in_pointer.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ctypes/test_arrays.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ctypes/test_as_parameter.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ctypes/test_bitfields.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ctypes/test_buffers.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ctypes/test_bytes.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ctypes/test_byteswap.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ctypes/test_callbacks.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ctypes/test_cast.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ctypes/test_cfuncs.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ctypes/test_checkretval.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ctypes/test_delattr.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ctypes/test_errno.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ctypes/test_find.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ctypes/test_frombuffer.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ctypes/test_funcptr.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ctypes/test_functions.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ctypes/test_incomplete.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ctypes/test_init.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ctypes/test_internals.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ctypes/test_keeprefs.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ctypes/test_libc.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ctypes/test_loading.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ctypes/test_macholib.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ctypes/test_memfunctions.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ctypes/test_numbers.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ctypes/test_objects.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ctypes/test_parameters.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ctypes/test_pep3118.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ctypes/test_pickling.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ctypes/test_pointers.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ctypes/test_prototypes.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ctypes/test_python_api.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ctypes/test_random_things.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ctypes/test_refcounts.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ctypes/test_repr.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ctypes/test_returnfuncptrs.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ctypes/test_simplesubclasses.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ctypes/test_sizes.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ctypes/test_slicing.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ctypes/test_stringptr.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ctypes/test_strings.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ctypes/test_struct_fields.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ctypes/test_structures.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ctypes/test_unaligned_structures.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ctypes/test_unicode.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ctypes/test_values.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ctypes/test_varsize_struct.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ctypes/test_win32.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ctypes/test_wintypes.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/__main__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/test__encoded_words.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/test__header_value_parser.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/test_asian_codecs.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/test_contentmanager.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/test_defect_handling.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/test_email.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/test_generator.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/test_headerregistry.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/test_inversion.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/test_message.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/test_parser.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/test_pickleable.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/test_policy.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/test_utils.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/torture_test.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/data/msg_01.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/data/msg_02.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/data/msg_03.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/data/msg_04.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/data/msg_05.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/data/msg_06.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/data/msg_07.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/data/msg_08.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/data/msg_09.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/data/msg_10.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/data/msg_11.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/data/msg_12.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/data/msg_12a.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/data/msg_13.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/data/msg_14.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/data/msg_15.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/data/msg_16.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/data/msg_17.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/data/msg_18.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/data/msg_19.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/data/msg_20.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/data/msg_21.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/data/msg_22.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/data/msg_23.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/data/msg_24.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/data/msg_25.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/data/msg_26.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/data/msg_27.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/data/msg_28.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/data/msg_29.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/data/msg_30.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/data/msg_31.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/data/msg_32.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/data/msg_33.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/data/msg_34.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/data/msg_35.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/data/msg_36.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/data/msg_37.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/data/msg_38.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/data/msg_39.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/data/msg_40.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/data/msg_41.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/data/msg_42.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/data/msg_43.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/data/msg_44.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/data/msg_45.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/data/msg_46.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/data/msg_47.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/data/python.bmp /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/data/python.exr /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/data/python.gif /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/data/python.jpg /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/data/python.pbm /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/data/python.pgm /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/data/python.png /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/data/python.ppm /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/data/python.ras /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/data/python.sgi /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/data/python.tiff /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/data/python.webp /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/data/python.xbm /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/data/sndhdr.aifc /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/data/sndhdr.aiff /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/data/sndhdr.au /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_email/data/sndhdr.wav /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_import/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_import/__main__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_import/data/circular_imports/basic.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import/data/circular_imports
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_import/data/circular_imports/basic2.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import/data/circular_imports
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_import/data/circular_imports/binding.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import/data/circular_imports
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_import/data/circular_imports/binding2.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import/data/circular_imports
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_import/data/circular_imports/from_cycle1.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import/data/circular_imports
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_import/data/circular_imports/from_cycle2.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import/data/circular_imports
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_import/data/circular_imports/indirect.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import/data/circular_imports
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_import/data/circular_imports/rebinding.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import/data/circular_imports
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_import/data/circular_imports/rebinding2.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import/data/circular_imports
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_import/data/circular_imports/source.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import/data/circular_imports
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_import/data/circular_imports/subpackage.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import/data/circular_imports
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_import/data/circular_imports/use.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import/data/circular_imports
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_import/data/circular_imports/util.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import/data/circular_imports
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_import/data/circular_imports/subpkg/subpackage2.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import/data/circular_imports/subpkg
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_import/data/circular_imports/subpkg/util.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import/data/circular_imports/subpkg
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_import/data/circular_imports/subpkg2/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import/data/circular_imports/subpkg2
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_import/data/circular_imports/subpkg2/parent/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import/data/circular_imports/subpkg2/parent
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_import/data/circular_imports/subpkg2/parent/child.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import/data/circular_imports/subpkg2/parent
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_import/data/package/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import/data/package
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_import/data/package/submodule.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import/data/package
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_import/data/package2/submodule1.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import/data/package2
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_import/data/package2/submodule2.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import/data/package2
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_import/data/unwritable/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import/data/unwritable
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_import/data/unwritable/x.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import/data/unwritable
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/__main__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/_context.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/_path.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/abc.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/fixtures.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/stubs.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/test_abc.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/test_api.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/test_lazy.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/test_locks.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/test_main.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/test_metadata_api.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/test_namespace_pkgs.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/test_pkg_import.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/test_spec.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/test_threaded_import.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/test_util.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/test_windows.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/test_zip.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/threaded_import_hangers.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/util.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/builtin/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/builtin
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/builtin/__main__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/builtin
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/builtin/test_finder.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/builtin
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/builtin/test_loader.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/builtin
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/data/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/data/example-21.12-py3-none-any.whl /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/data/example-21.12-py3.6.egg /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/data/example2-1.0.0-py3-none-any.whl /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/extension/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/extension
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/extension/__main__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/extension
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/extension/test_case_sensitivity.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/extension
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/extension/test_finder.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/extension
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/extension/test_loader.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/extension
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/extension/test_path_hook.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/extension
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/frozen/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/frozen
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/frozen/__main__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/frozen
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/frozen/test_finder.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/frozen
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/frozen/test_loader.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/frozen
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/import_/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/import_
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/import_/__main__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/import_
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/import_/test___loader__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/import_
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/import_/test___package__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/import_
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/import_/test_api.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/import_
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/import_/test_caching.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/import_
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/import_/test_fromlist.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/import_
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/import_/test_helpers.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/import_
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/import_/test_meta_path.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/import_
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/import_/test_packages.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/import_
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/import_/test_path.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/import_
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/import_/test_relative_imports.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/import_
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/namespace_pkgs/missing_directory.zip /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/namespace_pkgs
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/namespace_pkgs/nested_portion1.zip /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/namespace_pkgs
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/namespace_pkgs/top_level_portion1.zip /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/namespace_pkgs
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/namespace_pkgs/both_portions/foo/one.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/namespace_pkgs/both_portions/foo
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/namespace_pkgs/both_portions/foo/two.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/namespace_pkgs/both_portions/foo
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/namespace_pkgs/module_and_namespace_package/a_test.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/namespace_pkgs/module_and_namespace_package
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/namespace_pkgs/module_and_namespace_package/a_test/empty /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/namespace_pkgs/module_and_namespace_package/a_test
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/namespace_pkgs/not_a_namespace_pkg/foo/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/namespace_pkgs/not_a_namespace_pkg/foo
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/namespace_pkgs/not_a_namespace_pkg/foo/one.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/namespace_pkgs/not_a_namespace_pkg/foo
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/namespace_pkgs/portion1/foo/one.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/namespace_pkgs/portion1/foo
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/namespace_pkgs/portion2/foo/two.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/namespace_pkgs/portion2/foo
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/namespace_pkgs/project1/parent/child/one.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/namespace_pkgs/project1/parent/child
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/namespace_pkgs/project2/parent/child/two.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/namespace_pkgs/project2/parent/child
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/namespace_pkgs/project3/parent/child/three.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/namespace_pkgs/project3/parent/child
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/partial/cfimport.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/partial
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/partial/pool_in_threads.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/partial
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/resources/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/resources/_path.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/resources/test_compatibilty_files.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/resources/test_contents.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/resources/test_custom.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/resources/test_files.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/resources/test_open.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/resources/test_path.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/resources/test_read.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/resources/test_reader.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/resources/test_resource.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c /bb.download/source/Python-3.12.0/Lib/test/test_importlib/resources/update-zips.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/resources/util.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/resources/data01/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/data01
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/resources/data01/binary.file /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/data01
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/resources/data01/utf-16.file /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/data01
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/resources/data01/utf-8.file /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/data01
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/resources/data01/subdirectory/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/data01/subdirectory
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/resources/data01/subdirectory/binary.file /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/data01/subdirectory
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/resources/data02/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/data02
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/resources/data02/one/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/data02/one
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/resources/data02/one/resource1.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/data02/one
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/resources/data02/subdirectory/subsubdir/resource.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/data02/subdirectory/subsubdir
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/resources/data02/two/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/data02/two
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/resources/data02/two/resource2.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/data02/two
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/resources/data03/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/data03
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/resources/data03/namespace/resource1.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/data03/namespace
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/resources/data03/namespace/portion1/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/data03/namespace/portion1
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/resources/data03/namespace/portion2/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/data03/namespace/portion2
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/resources/namespacedata01/binary.file /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/namespacedata01
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/resources/namespacedata01/utf-16.file /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/namespacedata01
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/resources/namespacedata01/utf-8.file /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/namespacedata01
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/resources/zipdata01/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/zipdata01
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/resources/zipdata01/ziptestdata.zip /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/zipdata01
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/resources/zipdata02/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/zipdata02
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/resources/zipdata02/ziptestdata.zip /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/zipdata02
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/source/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/source
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/source/__main__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/source
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/source/test_case_sensitivity.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/source
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/source/test_file_loader.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/source
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/source/test_finder.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/source
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/source/test_path_hook.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/source
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_importlib/source/test_source_encoding.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/source
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_json/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_json
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_json/__main__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_json
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_json/test_decode.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_json
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_json/test_default.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_json
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_json/test_dump.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_json
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_json/test_encode_basestring_ascii.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_json
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_json/test_enum.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_json
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_json/test_fail.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_json
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_json/test_float.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_json
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_json/test_indent.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_json
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_json/test_pass1.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_json
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_json/test_pass2.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_json
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_json/test_pass3.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_json
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_json/test_recursion.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_json
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_json/test_scanstring.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_json
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_json/test_separators.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_json
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_json/test_speedups.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_json
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_json/test_tool.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_json
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_json/test_unicode.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_json
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_lib2to3/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_lib2to3
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_lib2to3/__main__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_lib2to3
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c /bb.download/source/Python-3.12.0/Lib/test/test_lib2to3/pytree_idempotency.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_lib2to3
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_lib2to3/support.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_lib2to3
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_lib2to3/test_all_fixers.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_lib2to3
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_lib2to3/test_fixers.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_lib2to3
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_lib2to3/test_main.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_lib2to3
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_lib2to3/test_parser.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_lib2to3
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_lib2to3/test_pytree.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_lib2to3
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_lib2to3/test_refactor.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_lib2to3
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_lib2to3/test_util.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_lib2to3
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_lib2to3/data/README /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_lib2to3/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_lib2to3/data/bom.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_lib2to3/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_lib2to3/data/crlf.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_lib2to3/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c /bb.download/source/Python-3.12.0/Lib/test/test_lib2to3/data/different_encoding.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_lib2to3/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c /bb.download/source/Python-3.12.0/Lib/test/test_lib2to3/data/false_encoding.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_lib2to3/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_lib2to3/data/infinite_recursion.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_lib2to3/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_lib2to3/data/py2_test_grammar.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_lib2to3/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_lib2to3/data/py3_test_grammar.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_lib2to3/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_lib2to3/data/fixers/bad_order.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_lib2to3/data/fixers
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_lib2to3/data/fixers/no_fixer_cls.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_lib2to3/data/fixers
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_lib2to3/data/fixers/parrot_example.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_lib2to3/data/fixers
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_lib2to3/data/fixers/myfixes/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_lib2to3/data/fixers/myfixes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_lib2to3/data/fixers/myfixes/fix_explicit.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_lib2to3/data/fixers/myfixes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_lib2to3/data/fixers/myfixes/fix_first.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_lib2to3/data/fixers/myfixes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_lib2to3/data/fixers/myfixes/fix_last.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_lib2to3/data/fixers/myfixes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_lib2to3/data/fixers/myfixes/fix_parrot.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_lib2to3/data/fixers/myfixes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_lib2to3/data/fixers/myfixes/fix_preorder.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_lib2to3/data/fixers/myfixes
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_module/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_module
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_module/bad_getattr.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_module
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_module/bad_getattr2.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_module
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_module/bad_getattr3.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_module
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_module/good_getattr.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_module
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_peg_generator/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_peg_generator
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_peg_generator/__main__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_peg_generator
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_peg_generator/test_c_parser.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_peg_generator
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_peg_generator/test_first_sets.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_peg_generator
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_peg_generator/test_grammar_validator.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_peg_generator
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_peg_generator/test_pegen.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_peg_generator
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_sqlite3/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_sqlite3
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_sqlite3/__main__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_sqlite3
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_sqlite3/test_backup.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_sqlite3
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_sqlite3/test_cli.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_sqlite3
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_sqlite3/test_dbapi.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_sqlite3
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_sqlite3/test_dump.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_sqlite3
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_sqlite3/test_factory.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_sqlite3
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_sqlite3/test_hooks.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_sqlite3
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_sqlite3/test_regression.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_sqlite3
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_sqlite3/test_transactions.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_sqlite3
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_sqlite3/test_types.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_sqlite3
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_sqlite3/test_userfunctions.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_sqlite3
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tkinter/README /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tkinter
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tkinter/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tkinter
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tkinter/__main__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tkinter
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tkinter/support.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tkinter
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tkinter/test_colorchooser.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tkinter
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tkinter/test_font.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tkinter
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tkinter/test_geometry_managers.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tkinter
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tkinter/test_images.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tkinter
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tkinter/test_loadtk.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tkinter
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tkinter/test_messagebox.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tkinter
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tkinter/test_misc.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tkinter
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tkinter/test_simpledialog.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tkinter
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tkinter/test_text.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tkinter
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tkinter/test_variables.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tkinter
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tkinter/test_widgets.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tkinter
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tkinter/widget_tests.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tkinter
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/__main__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/burntsushi.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/test_data.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/test_error.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/test_misc.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/invalid/array-missing-comma.toml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/invalid/basic-str-ends-in-escape.toml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/invalid/inline-table-missing-comma.toml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/invalid/invalid-comment-char.toml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/invalid/invalid-escaped-unicode.toml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/invalid/invalid-hex.toml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/invalid/missing-closing-double-square-bracket.toml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/invalid/missing-closing-square-bracket.toml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/invalid/non-scalar-escaped.toml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/invalid/unclosed-multiline-string.toml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/invalid/unclosed-string.toml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/invalid/array/file-end-after-val.toml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid/array
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/invalid/array/unclosed-after-item.toml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid/array
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/invalid/array/unclosed-empty.toml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid/array
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/invalid/array-of-tables/overwrite-array-in-parent.toml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid/array-of-tables
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/invalid/array-of-tables/overwrite-bool-with-aot.toml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid/array-of-tables
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/invalid/boolean/invalid-false-casing.toml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid/boolean
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/invalid/boolean/invalid-true-casing.toml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid/boolean
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/invalid/dates-and-times/invalid-day.toml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid/dates-and-times
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/invalid/dotted-keys/access-non-table.toml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid/dotted-keys
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/invalid/dotted-keys/extend-defined-aot.toml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid/dotted-keys
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/invalid/dotted-keys/extend-defined-table-with-subtable.toml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid/dotted-keys
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/invalid/dotted-keys/extend-defined-table.toml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid/dotted-keys
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/invalid/inline-table/define-twice-in-subtable.toml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid/inline-table
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/invalid/inline-table/define-twice.toml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid/inline-table
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/invalid/inline-table/file-end-after-key-val.toml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid/inline-table
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/invalid/inline-table/mutate.toml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid/inline-table
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/invalid/inline-table/override-val-in-table.toml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid/inline-table
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/invalid/inline-table/override-val-with-array.toml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid/inline-table
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/invalid/inline-table/override-val-with-table.toml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid/inline-table
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/invalid/inline-table/overwrite-implicitly.toml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid/inline-table
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/invalid/inline-table/overwrite-value-in-inner-array.toml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid/inline-table
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/invalid/inline-table/overwrite-value-in-inner-table.toml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid/inline-table
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/invalid/inline-table/unclosed-empty.toml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid/inline-table
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/invalid/keys-and-vals/ends-early-table-def.toml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid/keys-and-vals
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/invalid/keys-and-vals/ends-early.toml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid/keys-and-vals
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/invalid/keys-and-vals/no-value.toml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid/keys-and-vals
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/invalid/keys-and-vals/only-ws-after-dot.toml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid/keys-and-vals
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/invalid/keys-and-vals/overwrite-with-deep-table.toml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid/keys-and-vals
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/invalid/literal-str/unclosed.toml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid/literal-str
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/invalid/multiline-basic-str/carriage-return.toml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid/multiline-basic-str
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/invalid/multiline-basic-str/escape-only.toml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid/multiline-basic-str
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/invalid/multiline-basic-str/file-ends-after-opening.toml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid/multiline-basic-str
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/invalid/multiline-basic-str/last-line-escape.toml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid/multiline-basic-str
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/invalid/multiline-basic-str/unclosed-ends-in-whitespace-escape.toml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid/multiline-basic-str
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/invalid/multiline-literal-str/file-ends-after-opening.toml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid/multiline-literal-str
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/invalid/multiline-literal-str/unclosed.toml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid/multiline-literal-str
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/invalid/table/eof-after-opening.toml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid/table
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/invalid/table/redefine-1.toml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid/table
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/invalid/table/redefine-2.toml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid/table
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/valid/apostrophes-in-literal-string.json /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/valid
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/valid/apostrophes-in-literal-string.toml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/valid
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/valid/boolean.json /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/valid
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/valid/boolean.toml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/valid
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/valid/empty-inline-table.json /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/valid
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/valid/empty-inline-table.toml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/valid
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/valid/five-quotes.json /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/valid
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/valid/five-quotes.toml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/valid
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/valid/hex-char.json /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/valid
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/valid/hex-char.toml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/valid
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/valid/no-newlines.json /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/valid
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/valid/no-newlines.toml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/valid
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/valid/trailing-comma.json /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/valid
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/valid/trailing-comma.toml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/valid
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/valid/array/array-subtables.json /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/valid/array
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/valid/array/array-subtables.toml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/valid/array
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/valid/array/open-parent-table.json /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/valid/array
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/valid/array/open-parent-table.toml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/valid/array
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/valid/dates-and-times/datetimes.json /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/valid/dates-and-times
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/valid/dates-and-times/datetimes.toml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/valid/dates-and-times
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/valid/dates-and-times/localtime.json /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/valid/dates-and-times
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/valid/dates-and-times/localtime.toml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/valid/dates-and-times
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/valid/multiline-basic-str/ends-in-whitespace-escape.json /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/valid/multiline-basic-str
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tomllib/data/valid/multiline-basic-str/ends-in-whitespace-escape.toml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/valid/multiline-basic-str
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tools/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tools
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tools/__main__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tools
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tools/test_freeze.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tools
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tools/test_i18n.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tools
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tools/test_reindent.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tools
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_tools/test_sundry.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tools
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ttk/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ttk
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ttk/__main__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ttk
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ttk/test_extensions.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ttk
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ttk/test_style.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ttk
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_ttk/test_widgets.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ttk
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_unittest/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unittest
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_unittest/__main__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unittest
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_unittest/_test_warnings.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unittest
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_unittest/dummy.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unittest
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_unittest/support.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unittest
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_unittest/test_assertions.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unittest
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_unittest/test_async_case.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unittest
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_unittest/test_break.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unittest
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_unittest/test_case.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unittest
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_unittest/test_discovery.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unittest
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_unittest/test_functiontestcase.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unittest
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_unittest/test_loader.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unittest
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_unittest/test_program.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unittest
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_unittest/test_result.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unittest
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_unittest/test_runner.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unittest
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_unittest/test_setups.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unittest
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_unittest/test_skipping.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unittest
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_unittest/test_suite.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unittest
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_unittest/testmock/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unittest/testmock
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_unittest/testmock/__main__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unittest/testmock
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_unittest/testmock/support.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unittest/testmock
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_unittest/testmock/testasync.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unittest/testmock
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_unittest/testmock/testcallable.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unittest/testmock
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_unittest/testmock/testhelpers.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unittest/testmock
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_unittest/testmock/testmagicmethods.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unittest/testmock
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_unittest/testmock/testmock.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unittest/testmock
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_unittest/testmock/testpatch.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unittest/testmock
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_unittest/testmock/testsealable.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unittest/testmock
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_unittest/testmock/testsentinel.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unittest/testmock
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_unittest/testmock/testwith.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unittest/testmock
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_warnings/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_warnings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_warnings/__main__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_warnings
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_warnings/data/import_warning.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_warnings/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_warnings/data/package_helper.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_warnings/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_warnings/data/stacklevel.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_warnings/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_zipfile/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_zipfile
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_zipfile/__main__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_zipfile
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_zipfile/test_core.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_zipfile
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_zipfile/_path/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_zipfile/_path
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_zipfile/_path/_functools.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_zipfile/_path
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_zipfile/_path/_itertools.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_zipfile/_path
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_zipfile/_path/_support.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_zipfile/_path
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_zipfile/_path/_test_params.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_zipfile/_path
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_zipfile/_path/test_complexity.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_zipfile/_path
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_zipfile/_path/test_path.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_zipfile/_path
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_zipfile/_path/write-alpharep.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_zipfile/_path
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_zoneinfo/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_zoneinfo
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_zoneinfo/__main__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_zoneinfo
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_zoneinfo/_support.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_zoneinfo
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_zoneinfo/test_zoneinfo.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_zoneinfo
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_zoneinfo/test_zoneinfo_property.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_zoneinfo
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_zoneinfo/data/update_test_data.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_zoneinfo/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/test_zoneinfo/data/zoneinfo_data.json /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_zoneinfo/data
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/tracedmodules/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/tracedmodules
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/tracedmodules/testmod.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/tracedmodules
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/typinganndata/__init__.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/typinganndata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/typinganndata/ann_module9.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/typinganndata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/xmltestdata/expat224_utf8_bug.xml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/xmltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/xmltestdata/simple-ns.xml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/xmltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/xmltestdata/simple.xml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/xmltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/xmltestdata/test.xml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/xmltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/xmltestdata/test.xml.out /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/xmltestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/xmltestdata/c14n-20/README /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/xmltestdata/c14n-20
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/xmltestdata/c14n-20/c14nComment.xml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/xmltestdata/c14n-20
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/xmltestdata/c14n-20/c14nDefault.xml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/xmltestdata/c14n-20
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/xmltestdata/c14n-20/c14nPrefix.xml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/xmltestdata/c14n-20
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/xmltestdata/c14n-20/c14nPrefixQname.xml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/xmltestdata/c14n-20
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/xmltestdata/c14n-20/c14nPrefixQnameXpathElem.xml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/xmltestdata/c14n-20
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/xmltestdata/c14n-20/c14nQname.xml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/xmltestdata/c14n-20
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/xmltestdata/c14n-20/c14nQnameElem.xml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/xmltestdata/c14n-20
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/xmltestdata/c14n-20/c14nQnameXpathElem.xml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/xmltestdata/c14n-20
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/xmltestdata/c14n-20/c14nTrim.xml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/xmltestdata/c14n-20
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/xmltestdata/c14n-20/doc.dtd /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/xmltestdata/c14n-20
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/xmltestdata/c14n-20/doc.xsl /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/xmltestdata/c14n-20
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/xmltestdata/c14n-20/inC14N1.xml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/xmltestdata/c14n-20
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/xmltestdata/c14n-20/inC14N2.xml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/xmltestdata/c14n-20
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/xmltestdata/c14n-20/inC14N3.xml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/xmltestdata/c14n-20
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/xmltestdata/c14n-20/inC14N4.xml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/xmltestdata/c14n-20
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/xmltestdata/c14n-20/inC14N5.xml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/xmltestdata/c14n-20
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/xmltestdata/c14n-20/inC14N6.xml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/xmltestdata/c14n-20
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/xmltestdata/c14n-20/inNsContent.xml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/xmltestdata/c14n-20
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/xmltestdata/c14n-20/inNsDefault.xml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/xmltestdata/c14n-20
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/xmltestdata/c14n-20/inNsPushdown.xml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/xmltestdata/c14n-20
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/xmltestdata/c14n-20/inNsRedecl.xml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/xmltestdata/c14n-20
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/xmltestdata/c14n-20/inNsSort.xml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/xmltestdata/c14n-20
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/xmltestdata/c14n-20/inNsSuperfluous.xml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/xmltestdata/c14n-20
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/xmltestdata/c14n-20/inNsXml.xml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/xmltestdata/c14n-20
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/xmltestdata/c14n-20/out_inC14N1_c14nComment.xml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/xmltestdata/c14n-20
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/xmltestdata/c14n-20/out_inC14N1_c14nDefault.xml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/xmltestdata/c14n-20
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/xmltestdata/c14n-20/out_inC14N2_c14nDefault.xml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/xmltestdata/c14n-20
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/xmltestdata/c14n-20/out_inC14N2_c14nTrim.xml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/xmltestdata/c14n-20
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/xmltestdata/c14n-20/out_inC14N3_c14nDefault.xml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/xmltestdata/c14n-20
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/xmltestdata/c14n-20/out_inC14N3_c14nPrefix.xml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/xmltestdata/c14n-20
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/xmltestdata/c14n-20/out_inC14N3_c14nTrim.xml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/xmltestdata/c14n-20
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/xmltestdata/c14n-20/out_inC14N4_c14nDefault.xml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/xmltestdata/c14n-20
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/xmltestdata/c14n-20/out_inC14N4_c14nTrim.xml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/xmltestdata/c14n-20
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/xmltestdata/c14n-20/out_inC14N5_c14nDefault.xml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/xmltestdata/c14n-20
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/xmltestdata/c14n-20/out_inC14N5_c14nTrim.xml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/xmltestdata/c14n-20
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/xmltestdata/c14n-20/out_inC14N6_c14nDefault.xml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/xmltestdata/c14n-20
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/xmltestdata/c14n-20/out_inNsContent_c14nDefault.xml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/xmltestdata/c14n-20
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/xmltestdata/c14n-20/out_inNsContent_c14nPrefixQnameXpathElem.xml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/xmltestdata/c14n-20
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/xmltestdata/c14n-20/out_inNsContent_c14nQnameElem.xml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/xmltestdata/c14n-20
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/xmltestdata/c14n-20/out_inNsContent_c14nQnameXpathElem.xml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/xmltestdata/c14n-20
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/xmltestdata/c14n-20/out_inNsDefault_c14nDefault.xml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/xmltestdata/c14n-20
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/xmltestdata/c14n-20/out_inNsDefault_c14nPrefix.xml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/xmltestdata/c14n-20
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/xmltestdata/c14n-20/out_inNsPushdown_c14nDefault.xml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/xmltestdata/c14n-20
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/xmltestdata/c14n-20/out_inNsPushdown_c14nPrefix.xml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/xmltestdata/c14n-20
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/xmltestdata/c14n-20/out_inNsRedecl_c14nDefault.xml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/xmltestdata/c14n-20
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/xmltestdata/c14n-20/out_inNsRedecl_c14nPrefix.xml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/xmltestdata/c14n-20
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/xmltestdata/c14n-20/out_inNsSort_c14nDefault.xml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/xmltestdata/c14n-20
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/xmltestdata/c14n-20/out_inNsSort_c14nPrefix.xml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/xmltestdata/c14n-20
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/xmltestdata/c14n-20/out_inNsSuperfluous_c14nDefault.xml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/xmltestdata/c14n-20
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/xmltestdata/c14n-20/out_inNsSuperfluous_c14nPrefix.xml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/xmltestdata/c14n-20
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/xmltestdata/c14n-20/out_inNsXml_c14nDefault.xml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/xmltestdata/c14n-20
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/xmltestdata/c14n-20/out_inNsXml_c14nPrefix.xml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/xmltestdata/c14n-20
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/xmltestdata/c14n-20/out_inNsXml_c14nPrefixQname.xml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/xmltestdata/c14n-20
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/xmltestdata/c14n-20/out_inNsXml_c14nQname.xml /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/xmltestdata/c14n-20
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/xmltestdata/c14n-20/world.txt /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/xmltestdata/c14n-20
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/ziptestdata/README.md /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/ziptestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c /bb.download/source/Python-3.12.0/Lib/test/ziptestdata/exe_with_z64 /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/ziptestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c /bb.download/source/Python-3.12.0/Lib/test/ziptestdata/exe_with_zip /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/ziptestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c /bb.download/source/Python-3.12.0/Lib/test/ziptestdata/header.sh /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/ziptestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Lib/test/ziptestdata/testdata_module_inside_zip.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/ziptestdata
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 `cat pybuilddir.txt`/_sysconfigdata__linux_x86_64-linux-gnu.py \
	/BuggyBox/python/3.12.0/bootstrap/lib/python3.12; \
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/LICENSE /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/LICENSE.txt
PYTHONPATH=/BuggyBox/python/3.12.0/bootstrap/lib/python3.12  \
	./python -E -Wi /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/compileall.py \
	-o 0 -o 1 -o 2 -j0 -d /BuggyBox/python/3.12.0/bootstrap/lib/python3.12 -f \
	-x 'bad_coding|badsyntax|site-packages|test/test_lib2to3/data' \
	/BuggyBox/python/3.12.0/bootstrap/lib/python3.12
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/__future__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/__hello__.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/__phello__'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/__phello__/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/__phello__/spam.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/_aix_support.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/_collections_abc.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/_compat_pickle.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/_compression.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/_markupbase.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/_osx_support.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/_py_abc.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/_pydatetime.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/_pydecimal.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/_pyio.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/_pylong.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/_sitebuiltins.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/_strptime.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/_sysconfigdata__linux_x86_64-linux-gnu.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/_threading_local.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/_weakrefset.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/abc.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/aifc.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/antigravity.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/argparse.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/ast.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/asyncio'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/asyncio/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/asyncio/__main__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/asyncio/base_events.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/asyncio/base_futures.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/asyncio/base_subprocess.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/asyncio/base_tasks.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/asyncio/constants.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/asyncio/coroutines.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/asyncio/events.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/asyncio/exceptions.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/asyncio/format_helpers.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/asyncio/futures.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/asyncio/locks.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/asyncio/log.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/asyncio/mixins.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/asyncio/proactor_events.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/asyncio/protocols.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/asyncio/queues.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/asyncio/runners.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/asyncio/selector_events.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/asyncio/sslproto.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/asyncio/staggered.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/asyncio/streams.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/asyncio/subprocess.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/asyncio/taskgroups.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/asyncio/tasks.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/asyncio/threads.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/asyncio/timeouts.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/asyncio/transports.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/asyncio/trsock.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/asyncio/unix_events.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/asyncio/windows_events.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/asyncio/windows_utils.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/base64.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/bdb.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/bisect.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/bz2.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/cProfile.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/calendar.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/cgi.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/cgitb.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/chunk.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/cmd.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/code.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/codecs.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/codeop.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/collections'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/collections/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/collections/abc.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/colorsys.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/compileall.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/concurrent'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/concurrent/__init__.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/concurrent/futures'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/concurrent/futures/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/concurrent/futures/_base.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/concurrent/futures/process.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/concurrent/futures/thread.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/configparser.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/contextlib.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/contextvars.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/copy.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/copyreg.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/crypt.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/csv.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/ctypes'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/ctypes/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/ctypes/_aix.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/ctypes/_endian.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/ctypes/macholib'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/ctypes/macholib/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/ctypes/macholib/dyld.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/ctypes/macholib/dylib.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/ctypes/macholib/framework.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/ctypes/util.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/ctypes/wintypes.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/curses'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/curses/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/curses/ascii.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/curses/has_key.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/curses/panel.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/curses/textpad.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/dataclasses.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/datetime.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/dbm'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/dbm/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/dbm/dumb.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/dbm/gnu.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/dbm/ndbm.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/decimal.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/difflib.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/dis.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/doctest.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/email'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/email/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/email/_encoded_words.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/email/_header_value_parser.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/email/_parseaddr.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/email/_policybase.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/email/base64mime.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/email/charset.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/email/contentmanager.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/email/encoders.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/email/errors.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/email/feedparser.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/email/generator.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/email/header.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/email/headerregistry.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/email/iterators.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/email/message.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/email/mime'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/email/mime/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/email/mime/application.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/email/mime/audio.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/email/mime/base.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/email/mime/image.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/email/mime/message.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/email/mime/multipart.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/email/mime/nonmultipart.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/email/mime/text.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/email/parser.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/email/policy.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/email/quoprimime.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/email/utils.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/aliases.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/ascii.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/base64_codec.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/big5.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/big5hkscs.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/bz2_codec.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/charmap.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/cp037.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/cp1006.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/cp1026.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/cp1125.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/cp1140.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/cp1250.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/cp1251.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/cp1252.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/cp1253.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/cp1254.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/cp1255.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/cp1256.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/cp1257.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/cp1258.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/cp273.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/cp424.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/cp437.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/cp500.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/cp720.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/cp737.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/cp775.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/cp850.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/cp852.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/cp855.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/cp856.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/cp857.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/cp858.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/cp860.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/cp861.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/cp862.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/cp863.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/cp864.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/cp865.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/cp866.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/cp869.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/cp874.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/cp875.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/cp932.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/cp949.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/cp950.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/euc_jis_2004.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/euc_jisx0213.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/euc_jp.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/euc_kr.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/gb18030.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/gb2312.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/gbk.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/hex_codec.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/hp_roman8.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/hz.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/idna.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/iso2022_jp.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/iso2022_jp_1.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/iso2022_jp_2.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/iso2022_jp_2004.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/iso2022_jp_3.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/iso2022_jp_ext.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/iso2022_kr.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/iso8859_1.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/iso8859_10.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/iso8859_11.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/iso8859_13.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/iso8859_14.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/iso8859_15.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/iso8859_16.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/iso8859_2.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/iso8859_3.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/iso8859_4.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/iso8859_5.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/iso8859_6.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/iso8859_7.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/iso8859_8.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/iso8859_9.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/johab.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/koi8_r.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/koi8_t.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/koi8_u.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/kz1048.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/latin_1.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/mac_arabic.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/mac_croatian.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/mac_cyrillic.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/mac_farsi.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/mac_greek.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/mac_iceland.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/mac_latin2.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/mac_roman.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/mac_romanian.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/mac_turkish.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/mbcs.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/oem.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/palmos.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/ptcp154.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/punycode.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/quopri_codec.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/raw_unicode_escape.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/rot_13.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/shift_jis.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/shift_jis_2004.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/shift_jisx0213.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/tis_620.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/undefined.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/unicode_escape.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/utf_16.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/utf_16_be.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/utf_16_le.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/utf_32.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/utf_32_be.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/utf_32_le.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/utf_7.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/utf_8.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/utf_8_sig.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/uu_codec.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/encodings/zlib_codec.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/ensurepip'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/ensurepip/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/ensurepip/__main__.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/ensurepip/_bundled'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/ensurepip/_uninstall.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/enum.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/filecmp.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/fileinput.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/fnmatch.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/fractions.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/ftplib.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/functools.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/genericpath.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/getopt.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/getpass.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/gettext.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/glob.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/graphlib.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/gzip.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/hashlib.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/heapq.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/hmac.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/html'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/html/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/html/entities.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/html/parser.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/http'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/http/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/http/client.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/http/cookiejar.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/http/cookies.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/http/server.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/Icons'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/__main__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/autocomplete.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/autocomplete_w.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/autoexpand.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/browser.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/calltip.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/calltip_w.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/codecontext.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/colorizer.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/config.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/config_key.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/configdialog.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/debugger.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/debugger_r.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/debugobj.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/debugobj_r.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/delegator.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/dynoption.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/editor.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/filelist.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/format.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/grep.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/help.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/help_about.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/history.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/hyperparser.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test/htest.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test/mock_idle.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test/mock_tk.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test/template.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test/test_autocomplete.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test/test_autocomplete_w.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test/test_autoexpand.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test/test_browser.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test/test_calltip.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test/test_calltip_w.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test/test_codecontext.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test/test_colorizer.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test/test_config.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test/test_config_key.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test/test_configdialog.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test/test_debugger.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test/test_debugger_r.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test/test_debugobj.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test/test_debugobj_r.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test/test_delegator.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test/test_editmenu.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test/test_editor.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test/test_filelist.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test/test_format.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test/test_grep.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test/test_help.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test/test_help_about.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test/test_history.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test/test_hyperparser.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test/test_iomenu.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test/test_macosx.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test/test_mainmenu.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test/test_multicall.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test/test_outwin.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test/test_parenmatch.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test/test_pathbrowser.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test/test_percolator.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test/test_pyparse.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test/test_pyshell.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test/test_query.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test/test_redirector.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test/test_replace.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test/test_rpc.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test/test_run.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test/test_runscript.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test/test_scrolledlist.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test/test_search.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test/test_searchbase.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test/test_searchengine.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test/test_sidebar.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test/test_squeezer.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test/test_stackviewer.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test/test_statusbar.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test/test_text.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test/test_textview.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test/test_tooltip.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test/test_tree.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test/test_undo.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test/test_util.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test/test_warning.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test/test_window.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test/test_zoomheight.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test/test_zzdummy.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/idle_test/tkinter_testing_utils.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/iomenu.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/macosx.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/mainmenu.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/multicall.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/outwin.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/parenmatch.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/pathbrowser.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/percolator.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/pyparse.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/pyshell.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/query.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/redirector.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/replace.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/rpc.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/run.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/runscript.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/scrolledlist.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/search.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/searchbase.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/searchengine.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/sidebar.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/squeezer.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/stackviewer.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/statusbar.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/textview.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/tooltip.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/tree.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/undo.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/util.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/window.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/zoomheight.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/idlelib/zzdummy.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/imaplib.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/imghdr.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/importlib'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/importlib/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/importlib/_abc.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/importlib/_bootstrap.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/importlib/_bootstrap_external.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/importlib/abc.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/importlib/machinery.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/importlib/metadata'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/importlib/metadata/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/importlib/metadata/_adapters.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/importlib/metadata/_collections.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/importlib/metadata/_functools.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/importlib/metadata/_itertools.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/importlib/metadata/_meta.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/importlib/metadata/_text.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/importlib/readers.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/importlib/resources'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/importlib/resources/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/importlib/resources/_adapters.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/importlib/resources/_common.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/importlib/resources/_itertools.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/importlib/resources/_legacy.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/importlib/resources/abc.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/importlib/resources/readers.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/importlib/resources/simple.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/importlib/simple.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/importlib/util.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/inspect.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/io.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/ipaddress.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/json'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/json/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/json/decoder.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/json/encoder.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/json/scanner.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/json/tool.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/keyword.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/__main__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/btm_matcher.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/btm_utils.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixer_base.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixer_util.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes/fix_apply.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes/fix_asserts.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes/fix_basestring.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes/fix_buffer.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes/fix_dict.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes/fix_except.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes/fix_exec.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes/fix_execfile.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes/fix_exitfunc.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes/fix_filter.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes/fix_funcattrs.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes/fix_future.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes/fix_getcwdu.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes/fix_has_key.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes/fix_idioms.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes/fix_import.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes/fix_imports.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes/fix_imports2.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes/fix_input.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes/fix_intern.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes/fix_isinstance.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes/fix_itertools.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes/fix_itertools_imports.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes/fix_long.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes/fix_map.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes/fix_metaclass.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes/fix_methodattrs.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes/fix_ne.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes/fix_next.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes/fix_nonzero.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes/fix_numliterals.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes/fix_operator.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes/fix_paren.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes/fix_print.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes/fix_raise.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes/fix_raw_input.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes/fix_reduce.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes/fix_reload.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes/fix_renames.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes/fix_repr.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes/fix_set_literal.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes/fix_standarderror.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes/fix_sys_exc.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes/fix_throw.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes/fix_tuple_params.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes/fix_types.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes/fix_unicode.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes/fix_urllib.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes/fix_ws_comma.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes/fix_xrange.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes/fix_xreadlines.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/fixes/fix_zip.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/main.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/patcomp.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/pgen2'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/pgen2/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/pgen2/conv.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/pgen2/driver.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/pgen2/grammar.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/pgen2/literals.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/pgen2/parse.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/pgen2/pgen.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/pgen2/token.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/pgen2/tokenize.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/pygram.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/pytree.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/refactor.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/linecache.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/locale.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/logging'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/logging/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/logging/config.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/logging/handlers.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lzma.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/mailbox.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/mailcap.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/mimetypes.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/modulefinder.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/multiprocessing'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/multiprocessing/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/multiprocessing/connection.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/multiprocessing/context.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/multiprocessing/dummy'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/multiprocessing/dummy/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/multiprocessing/dummy/connection.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/multiprocessing/forkserver.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/multiprocessing/heap.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/multiprocessing/managers.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/multiprocessing/pool.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/multiprocessing/popen_fork.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/multiprocessing/popen_forkserver.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/multiprocessing/popen_spawn_posix.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/multiprocessing/popen_spawn_win32.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/multiprocessing/process.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/multiprocessing/queues.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/multiprocessing/reduction.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/multiprocessing/resource_sharer.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/multiprocessing/resource_tracker.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/multiprocessing/shared_memory.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/multiprocessing/sharedctypes.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/multiprocessing/spawn.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/multiprocessing/synchronize.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/multiprocessing/util.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/netrc.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/nntplib.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/ntpath.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/nturl2path.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/numbers.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/opcode.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/operator.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/optparse.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/os.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/pathlib.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/pdb.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/pickle.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/pickletools.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/pipes.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/pkgutil.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/platform.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/plistlib.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/poplib.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/posixpath.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/pprint.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/profile.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/pstats.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/pty.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/py_compile.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/pyclbr.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/pydoc.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/pydoc_data'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/pydoc_data/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/pydoc_data/topics.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/queue.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/quopri.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/random.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/re'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/re/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/re/_casefix.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/re/_compiler.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/re/_constants.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/re/_parser.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/reprlib.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/rlcompleter.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/runpy.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/sched.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/secrets.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/selectors.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/shelve.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/shlex.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/shutil.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/signal.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/site-packages'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/site.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/smtplib.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/sndhdr.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/socket.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/socketserver.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/sqlite3'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/sqlite3/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/sqlite3/__main__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/sqlite3/dbapi2.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/sqlite3/dump.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/sre_compile.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/sre_constants.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/sre_parse.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/ssl.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/stat.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/statistics.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/string.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/stringprep.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/struct.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/subprocess.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/sunau.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/symtable.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/sysconfig.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/tabnanny.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/tarfile.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/telnetlib.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/tempfile.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/__main__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/_test_atexit.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/_test_eintr.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/_test_embed_set_config.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/_test_embed_structseq.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/_test_multiprocessing.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/_test_venv_multiprocessing.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/_typed_dict_helper.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/ann_module.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/ann_module2.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/ann_module3.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/ann_module4.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/ann_module5.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/ann_module6.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/ann_module7.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/ann_module8.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/audiodata'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/audiotests.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/audit-tests.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/autotest.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/bisect_cmd.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/capath'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/cjkencodings'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/coding20731.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/crashers'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/crashers/bogus_code_obj.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/crashers/gc_inspection.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/crashers/infinite_loop_re.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/crashers/mutation_inside_cyclegc.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/crashers/recursive_call.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/crashers/trace_at_recursion_limit.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/crashers/underlying_dict.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/curses_tests.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/data'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/dataclass_module_1.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/dataclass_module_1_str.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/dataclass_module_2.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/dataclass_module_2_str.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/dataclass_textanno.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/datetimetester.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/decimaltestdata'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/dis_module.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/doctest_aliases.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/doctest_lineno.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/double_const.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/dtracedata'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/dtracedata/call_stack.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/dtracedata/gc.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/dtracedata/instance.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/dtracedata/line.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/encoded_modules'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/encoded_modules/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/encoded_modules/module_iso_8859_1.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/encoded_modules/module_koi8_r.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/final_a.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/final_b.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/fork_wait.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/future_test1.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/future_test2.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/gdb_sample.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/imghdrdata'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/imp_dummy.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/inspect_fodder.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/inspect_fodder2.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/inspect_stock_annotations.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/inspect_stringized_annotations.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/inspect_stringized_annotations_2.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/leakers'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/leakers/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/leakers/test_ctypes.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/leakers/test_selftype.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/libregrtest'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/libregrtest/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/libregrtest/cmdline.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/libregrtest/main.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/libregrtest/pgo.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/libregrtest/refleak.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/libregrtest/runtest.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/libregrtest/runtest_mp.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/libregrtest/save_env.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/libregrtest/setup.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/libregrtest/utils.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/libregrtest/win_utils.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/list_tests.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/lock_tests.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/make_ssl_certs.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/mapping_tests.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/memory_watchdog.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/mock_socket.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/mod_generics_cache.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/mp_fork_bomb.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/mp_preload.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/multibytecodec_support.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/pickletester.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/profilee.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/pyclbr_input.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/pydoc_mod.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/pydocfodder.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/pythoninfo.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/re_tests.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/regrtest.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/relimport.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/reperf.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/sample_doctest.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/sample_doctest_no_docstrings.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/sample_doctest_no_doctests.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/seq_tests.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/shadowed_super.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/signalinterproctester.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/smtpd.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/sndhdrdata'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/sortperf.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/ssl_servers.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/ssltests.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/string_tests.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/subprocessdata'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/subprocessdata/fd_status.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/subprocessdata/input_reader.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/subprocessdata/qcat.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/subprocessdata/qgrep.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/subprocessdata/sigchild_ignore.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/support'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/support/__init__.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/support/_hypothesis_stubs'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/support/_hypothesis_stubs/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/support/_hypothesis_stubs/_helpers.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/support/_hypothesis_stubs/strategies.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/support/ast_helper.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/support/asynchat.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/support/asyncore.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/support/bytecode_helper.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/support/hashlib_helper.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/support/hypothesis_helper.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/support/import_helper.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/support/interpreters.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/support/logging_helper.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/support/os_helper.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/support/script_helper.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/support/socket_helper.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/support/testcase.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/support/testresult.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/support/threading_helper.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/support/warnings_helper.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test___all__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test___future__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test__locale.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test__opcode.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test__osx_support.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test__xxinterpchannels.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test__xxsubinterpreters.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_abc.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_abstract_numbers.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_aifc.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_argparse.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_array.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asdl_parser.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ast.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncgen.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio/__main__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio/echo.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio/echo2.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio/echo3.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio/functional.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio/test_base_events.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio/test_buffered_proto.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio/test_context.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio/test_eager_task_factory.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio/test_events.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio/test_futures.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio/test_futures2.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio/test_locks.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio/test_pep492.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio/test_proactor_events.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio/test_protocols.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio/test_queues.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio/test_runners.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio/test_selector_events.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio/test_sendfile.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio/test_server.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio/test_sock_lowlevel.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio/test_ssl.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio/test_sslproto.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio/test_streams.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio/test_subprocess.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio/test_taskgroups.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio/test_tasks.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio/test_threads.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio/test_timeouts.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio/test_transports.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio/test_unix_events.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio/test_waitfor.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio/test_windows_events.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio/test_windows_utils.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_asyncio/utils.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_atexit.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_audioop.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_audit.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_augassign.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_base64.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_baseexception.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_bdb.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_bigaddrspace.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_bigmem.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_binascii.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_binop.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_bisect.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_bool.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_buffer.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_bufio.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_builtin.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_bytes.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_bz2.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_c_locale_coercion.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_calendar.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_call.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_capi'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_capi/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_capi/__main__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_capi/check_config.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_capi/test_abstract.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_capi/test_codecs.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_capi/test_dict.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_capi/test_eval_code_ex.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_capi/test_exceptions.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_capi/test_getargs.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_capi/test_immortal.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_capi/test_long.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_capi/test_mem.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_capi/test_misc.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_capi/test_structmembers.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_capi/test_unicode.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_capi/test_watchers.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_cgi.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_cgitb.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_charmapcodec.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_class.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_clinic.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_cmath.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_cmd.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_cmd_line.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_cmd_line_script.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_code.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_code_module.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_codeccallbacks.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_codecencodings_cn.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_codecencodings_hk.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_codecencodings_iso2022.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_codecencodings_jp.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_codecencodings_kr.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_codecencodings_tw.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_codecmaps_cn.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_codecmaps_hk.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_codecmaps_jp.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_codecmaps_kr.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_codecmaps_tw.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_codecs.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_codeop.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_collections.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_colorsys.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_compare.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_compile.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_compileall.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_compiler_assemble.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_compiler_codegen.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_complex.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_configparser.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_contains.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_context.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_contextlib.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_contextlib_async.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_copy.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_copyreg.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_coroutines.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_cppext'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_cppext/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_cppext/setup.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_cprofile.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_crashers.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_crypt.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_csv.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes/__main__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes/test_anon.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes/test_array_in_pointer.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes/test_arrays.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes/test_as_parameter.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes/test_bitfields.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes/test_buffers.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes/test_bytes.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes/test_byteswap.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes/test_callbacks.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes/test_cast.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes/test_cfuncs.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes/test_checkretval.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes/test_delattr.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes/test_errno.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes/test_find.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes/test_frombuffer.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes/test_funcptr.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes/test_functions.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes/test_incomplete.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes/test_init.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes/test_internals.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes/test_keeprefs.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes/test_libc.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes/test_loading.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes/test_macholib.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes/test_memfunctions.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes/test_numbers.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes/test_objects.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes/test_parameters.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes/test_pep3118.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes/test_pickling.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes/test_pointers.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes/test_prototypes.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes/test_python_api.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes/test_random_things.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes/test_refcounts.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes/test_repr.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes/test_returnfuncptrs.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes/test_simplesubclasses.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes/test_sizes.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes/test_slicing.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes/test_stringptr.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes/test_strings.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes/test_struct_fields.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes/test_structures.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes/test_unaligned_structures.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes/test_unicode.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes/test_values.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes/test_varsize_struct.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes/test_win32.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ctypes/test_wintypes.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_curses.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_dataclasses.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_datetime.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_dbm.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_dbm_dumb.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_dbm_gnu.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_dbm_ndbm.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_decimal.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_decorators.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_defaultdict.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_deque.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_descr.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_descrtut.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_devpoll.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_dict.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_dict_version.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_dictcomps.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_dictviews.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_difflib.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_dis.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_doctest.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_doctest2.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_docxmlrpc.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_dtrace.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_dynamic.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_dynamicclassattribute.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_eintr.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/__main__.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/data'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/test__encoded_words.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/test__header_value_parser.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/test_asian_codecs.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/test_contentmanager.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/test_defect_handling.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/test_email.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/test_generator.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/test_headerregistry.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/test_inversion.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/test_message.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/test_parser.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/test_pickleable.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/test_policy.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/test_utils.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_email/torture_test.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_embed.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ensurepip.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_enum.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_enumerate.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_eof.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_epoll.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_errno.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_except_star.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_exception_group.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_exception_hierarchy.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_exception_variations.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_exceptions.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_extcall.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_faulthandler.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_fcntl.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_file.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_file_eintr.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_filecmp.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_fileinput.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_fileio.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_fileutils.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_finalization.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_float.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_flufl.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_fnmatch.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_fork1.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_format.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_fractions.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_frame.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_frozen.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_fstring.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ftplib.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_funcattrs.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_functools.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_future.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_future3.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_future4.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_future5.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_gc.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_gdb.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_generator_stop.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_generators.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_genericalias.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_genericclass.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_genericpath.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_genexps.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_getopt.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_getpass.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_getpath.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_gettext.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_glob.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_global.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_grammar.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_graphlib.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_grp.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_gzip.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_hash.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_hashlib.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_heapq.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_hmac.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_html.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_htmlparser.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_http_cookiejar.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_http_cookies.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_httplib.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_httpservers.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_idle.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_imaplib.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_imghdr.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import/__main__.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import/data'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import/data/circular_imports'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import/data/circular_imports/basic.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import/data/circular_imports/basic2.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import/data/circular_imports/binding.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import/data/circular_imports/binding2.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import/data/circular_imports/from_cycle1.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import/data/circular_imports/from_cycle2.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import/data/circular_imports/indirect.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import/data/circular_imports/rebinding.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import/data/circular_imports/rebinding2.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import/data/circular_imports/source.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import/data/circular_imports/subpackage.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import/data/circular_imports/subpkg'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import/data/circular_imports/subpkg/subpackage2.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import/data/circular_imports/subpkg/util.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import/data/circular_imports/subpkg2'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import/data/circular_imports/subpkg2/__init__.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import/data/circular_imports/subpkg2/parent'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import/data/circular_imports/subpkg2/parent/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import/data/circular_imports/subpkg2/parent/child.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import/data/circular_imports/use.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import/data/circular_imports/util.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import/data/package'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import/data/package/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import/data/package/submodule.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import/data/package2'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import/data/package2/submodule1.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import/data/package2/submodule2.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import/data/unwritable'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import/data/unwritable/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_import/data/unwritable/x.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/__main__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/_context.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/_path.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/abc.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/builtin'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/builtin/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/builtin/__main__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/builtin/test_finder.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/builtin/test_loader.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/data'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/data/__init__.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/extension'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/extension/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/extension/__main__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/extension/test_case_sensitivity.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/extension/test_finder.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/extension/test_loader.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/extension/test_path_hook.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/fixtures.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/frozen'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/frozen/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/frozen/__main__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/frozen/test_finder.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/frozen/test_loader.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/import_'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/import_/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/import_/__main__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/import_/test___loader__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/import_/test___package__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/import_/test_api.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/import_/test_caching.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/import_/test_fromlist.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/import_/test_helpers.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/import_/test_meta_path.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/import_/test_packages.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/import_/test_path.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/import_/test_relative_imports.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/namespace_pkgs'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/namespace_pkgs/both_portions'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/namespace_pkgs/both_portions/foo'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/namespace_pkgs/both_portions/foo/one.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/namespace_pkgs/both_portions/foo/two.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/namespace_pkgs/module_and_namespace_package'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/namespace_pkgs/module_and_namespace_package/a_test'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/namespace_pkgs/module_and_namespace_package/a_test.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/namespace_pkgs/not_a_namespace_pkg'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/namespace_pkgs/not_a_namespace_pkg/foo'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/namespace_pkgs/not_a_namespace_pkg/foo/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/namespace_pkgs/not_a_namespace_pkg/foo/one.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/namespace_pkgs/portion1'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/namespace_pkgs/portion1/foo'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/namespace_pkgs/portion1/foo/one.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/namespace_pkgs/portion2'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/namespace_pkgs/portion2/foo'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/namespace_pkgs/portion2/foo/two.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/namespace_pkgs/project1'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/namespace_pkgs/project1/parent'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/namespace_pkgs/project1/parent/child'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/namespace_pkgs/project1/parent/child/one.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/namespace_pkgs/project2'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/namespace_pkgs/project2/parent'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/namespace_pkgs/project2/parent/child'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/namespace_pkgs/project2/parent/child/two.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/namespace_pkgs/project3'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/namespace_pkgs/project3/parent'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/namespace_pkgs/project3/parent/child'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/namespace_pkgs/project3/parent/child/three.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/partial'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/partial/cfimport.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/partial/pool_in_threads.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/_path.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/data01'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/data01/__init__.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/data01/subdirectory'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/data01/subdirectory/__init__.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/data02'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/data02/__init__.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/data02/one'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/data02/one/__init__.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/data02/subdirectory'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/data02/subdirectory/subsubdir'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/data02/two'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/data02/two/__init__.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/data03'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/data03/__init__.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/data03/namespace'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/data03/namespace/portion1'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/data03/namespace/portion1/__init__.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/data03/namespace/portion2'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/data03/namespace/portion2/__init__.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/namespacedata01'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/test_compatibilty_files.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/test_contents.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/test_custom.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/test_files.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/test_open.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/test_path.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/test_read.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/test_reader.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/test_resource.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/update-zips.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/util.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/zipdata01'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/zipdata01/__init__.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/zipdata02'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/resources/zipdata02/__init__.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/source'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/source/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/source/__main__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/source/test_case_sensitivity.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/source/test_file_loader.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/source/test_finder.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/source/test_path_hook.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/source/test_source_encoding.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/stubs.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/test_abc.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/test_api.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/test_lazy.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/test_locks.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/test_main.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/test_metadata_api.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/test_namespace_pkgs.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/test_pkg_import.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/test_spec.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/test_threaded_import.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/test_util.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/test_windows.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/test_zip.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/threaded_import_hangers.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_importlib/util.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_index.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_inspect.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_int.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_int_literal.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_interpreters.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_io.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ioctl.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ipaddress.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_isinstance.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_iter.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_iterlen.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_itertools.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_json'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_json/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_json/__main__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_json/test_decode.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_json/test_default.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_json/test_dump.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_json/test_encode_basestring_ascii.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_json/test_enum.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_json/test_fail.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_json/test_float.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_json/test_indent.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_json/test_pass1.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_json/test_pass2.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_json/test_pass3.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_json/test_recursion.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_json/test_scanstring.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_json/test_separators.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_json/test_speedups.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_json/test_tool.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_json/test_unicode.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_keyword.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_keywordonlyarg.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_kqueue.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_largefile.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_launcher.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_lib2to3'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_lib2to3/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_lib2to3/__main__.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_lib2to3/data'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_lib2to3/data/fixers'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_lib2to3/data/fixers/myfixes'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_lib2to3/pytree_idempotency.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_lib2to3/support.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_lib2to3/test_all_fixers.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_lib2to3/test_fixers.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_lib2to3/test_main.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_lib2to3/test_parser.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_lib2to3/test_pytree.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_lib2to3/test_refactor.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_lib2to3/test_util.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_linecache.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_list.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_listcomps.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_lltrace.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_locale.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_logging.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_long.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_longexp.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_lzma.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_mailbox.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_mailcap.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_marshal.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_math.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_math_property.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_memoryio.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_memoryview.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_metaclass.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_mimetypes.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_minidom.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_mmap.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_module'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_module/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_module/bad_getattr.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_module/bad_getattr2.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_module/bad_getattr3.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_module/good_getattr.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_modulefinder.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_monitoring.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_msilib.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_multibytecodec.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_multiprocessing_main_handling.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_named_expressions.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_netrc.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_nis.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_nntplib.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ntpath.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_numeric_tower.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_opcache.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_opcodes.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_openpty.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_operator.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_optparse.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ordered_dict.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_os.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ossaudiodev.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_osx_env.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_pathlib.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_patma.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_pdb.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_peepholer.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_peg_generator'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_peg_generator/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_peg_generator/__main__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_peg_generator/test_c_parser.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_peg_generator/test_first_sets.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_peg_generator/test_grammar_validator.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_peg_generator/test_pegen.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_pep646_syntax.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_perf_profiler.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_perfmaps.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_pickle.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_picklebuffer.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_pickletools.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_pipes.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_pkg.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_pkgutil.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_platform.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_plistlib.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_poll.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_popen.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_poplib.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_positional_only_arg.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_posix.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_posixpath.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_pow.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_pprint.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_print.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_profile.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_property.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_pstats.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_pty.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_pulldom.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_pwd.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_py_compile.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_pyclbr.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_pydoc.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_pyexpat.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_queue.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_quopri.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_raise.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_random.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_range.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_re.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_readline.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_regrtest.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_repl.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_reprlib.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_resource.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_richcmp.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_rlcompleter.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_robotparser.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_runpy.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_sax.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_sched.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_scope.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_script_helper.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_secrets.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_select.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_selectors.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_set.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_setcomps.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_shelve.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_shlex.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_shutil.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_signal.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_site.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_slice.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_smtplib.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_smtpnet.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_sndhdr.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_socket.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_socketserver.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_sort.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_source_encoding.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_spwd.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_sqlite3'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_sqlite3/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_sqlite3/__main__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_sqlite3/test_backup.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_sqlite3/test_cli.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_sqlite3/test_dbapi.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_sqlite3/test_dump.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_sqlite3/test_factory.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_sqlite3/test_hooks.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_sqlite3/test_regression.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_sqlite3/test_transactions.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_sqlite3/test_types.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_sqlite3/test_userfunctions.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ssl.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_stable_abi_ctypes.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_startfile.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_stat.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_statistics.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_strftime.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_string.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_string_literals.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_stringprep.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_strptime.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_strtod.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_struct.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_structseq.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_subclassinit.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_subprocess.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_sunau.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_sundry.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_super.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_support.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_symtable.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_syntax.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_sys.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_sys_setprofile.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_sys_settrace.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_sysconfig.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_syslog.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tabnanny.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tarfile.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tcl.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_telnetlib.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tempfile.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_textwrap.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_thread.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_threadedtempfile.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_threading.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_threading_local.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_threadsignals.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_time.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_timeit.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_timeout.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tix.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tkinter'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tkinter/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tkinter/__main__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tkinter/support.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tkinter/test_colorchooser.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tkinter/test_font.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tkinter/test_geometry_managers.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tkinter/test_images.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tkinter/test_loadtk.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tkinter/test_messagebox.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tkinter/test_misc.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tkinter/test_simpledialog.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tkinter/test_text.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tkinter/test_variables.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tkinter/test_widgets.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tkinter/widget_tests.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tokenize.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/__main__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/burntsushi.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid/array'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid/array-of-tables'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid/boolean'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid/dates-and-times'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid/dotted-keys'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid/inline-table'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid/keys-and-vals'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid/literal-str'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid/multiline-basic-str'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid/multiline-literal-str'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/invalid/table'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/valid'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/valid/array'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/valid/dates-and-times'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/data/valid/multiline-basic-str'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/test_data.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/test_error.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tomllib/test_misc.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tools'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tools/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tools/__main__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tools/test_freeze.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tools/test_i18n.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tools/test_reindent.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tools/test_sundry.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_trace.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_traceback.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tracemalloc.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ttk'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ttk/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ttk/__main__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ttk/test_extensions.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ttk/test_style.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ttk/test_widgets.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ttk_textonly.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_tuple.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_turtle.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_type_aliases.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_type_annotations.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_type_cache.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_type_comments.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_type_params.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_typechecks.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_types.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_typing.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_ucn.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unary.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unicode.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unicode_file.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unicode_file_functions.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unicode_identifiers.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unicodedata.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unittest'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unittest/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unittest/__main__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unittest/_test_warnings.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unittest/dummy.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unittest/support.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unittest/test_assertions.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unittest/test_async_case.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unittest/test_break.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unittest/test_case.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unittest/test_discovery.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unittest/test_functiontestcase.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unittest/test_loader.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unittest/test_program.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unittest/test_result.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unittest/test_runner.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unittest/test_setups.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unittest/test_skipping.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unittest/test_suite.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unittest/testmock'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unittest/testmock/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unittest/testmock/__main__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unittest/testmock/support.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unittest/testmock/testasync.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unittest/testmock/testcallable.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unittest/testmock/testhelpers.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unittest/testmock/testmagicmethods.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unittest/testmock/testmock.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unittest/testmock/testpatch.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unittest/testmock/testsealable.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unittest/testmock/testsentinel.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unittest/testmock/testwith.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_univnewlines.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unpack.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unpack_ex.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_unparse.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_urllib.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_urllib2.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_urllib2_localnet.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_urllib2net.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_urllib_response.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_urllibnet.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_urlparse.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_userdict.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_userlist.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_userstring.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_utf8_mode.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_utf8source.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_uu.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_uuid.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_venv.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_wait3.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_wait4.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_warnings'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_warnings/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_warnings/__main__.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_warnings/data'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_warnings/data/import_warning.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_warnings/data/package_helper.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_warnings/data/stacklevel.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_wave.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_weakref.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_weakset.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_webbrowser.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_winconsoleio.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_winreg.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_winsound.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_with.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_wmi.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_wsgiref.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_xdrlib.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_xml_dom_minicompat.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_xml_etree.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_xml_etree_c.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_xmlrpc.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_xmlrpc_net.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_xxlimited.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_xxtestfuzz.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_yield_from.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_zipapp.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_zipfile'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_zipfile/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_zipfile/__main__.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_zipfile/_path'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_zipfile/_path/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_zipfile/_path/_functools.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_zipfile/_path/_itertools.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_zipfile/_path/_support.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_zipfile/_path/_test_params.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_zipfile/_path/test_complexity.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_zipfile/_path/test_path.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_zipfile/_path/write-alpharep.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_zipfile/test_core.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_zipfile64.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_zipimport.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_zipimport_support.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_zlib.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_zoneinfo'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_zoneinfo/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_zoneinfo/__main__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_zoneinfo/_support.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_zoneinfo/data'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_zoneinfo/data/update_test_data.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_zoneinfo/test_zoneinfo.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/test_zoneinfo/test_zoneinfo_property.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/testcodec.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/tf_inherit_check.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/time_hashlib.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/tracedmodules'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/tracedmodules/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/tracedmodules/testmod.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/typinganndata'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/typinganndata/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/typinganndata/ann_module9.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/win_console_handler.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/xmltestdata'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/xmltestdata/c14n-20'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/xmltests.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/ziptestdata'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/test/ziptestdata/testdata_module_inside_zip.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/textwrap.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/this.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/threading.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/timeit.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/tkinter'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/tkinter/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/tkinter/__main__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/tkinter/colorchooser.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/tkinter/commondialog.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/tkinter/constants.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/tkinter/dialog.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/tkinter/dnd.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/tkinter/filedialog.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/tkinter/font.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/tkinter/messagebox.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/tkinter/scrolledtext.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/tkinter/simpledialog.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/tkinter/tix.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/tkinter/ttk.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/token.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/tokenize.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/tomllib'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/tomllib/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/tomllib/_parser.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/tomllib/_re.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/tomllib/_types.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/trace.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/traceback.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/tracemalloc.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/tty.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/turtle.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/turtledemo'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/turtledemo/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/turtledemo/__main__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/turtledemo/bytedesign.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/turtledemo/chaos.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/turtledemo/clock.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/turtledemo/colormixer.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/turtledemo/forest.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/turtledemo/fractalcurves.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/turtledemo/lindenmayer.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/turtledemo/minimal_hanoi.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/turtledemo/nim.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/turtledemo/paint.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/turtledemo/peace.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/turtledemo/penrose.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/turtledemo/planet_and_moon.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/turtledemo/rosette.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/turtledemo/round_dance.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/turtledemo/sorting_animate.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/turtledemo/tree.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/turtledemo/two_canvases.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/turtledemo/yinyang.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/types.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/typing.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/unittest'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/unittest/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/unittest/__main__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/unittest/_log.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/unittest/async_case.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/unittest/case.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/unittest/loader.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/unittest/main.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/unittest/mock.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/unittest/result.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/unittest/runner.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/unittest/signals.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/unittest/suite.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/unittest/util.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/urllib'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/urllib/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/urllib/error.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/urllib/parse.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/urllib/request.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/urllib/response.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/urllib/robotparser.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/uu.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/uuid.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/venv'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/venv/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/venv/__main__.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/venv/scripts'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/venv/scripts/common'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/venv/scripts/posix'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/warnings.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/wave.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/weakref.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/webbrowser.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/wsgiref'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/wsgiref/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/wsgiref/handlers.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/wsgiref/headers.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/wsgiref/simple_server.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/wsgiref/types.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/wsgiref/util.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/wsgiref/validate.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/xdrlib.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/xml'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/xml/__init__.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/xml/dom'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/xml/dom/NodeFilter.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/xml/dom/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/xml/dom/domreg.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/xml/dom/expatbuilder.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/xml/dom/minicompat.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/xml/dom/minidom.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/xml/dom/pulldom.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/xml/dom/xmlbuilder.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/xml/etree'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/xml/etree/ElementInclude.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/xml/etree/ElementPath.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/xml/etree/ElementTree.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/xml/etree/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/xml/etree/cElementTree.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/xml/parsers'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/xml/parsers/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/xml/parsers/expat.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/xml/sax'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/xml/sax/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/xml/sax/_exceptions.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/xml/sax/expatreader.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/xml/sax/handler.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/xml/sax/saxutils.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/xml/sax/xmlreader.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/xmlrpc'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/xmlrpc/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/xmlrpc/client.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/xmlrpc/server.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/zipapp.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/zipfile'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/zipfile/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/zipfile/__main__.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/zipfile/_path'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/zipfile/_path/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/zipfile/_path/glob.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/zipimport.py'...
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/zoneinfo'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/zoneinfo/__init__.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/zoneinfo/_common.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/zoneinfo/_tzpath.py'...
Compiling '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/zoneinfo/_zoneinfo.py'...
PYTHONPATH=/BuggyBox/python/3.12.0/bootstrap/lib/python3.12  \
	./python -E -Wi /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/compileall.py \
	-o 0 -o 1 -o 2 -j0 -d /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/site-packages -f \
	-x badsyntax /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/site-packages
Listing '/BuggyBox/python/3.12.0/bootstrap/lib/python3.12/site-packages'...
PYTHONPATH=/BuggyBox/python/3.12.0/bootstrap/lib/python3.12  \
	./python -E -m lib2to3.pgen2.driver /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/Grammar.txt
Generating grammar tables from /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/Grammar.txt
Writing grammar tables to /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/Grammar3.12.0.final.0.pickle
PYTHONPATH=/BuggyBox/python/3.12.0/bootstrap/lib/python3.12  \
	./python -E -m lib2to3.pgen2.driver /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/PatternGrammar.txt
Generating grammar tables from /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/PatternGrammar.txt
Writing grammar tables to /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib2to3/PatternGrammar3.12.0.final.0.pickle
Creating directory /BuggyBox/python/3.12.0/bootstrap/include
Creating directory /BuggyBox/python/3.12.0/bootstrap/include/python3.12
Creating directory /BuggyBox/python/3.12.0/bootstrap/include/python3.12/cpython
Creating directory /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/Python.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/abstract.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/bltinmodule.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/boolobject.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/bytearrayobject.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/bytesobject.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/ceval.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/codecs.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/compile.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/complexobject.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/datetime.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/descrobject.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/dictobject.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/dynamic_annotations.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/enumobject.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/errcode.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/exports.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/fileobject.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/fileutils.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/floatobject.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/frameobject.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/genericaliasobject.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/import.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/interpreteridobject.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/intrcheck.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/iterobject.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/listobject.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/longobject.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/marshal.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/memoryobject.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/methodobject.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/modsupport.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/moduleobject.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/object.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/objimpl.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/opcode.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/osdefs.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/osmodule.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/patchlevel.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/py_curses.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/pybuffer.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/pycapsule.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/pydtrace.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/pyerrors.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/pyexpat.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/pyframe.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/pyhash.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/pylifecycle.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/pymacconfig.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/pymacro.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/pymath.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/pymem.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/pyport.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/pystate.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/pystats.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/pystrcmp.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/pystrtod.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/pythonrun.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/pythread.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/pytypedefs.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/rangeobject.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/setobject.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/sliceobject.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/structmember.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/structseq.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/sysmodule.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/traceback.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/tracemalloc.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/tupleobject.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/typeslots.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/unicodeobject.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/warnings.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/weakrefobject.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/cpython/abstract.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/cpython
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/cpython/bytearrayobject.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/cpython
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/cpython/bytesobject.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/cpython
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/cpython/cellobject.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/cpython
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/cpython/ceval.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/cpython
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/cpython/classobject.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/cpython
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/cpython/code.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/cpython
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/cpython/compile.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/cpython
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/cpython/complexobject.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/cpython
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/cpython/context.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/cpython
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/cpython/descrobject.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/cpython
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/cpython/dictobject.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/cpython
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/cpython/fileobject.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/cpython
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/cpython/fileutils.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/cpython
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/cpython/floatobject.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/cpython
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/cpython/frameobject.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/cpython
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/cpython/funcobject.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/cpython
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/cpython/genobject.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/cpython
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/cpython/import.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/cpython
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/cpython/initconfig.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/cpython
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/cpython/interpreteridobject.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/cpython
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/cpython/listobject.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/cpython
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/cpython/longintrepr.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/cpython
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/cpython/longobject.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/cpython
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/cpython/memoryobject.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/cpython
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/cpython/methodobject.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/cpython
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/cpython/modsupport.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/cpython
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/cpython/object.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/cpython
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/cpython/objimpl.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/cpython
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/cpython/odictobject.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/cpython
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/cpython/picklebufobject.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/cpython
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/cpython/pthread_stubs.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/cpython
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/cpython/pyctype.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/cpython
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/cpython/pydebug.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/cpython
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/cpython/pyerrors.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/cpython
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/cpython/pyfpe.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/cpython
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/cpython/pyframe.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/cpython
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/cpython/pylifecycle.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/cpython
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/cpython/pymem.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/cpython
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/cpython/pystate.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/cpython
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/cpython/pythonrun.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/cpython
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/cpython/pythread.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/cpython
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/cpython/pytime.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/cpython
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/cpython/setobject.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/cpython
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/cpython/sysmodule.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/cpython
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/cpython/traceback.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/cpython
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/cpython/tupleobject.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/cpython
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/cpython/unicodeobject.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/cpython
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/cpython/warnings.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/cpython
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/cpython/weakrefobject.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/cpython
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_abstract.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_asdl.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_ast.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_ast_state.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_atexit.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_atomic.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_atomic_funcs.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_bitutils.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_blocks_output_buffer.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_bytes_methods.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_bytesobject.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_call.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_ceval.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_ceval_state.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_code.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_compile.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_condvar.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_context.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_descrobject.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_dict.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_dict_state.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_dtoa.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_emscripten_signal.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_exceptions.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_faulthandler.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_fileutils.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_fileutils_windows.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_floatobject.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_flowgraph.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_format.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_frame.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_function.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_gc.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_genobject.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_getopt.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_gil.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_global_objects.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_global_objects_fini_generated.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_global_strings.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_hamt.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_hashtable.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_import.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_initconfig.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_instruments.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_interp.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_intrinsics.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_list.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_long.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_memoryobject.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_moduleobject.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_namespace.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_object.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_object_state.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_obmalloc.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_obmalloc_init.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_opcode.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_opcode_utils.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_parser.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_pathconfig.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_pyarena.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_pyerrors.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_pyhash.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_pylifecycle.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_pymath.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_pymem.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_pymem_init.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_pystate.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_pythread.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_range.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_runtime.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_runtime_init.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_runtime_init_generated.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_signal.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_sliceobject.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_strhex.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_structseq.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_symtable.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_sysmodule.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_time.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_token.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_traceback.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_tracemalloc.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_tuple.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_typeobject.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_typevarobject.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_ucnhash.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_unicodeobject.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_unicodeobject_generated.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_unionobject.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Include/internal/pycore_warnings.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/internal
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 pyconfig.h /BuggyBox/python/3.12.0/bootstrap/include/python3.12/pyconfig.h
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/config-3.12-x86_64-linux-gnu
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/pkgconfig
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 Modules/config.c /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/config-3.12-x86_64-linux-gnu/config.c
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Modules/config.c.in /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/config-3.12-x86_64-linux-gnu/config.c.in
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 Makefile /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/config-3.12-x86_64-linux-gnu/Makefile
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Modules/Setup /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/config-3.12-x86_64-linux-gnu/Setup
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 Modules/Setup.bootstrap /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/config-3.12-x86_64-linux-gnu/Setup.bootstrap
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 Modules/Setup.stdlib /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/config-3.12-x86_64-linux-gnu/Setup.stdlib
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 Modules/Setup.local /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/config-3.12-x86_64-linux-gnu/Setup.local
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 Misc/python.pc /BuggyBox/python/3.12.0/bootstrap/lib/pkgconfig/python-3.12.pc
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 Misc/python-embed.pc /BuggyBox/python/3.12.0/bootstrap/lib/pkgconfig/python-3.12-embed.pc
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c /bb.download/source/Python-3.12.0/Modules/makesetup /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/config-3.12-x86_64-linux-gnu/makesetup
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c /bb.download/source/Python-3.12.0/install-sh /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/config-3.12-x86_64-linux-gnu/install-sh
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c python-config.py /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/config-3.12-x86_64-linux-gnu/python-config.py
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c python-config /BuggyBox/python/3.12.0/bootstrap/bin/python3.12-config
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c build/scripts-3.12/2to3-3.12 /BuggyBox/python/3.12.0/bootstrap/bin/2to3-3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c build/scripts-3.12/idle3.12 /BuggyBox/python/3.12.0/bootstrap/bin/idle3.12
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c build/scripts-3.12/pydoc3.12 /BuggyBox/python/3.12.0/bootstrap/bin/pydoc3.12
Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib-dynload
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 755 Modules/array.cpython-312-x86_64-linux-gnu.so /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib-dynload/array.cpython-312-x86_64-linux-gnu.so
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 755 Modules/_asyncio.cpython-312-x86_64-linux-gnu.so /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib-dynload/_asyncio.cpython-312-x86_64-linux-gnu.so
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 755 Modules/_bisect.cpython-312-x86_64-linux-gnu.so /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib-dynload/_bisect.cpython-312-x86_64-linux-gnu.so
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 755 Modules/_contextvars.cpython-312-x86_64-linux-gnu.so /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib-dynload/_contextvars.cpython-312-x86_64-linux-gnu.so
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 755 Modules/_csv.cpython-312-x86_64-linux-gnu.so /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib-dynload/_csv.cpython-312-x86_64-linux-gnu.so
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 755 Modules/_heapq.cpython-312-x86_64-linux-gnu.so /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib-dynload/_heapq.cpython-312-x86_64-linux-gnu.so
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 755 Modules/_json.cpython-312-x86_64-linux-gnu.so /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib-dynload/_json.cpython-312-x86_64-linux-gnu.so
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 755 Modules/_lsprof.cpython-312-x86_64-linux-gnu.so /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib-dynload/_lsprof.cpython-312-x86_64-linux-gnu.so
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 755 Modules/_opcode.cpython-312-x86_64-linux-gnu.so /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib-dynload/_opcode.cpython-312-x86_64-linux-gnu.so
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 755 Modules/_pickle.cpython-312-x86_64-linux-gnu.so /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib-dynload/_pickle.cpython-312-x86_64-linux-gnu.so
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 755 Modules/_queue.cpython-312-x86_64-linux-gnu.so /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib-dynload/_queue.cpython-312-x86_64-linux-gnu.so
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 755 Modules/_random.cpython-312-x86_64-linux-gnu.so /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib-dynload/_random.cpython-312-x86_64-linux-gnu.so
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 755 Modules/_struct.cpython-312-x86_64-linux-gnu.so /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib-dynload/_struct.cpython-312-x86_64-linux-gnu.so
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 755 Modules/_xxsubinterpreters.cpython-312-x86_64-linux-gnu.so /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib-dynload/_xxsubinterpreters.cpython-312-x86_64-linux-gnu.so
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 755 Modules/_xxinterpchannels.cpython-312-x86_64-linux-gnu.so /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib-dynload/_xxinterpchannels.cpython-312-x86_64-linux-gnu.so
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 755 Modules/_zoneinfo.cpython-312-x86_64-linux-gnu.so /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib-dynload/_zoneinfo.cpython-312-x86_64-linux-gnu.so
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 755 Modules/audioop.cpython-312-x86_64-linux-gnu.so /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib-dynload/audioop.cpython-312-x86_64-linux-gnu.so
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 755 Modules/math.cpython-312-x86_64-linux-gnu.so /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib-dynload/math.cpython-312-x86_64-linux-gnu.so
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 755 Modules/cmath.cpython-312-x86_64-linux-gnu.so /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib-dynload/cmath.cpython-312-x86_64-linux-gnu.so
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 755 Modules/_statistics.cpython-312-x86_64-linux-gnu.so /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib-dynload/_statistics.cpython-312-x86_64-linux-gnu.so
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 755 Modules/_datetime.cpython-312-x86_64-linux-gnu.so /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib-dynload/_datetime.cpython-312-x86_64-linux-gnu.so
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 755 Modules/_decimal.cpython-312-x86_64-linux-gnu.so /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib-dynload/_decimal.cpython-312-x86_64-linux-gnu.so
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 755 Modules/binascii.cpython-312-x86_64-linux-gnu.so /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib-dynload/binascii.cpython-312-x86_64-linux-gnu.so
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 755 Modules/zlib.cpython-312-x86_64-linux-gnu.so /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib-dynload/zlib.cpython-312-x86_64-linux-gnu.so
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 755 Modules/_md5.cpython-312-x86_64-linux-gnu.so /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib-dynload/_md5.cpython-312-x86_64-linux-gnu.so
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 755 Modules/_sha1.cpython-312-x86_64-linux-gnu.so /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib-dynload/_sha1.cpython-312-x86_64-linux-gnu.so
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 755 Modules/_sha2.cpython-312-x86_64-linux-gnu.so /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib-dynload/_sha2.cpython-312-x86_64-linux-gnu.so
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 755 Modules/_sha3.cpython-312-x86_64-linux-gnu.so /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib-dynload/_sha3.cpython-312-x86_64-linux-gnu.so
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 755 Modules/_blake2.cpython-312-x86_64-linux-gnu.so /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib-dynload/_blake2.cpython-312-x86_64-linux-gnu.so
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 755 Modules/pyexpat.cpython-312-x86_64-linux-gnu.so /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib-dynload/pyexpat.cpython-312-x86_64-linux-gnu.so
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 755 Modules/_elementtree.cpython-312-x86_64-linux-gnu.so /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib-dynload/_elementtree.cpython-312-x86_64-linux-gnu.so
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 755 Modules/_codecs_cn.cpython-312-x86_64-linux-gnu.so /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib-dynload/_codecs_cn.cpython-312-x86_64-linux-gnu.so
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 755 Modules/_codecs_hk.cpython-312-x86_64-linux-gnu.so /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib-dynload/_codecs_hk.cpython-312-x86_64-linux-gnu.so
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 755 Modules/_codecs_iso2022.cpython-312-x86_64-linux-gnu.so /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib-dynload/_codecs_iso2022.cpython-312-x86_64-linux-gnu.so
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 755 Modules/_codecs_jp.cpython-312-x86_64-linux-gnu.so /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib-dynload/_codecs_jp.cpython-312-x86_64-linux-gnu.so
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 755 Modules/_codecs_kr.cpython-312-x86_64-linux-gnu.so /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib-dynload/_codecs_kr.cpython-312-x86_64-linux-gnu.so
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 755 Modules/_codecs_tw.cpython-312-x86_64-linux-gnu.so /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib-dynload/_codecs_tw.cpython-312-x86_64-linux-gnu.so
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 755 Modules/_multibytecodec.cpython-312-x86_64-linux-gnu.so /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib-dynload/_multibytecodec.cpython-312-x86_64-linux-gnu.so
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 755 Modules/unicodedata.cpython-312-x86_64-linux-gnu.so /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib-dynload/unicodedata.cpython-312-x86_64-linux-gnu.so
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 755 Modules/_crypt.cpython-312-x86_64-linux-gnu.so /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib-dynload/_crypt.cpython-312-x86_64-linux-gnu.so
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 755 Modules/fcntl.cpython-312-x86_64-linux-gnu.so /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib-dynload/fcntl.cpython-312-x86_64-linux-gnu.so
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 755 Modules/grp.cpython-312-x86_64-linux-gnu.so /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib-dynload/grp.cpython-312-x86_64-linux-gnu.so
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 755 Modules/mmap.cpython-312-x86_64-linux-gnu.so /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib-dynload/mmap.cpython-312-x86_64-linux-gnu.so
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 755 Modules/ossaudiodev.cpython-312-x86_64-linux-gnu.so /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib-dynload/ossaudiodev.cpython-312-x86_64-linux-gnu.so
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 755 Modules/_posixsubprocess.cpython-312-x86_64-linux-gnu.so /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib-dynload/_posixsubprocess.cpython-312-x86_64-linux-gnu.so
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 755 Modules/resource.cpython-312-x86_64-linux-gnu.so /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib-dynload/resource.cpython-312-x86_64-linux-gnu.so
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 755 Modules/select.cpython-312-x86_64-linux-gnu.so /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib-dynload/select.cpython-312-x86_64-linux-gnu.so
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 755 Modules/_socket.cpython-312-x86_64-linux-gnu.so /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib-dynload/_socket.cpython-312-x86_64-linux-gnu.so
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 755 Modules/spwd.cpython-312-x86_64-linux-gnu.so /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib-dynload/spwd.cpython-312-x86_64-linux-gnu.so
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 755 Modules/syslog.cpython-312-x86_64-linux-gnu.so /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib-dynload/syslog.cpython-312-x86_64-linux-gnu.so
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 755 Modules/termios.cpython-312-x86_64-linux-gnu.so /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib-dynload/termios.cpython-312-x86_64-linux-gnu.so
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 755 Modules/_posixshmem.cpython-312-x86_64-linux-gnu.so /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib-dynload/_posixshmem.cpython-312-x86_64-linux-gnu.so
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 755 Modules/_multiprocessing.cpython-312-x86_64-linux-gnu.so /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib-dynload/_multiprocessing.cpython-312-x86_64-linux-gnu.so
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 755 Modules/xxsubtype.cpython-312-x86_64-linux-gnu.so /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib-dynload/xxsubtype.cpython-312-x86_64-linux-gnu.so
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 755 Modules/_xxtestfuzz.cpython-312-x86_64-linux-gnu.so /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib-dynload/_xxtestfuzz.cpython-312-x86_64-linux-gnu.so
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 755 Modules/_testbuffer.cpython-312-x86_64-linux-gnu.so /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib-dynload/_testbuffer.cpython-312-x86_64-linux-gnu.so
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 755 Modules/_testinternalcapi.cpython-312-x86_64-linux-gnu.so /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib-dynload/_testinternalcapi.cpython-312-x86_64-linux-gnu.so
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 755 Modules/_testcapi.cpython-312-x86_64-linux-gnu.so /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib-dynload/_testcapi.cpython-312-x86_64-linux-gnu.so
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 755 Modules/_testclinic.cpython-312-x86_64-linux-gnu.so /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib-dynload/_testclinic.cpython-312-x86_64-linux-gnu.so
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 755 Modules/_testimportmultiple.cpython-312-x86_64-linux-gnu.so /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib-dynload/_testimportmultiple.cpython-312-x86_64-linux-gnu.so
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 755 Modules/_testmultiphase.cpython-312-x86_64-linux-gnu.so /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib-dynload/_testmultiphase.cpython-312-x86_64-linux-gnu.so
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 755 Modules/_testsinglephase.cpython-312-x86_64-linux-gnu.so /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib-dynload/_testsinglephase.cpython-312-x86_64-linux-gnu.so
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 755 Modules/xxlimited.cpython-312-x86_64-linux-gnu.so /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib-dynload/xxlimited.cpython-312-x86_64-linux-gnu.so
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 755 Modules/xxlimited_35.cpython-312-x86_64-linux-gnu.so /BuggyBox/python/3.12.0/bootstrap/lib/python3.12/lib-dynload/xxlimited_35.cpython-312-x86_64-linux-gnu.so
Creating directory /BuggyBox/python/3.12.0/bootstrap/share/man
Creating directory /BuggyBox/python/3.12.0/bootstrap/share/man/man1
/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -m 644 /bb.download/source/Python-3.12.0/Misc/python.man \
	/BuggyBox/python/3.12.0/bootstrap/share/man/man1/python3.12.1
if test ! -d /BuggyBox/python/3.12.0/bootstrap/lib/pkgconfig; then \
	echo "Creating directory /BuggyBox/python/3.12.0/bootstrap/lib/pkgconfig"; \
	/BuggyBox/coreutils/9.4/bootstrap/bin/install -c -d -m 755 /BuggyBox/python/3.12.0/bootstrap/lib/pkgconfig; \
fi
if test -f /BuggyBox/python/3.12.0/bootstrap/bin/python3 -o -h /BuggyBox/python/3.12.0/bootstrap/bin/python3; \
then rm -f /BuggyBox/python/3.12.0/bootstrap/bin/python3; \
else true; \
fi
(cd /BuggyBox/python/3.12.0/bootstrap/bin; ln -s python3.12 python3)
if test "3.12" != "3.12"; then \
	rm -f /BuggyBox/python/3.12.0/bootstrap/bin/python3.12-config; \
	(cd /BuggyBox/python/3.12.0/bootstrap/bin; ln -s python3.12-config python3.12-config); \
	rm -f /BuggyBox/python/3.12.0/bootstrap/lib/pkgconfig/python-3.12.pc; \
	(cd /BuggyBox/python/3.12.0/bootstrap/lib/pkgconfig; ln -s python-3.12.pc python-3.12.pc); \
	rm -f /BuggyBox/python/3.12.0/bootstrap/lib/pkgconfig/python-3.12-embed.pc; \
	(cd /BuggyBox/python/3.12.0/bootstrap/lib/pkgconfig; ln -s python-3.12-embed.pc python-3.12-embed.pc); \
fi
rm -f /BuggyBox/python/3.12.0/bootstrap/bin/python3-config
(cd /BuggyBox/python/3.12.0/bootstrap/bin; ln -s python3.12-config python3-config)
rm -f /BuggyBox/python/3.12.0/bootstrap/lib/pkgconfig/python3.pc
(cd /BuggyBox/python/3.12.0/bootstrap/lib/pkgconfig; ln -s python-3.12.pc python3.pc)
rm -f /BuggyBox/python/3.12.0/bootstrap/lib/pkgconfig/python3-embed.pc
(cd /BuggyBox/python/3.12.0/bootstrap/lib/pkgconfig; ln -s python-3.12-embed.pc python3-embed.pc)
rm -f /BuggyBox/python/3.12.0/bootstrap/bin/idle3
(cd /BuggyBox/python/3.12.0/bootstrap/bin; ln -s idle3.12 idle3)
rm -f /BuggyBox/python/3.12.0/bootstrap/bin/pydoc3
(cd /BuggyBox/python/3.12.0/bootstrap/bin; ln -s pydoc3.12 pydoc3)
rm -f /BuggyBox/python/3.12.0/bootstrap/bin/2to3
(cd /BuggyBox/python/3.12.0/bootstrap/bin; ln -s 2to3-3.12 2to3)
if test "x" != "x" ; then \
	rm -f /BuggyBox/python/3.12.0/bootstrap/bin/python3-32; \
	(cd /BuggyBox/python/3.12.0/bootstrap/bin; ln -s python3.12-32 python3-32) \
fi
if test "x" != "x" ; then \
	rm -f /BuggyBox/python/3.12.0/bootstrap/bin/python3-intel64; \
	(cd /BuggyBox/python/3.12.0/bootstrap/bin; ln -s python3.12-intel64 python3-intel64) \
fi
rm -f /BuggyBox/python/3.12.0/bootstrap/share/man/man1/python3.1
(cd /BuggyBox/python/3.12.0/bootstrap/share/man/man1; ln -s python3.12.1 python3.1)
if test "xupgrade" != "xno"  ; then \
	case upgrade in \
		upgrade) ensurepip="--upgrade" ;; \
		install|*) ensurepip="" ;; \
	esac; \
	 ./python -E -m ensurepip \
		$ensurepip --root=/ ; \
fi
Looking in links: /tmp/tmpvlgvut_1
Processing /tmp/tmpvlgvut_1/pip-23.2.1-py3-none-any.whl
Installing collected packages: pip
Successfully installed pip
Stderr
  WARNING: The scripts pip3 and pip3.12 are installed in '/BuggyBox/python/3.12.0/bootstrap/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.
WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv