@agent-webui/ai-desk-python-darwin-x64 1.0.29-beta1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -0
- package/package.json +20 -0
- package/python/bin/idle3.13 +7 -0
- package/python/bin/pip +8 -0
- package/python/bin/pip3 +8 -0
- package/python/bin/pip3.13 +8 -0
- package/python/bin/pydoc3.13 +7 -0
- package/python/bin/python3.13 +0 -0
- package/python/bin/python3.13-config +76 -0
- package/python/include/python3.13/Python.h +140 -0
- package/python/include/python3.13/abstract.h +921 -0
- package/python/include/python3.13/bltinmodule.h +14 -0
- package/python/include/python3.13/boolobject.h +54 -0
- package/python/include/python3.13/bytearrayobject.h +44 -0
- package/python/include/python3.13/bytesobject.h +66 -0
- package/python/include/python3.13/ceval.h +145 -0
- package/python/include/python3.13/codecs.h +176 -0
- package/python/include/python3.13/compile.h +22 -0
- package/python/include/python3.13/complexobject.h +30 -0
- package/python/include/python3.13/cpython/abstract.h +87 -0
- package/python/include/python3.13/cpython/bytearrayobject.h +34 -0
- package/python/include/python3.13/cpython/bytesobject.h +37 -0
- package/python/include/python3.13/cpython/cellobject.h +44 -0
- package/python/include/python3.13/cpython/ceval.h +25 -0
- package/python/include/python3.13/cpython/classobject.h +71 -0
- package/python/include/python3.13/cpython/code.h +358 -0
- package/python/include/python3.13/cpython/compile.h +50 -0
- package/python/include/python3.13/cpython/complexobject.h +33 -0
- package/python/include/python3.13/cpython/context.h +74 -0
- package/python/include/python3.13/cpython/critical_section.h +134 -0
- package/python/include/python3.13/cpython/descrobject.h +62 -0
- package/python/include/python3.13/cpython/dictobject.h +102 -0
- package/python/include/python3.13/cpython/fileobject.h +16 -0
- package/python/include/python3.13/cpython/fileutils.h +8 -0
- package/python/include/python3.13/cpython/floatobject.h +27 -0
- package/python/include/python3.13/cpython/frameobject.h +35 -0
- package/python/include/python3.13/cpython/funcobject.h +184 -0
- package/python/include/python3.13/cpython/genobject.h +83 -0
- package/python/include/python3.13/cpython/import.h +25 -0
- package/python/include/python3.13/cpython/initconfig.h +274 -0
- package/python/include/python3.13/cpython/listobject.h +53 -0
- package/python/include/python3.13/cpython/lock.h +63 -0
- package/python/include/python3.13/cpython/longintrepr.h +146 -0
- package/python/include/python3.13/cpython/longobject.h +116 -0
- package/python/include/python3.13/cpython/memoryobject.h +50 -0
- package/python/include/python3.13/cpython/methodobject.h +66 -0
- package/python/include/python3.13/cpython/modsupport.h +26 -0
- package/python/include/python3.13/cpython/monitoring.h +250 -0
- package/python/include/python3.13/cpython/object.h +535 -0
- package/python/include/python3.13/cpython/objimpl.h +104 -0
- package/python/include/python3.13/cpython/odictobject.h +43 -0
- package/python/include/python3.13/cpython/picklebufobject.h +31 -0
- package/python/include/python3.13/cpython/pthread_stubs.h +105 -0
- package/python/include/python3.13/cpython/pyatomic.h +569 -0
- package/python/include/python3.13/cpython/pyatomic_gcc.h +551 -0
- package/python/include/python3.13/cpython/pyatomic_msc.h +1095 -0
- package/python/include/python3.13/cpython/pyatomic_std.h +976 -0
- package/python/include/python3.13/cpython/pyctype.h +39 -0
- package/python/include/python3.13/cpython/pydebug.h +38 -0
- package/python/include/python3.13/cpython/pyerrors.h +132 -0
- package/python/include/python3.13/cpython/pyfpe.h +15 -0
- package/python/include/python3.13/cpython/pyframe.h +45 -0
- package/python/include/python3.13/cpython/pyhash.h +47 -0
- package/python/include/python3.13/cpython/pylifecycle.h +92 -0
- package/python/include/python3.13/cpython/pymem.h +84 -0
- package/python/include/python3.13/cpython/pystate.h +277 -0
- package/python/include/python3.13/cpython/pystats.h +175 -0
- package/python/include/python3.13/cpython/pythonrun.h +96 -0
- package/python/include/python3.13/cpython/pythread.h +43 -0
- package/python/include/python3.13/cpython/pytime.h +27 -0
- package/python/include/python3.13/cpython/setobject.h +71 -0
- package/python/include/python3.13/cpython/sysmodule.h +22 -0
- package/python/include/python3.13/cpython/traceback.h +13 -0
- package/python/include/python3.13/cpython/tracemalloc.h +32 -0
- package/python/include/python3.13/cpython/tupleobject.h +38 -0
- package/python/include/python3.13/cpython/unicodeobject.h +703 -0
- package/python/include/python3.13/cpython/warnings.h +20 -0
- package/python/include/python3.13/cpython/weakrefobject.h +63 -0
- package/python/include/python3.13/critical_section.h +16 -0
- package/python/include/python3.13/datetime.h +267 -0
- package/python/include/python3.13/descrobject.h +100 -0
- package/python/include/python3.13/dictobject.h +108 -0
- package/python/include/python3.13/dynamic_annotations.h +499 -0
- package/python/include/python3.13/enumobject.h +17 -0
- package/python/include/python3.13/errcode.h +45 -0
- package/python/include/python3.13/exports.h +108 -0
- package/python/include/python3.13/fileobject.h +41 -0
- package/python/include/python3.13/fileutils.h +62 -0
- package/python/include/python3.13/floatobject.h +54 -0
- package/python/include/python3.13/frameobject.h +20 -0
- package/python/include/python3.13/genericaliasobject.h +14 -0
- package/python/include/python3.13/import.h +103 -0
- package/python/include/python3.13/internal/mimalloc/mimalloc/atomic.h +392 -0
- package/python/include/python3.13/internal/mimalloc/mimalloc/internal.h +969 -0
- package/python/include/python3.13/internal/mimalloc/mimalloc/prim.h +329 -0
- package/python/include/python3.13/internal/mimalloc/mimalloc/track.h +147 -0
- package/python/include/python3.13/internal/mimalloc/mimalloc/types.h +721 -0
- package/python/include/python3.13/internal/mimalloc/mimalloc.h +565 -0
- package/python/include/python3.13/internal/pycore_abstract.h +61 -0
- package/python/include/python3.13/internal/pycore_asdl.h +112 -0
- package/python/include/python3.13/internal/pycore_ast.h +926 -0
- package/python/include/python3.13/internal/pycore_ast_state.h +268 -0
- package/python/include/python3.13/internal/pycore_atexit.h +67 -0
- package/python/include/python3.13/internal/pycore_backoff.h +145 -0
- package/python/include/python3.13/internal/pycore_bitutils.h +186 -0
- package/python/include/python3.13/internal/pycore_blocks_output_buffer.h +321 -0
- package/python/include/python3.13/internal/pycore_brc.h +74 -0
- package/python/include/python3.13/internal/pycore_bytes_methods.h +82 -0
- package/python/include/python3.13/internal/pycore_bytesobject.h +152 -0
- package/python/include/python3.13/internal/pycore_call.h +205 -0
- package/python/include/python3.13/internal/pycore_capsule.h +17 -0
- package/python/include/python3.13/internal/pycore_cell.h +48 -0
- package/python/include/python3.13/internal/pycore_ceval.h +305 -0
- package/python/include/python3.13/internal/pycore_ceval_state.h +137 -0
- package/python/include/python3.13/internal/pycore_code.h +603 -0
- package/python/include/python3.13/internal/pycore_codecs.h +86 -0
- package/python/include/python3.13/internal/pycore_compile.h +118 -0
- package/python/include/python3.13/internal/pycore_complexobject.h +25 -0
- package/python/include/python3.13/internal/pycore_condvar.h +93 -0
- package/python/include/python3.13/internal/pycore_context.h +61 -0
- package/python/include/python3.13/internal/pycore_critical_section.h +233 -0
- package/python/include/python3.13/internal/pycore_crossinterp.h +340 -0
- package/python/include/python3.13/internal/pycore_descrobject.h +28 -0
- package/python/include/python3.13/internal/pycore_dict.h +340 -0
- package/python/include/python3.13/internal/pycore_dict_state.h +32 -0
- package/python/include/python3.13/internal/pycore_dtoa.h +75 -0
- package/python/include/python3.13/internal/pycore_emscripten_signal.h +30 -0
- package/python/include/python3.13/internal/pycore_emscripten_trampoline.h +81 -0
- package/python/include/python3.13/internal/pycore_exceptions.h +40 -0
- package/python/include/python3.13/internal/pycore_faulthandler.h +99 -0
- package/python/include/python3.13/internal/pycore_fileutils.h +335 -0
- package/python/include/python3.13/internal/pycore_fileutils_windows.h +98 -0
- package/python/include/python3.13/internal/pycore_floatobject.h +62 -0
- package/python/include/python3.13/internal/pycore_flowgraph.h +40 -0
- package/python/include/python3.13/internal/pycore_format.h +27 -0
- package/python/include/python3.13/internal/pycore_frame.h +370 -0
- package/python/include/python3.13/internal/pycore_freelist.h +153 -0
- package/python/include/python3.13/internal/pycore_function.h +55 -0
- package/python/include/python3.13/internal/pycore_gc.h +365 -0
- package/python/include/python3.13/internal/pycore_genobject.h +32 -0
- package/python/include/python3.13/internal/pycore_getopt.h +22 -0
- package/python/include/python3.13/internal/pycore_gil.h +66 -0
- package/python/include/python3.13/internal/pycore_global_objects.h +105 -0
- package/python/include/python3.13/internal/pycore_global_objects_fini_generated.h +1554 -0
- package/python/include/python3.13/internal/pycore_global_strings.h +814 -0
- package/python/include/python3.13/internal/pycore_hamt.h +134 -0
- package/python/include/python3.13/internal/pycore_hashtable.h +150 -0
- package/python/include/python3.13/internal/pycore_identifier.h +20 -0
- package/python/include/python3.13/internal/pycore_import.h +213 -0
- package/python/include/python3.13/internal/pycore_importdl.h +139 -0
- package/python/include/python3.13/internal/pycore_initconfig.h +200 -0
- package/python/include/python3.13/internal/pycore_instruction_sequence.h +73 -0
- package/python/include/python3.13/internal/pycore_instruments.h +75 -0
- package/python/include/python3.13/internal/pycore_interp.h +423 -0
- package/python/include/python3.13/internal/pycore_intrinsics.h +51 -0
- package/python/include/python3.13/internal/pycore_jit.h +25 -0
- package/python/include/python3.13/internal/pycore_list.h +66 -0
- package/python/include/python3.13/internal/pycore_llist.h +106 -0
- package/python/include/python3.13/internal/pycore_lock.h +241 -0
- package/python/include/python3.13/internal/pycore_long.h +310 -0
- package/python/include/python3.13/internal/pycore_memoryobject.h +20 -0
- package/python/include/python3.13/internal/pycore_mimalloc.h +69 -0
- package/python/include/python3.13/internal/pycore_modsupport.h +107 -0
- package/python/include/python3.13/internal/pycore_moduleobject.h +56 -0
- package/python/include/python3.13/internal/pycore_namespace.h +21 -0
- package/python/include/python3.13/internal/pycore_object.h +867 -0
- package/python/include/python3.13/internal/pycore_object_alloc.h +71 -0
- package/python/include/python3.13/internal/pycore_object_stack.h +97 -0
- package/python/include/python3.13/internal/pycore_object_state.h +41 -0
- package/python/include/python3.13/internal/pycore_obmalloc.h +702 -0
- package/python/include/python3.13/internal/pycore_obmalloc_init.h +66 -0
- package/python/include/python3.13/internal/pycore_opcode_metadata.h +1922 -0
- package/python/include/python3.13/internal/pycore_opcode_utils.h +73 -0
- package/python/include/python3.13/internal/pycore_optimizer.h +272 -0
- package/python/include/python3.13/internal/pycore_parking_lot.h +97 -0
- package/python/include/python3.13/internal/pycore_parser.h +95 -0
- package/python/include/python3.13/internal/pycore_pathconfig.h +26 -0
- package/python/include/python3.13/internal/pycore_pyarena.h +68 -0
- package/python/include/python3.13/internal/pycore_pyatomic_ft_wrappers.h +165 -0
- package/python/include/python3.13/internal/pycore_pybuffer.h +21 -0
- package/python/include/python3.13/internal/pycore_pyerrors.h +190 -0
- package/python/include/python3.13/internal/pycore_pyhash.h +107 -0
- package/python/include/python3.13/internal/pycore_pylifecycle.h +136 -0
- package/python/include/python3.13/internal/pycore_pymath.h +205 -0
- package/python/include/python3.13/internal/pycore_pymem.h +161 -0
- package/python/include/python3.13/internal/pycore_pymem_init.h +103 -0
- package/python/include/python3.13/internal/pycore_pystate.h +299 -0
- package/python/include/python3.13/internal/pycore_pystats.h +21 -0
- package/python/include/python3.13/internal/pycore_pythonrun.h +39 -0
- package/python/include/python3.13/internal/pycore_pythread.h +172 -0
- package/python/include/python3.13/internal/pycore_qsbr.h +173 -0
- package/python/include/python3.13/internal/pycore_range.h +21 -0
- package/python/include/python3.13/internal/pycore_runtime.h +410 -0
- package/python/include/python3.13/internal/pycore_runtime_init.h +329 -0
- package/python/include/python3.13/internal/pycore_runtime_init_generated.h +1551 -0
- package/python/include/python3.13/internal/pycore_semaphore.h +67 -0
- package/python/include/python3.13/internal/pycore_setobject.h +39 -0
- package/python/include/python3.13/internal/pycore_signal.h +108 -0
- package/python/include/python3.13/internal/pycore_sliceobject.h +20 -0
- package/python/include/python3.13/internal/pycore_stackref.h +195 -0
- package/python/include/python3.13/internal/pycore_strhex.h +39 -0
- package/python/include/python3.13/internal/pycore_structseq.h +40 -0
- package/python/include/python3.13/internal/pycore_symtable.h +204 -0
- package/python/include/python3.13/internal/pycore_sysmodule.h +38 -0
- package/python/include/python3.13/internal/pycore_time.h +337 -0
- package/python/include/python3.13/internal/pycore_token.h +106 -0
- package/python/include/python3.13/internal/pycore_traceback.h +106 -0
- package/python/include/python3.13/internal/pycore_tracemalloc.h +170 -0
- package/python/include/python3.13/internal/pycore_tstate.h +46 -0
- package/python/include/python3.13/internal/pycore_tuple.h +35 -0
- package/python/include/python3.13/internal/pycore_typeobject.h +245 -0
- package/python/include/python3.13/internal/pycore_typevarobject.h +27 -0
- package/python/include/python3.13/internal/pycore_ucnhash.h +36 -0
- package/python/include/python3.13/internal/pycore_unicodeobject.h +351 -0
- package/python/include/python3.13/internal/pycore_unicodeobject_generated.h +2980 -0
- package/python/include/python3.13/internal/pycore_unionobject.h +25 -0
- package/python/include/python3.13/internal/pycore_uop_ids.h +295 -0
- package/python/include/python3.13/internal/pycore_uop_metadata.h +1010 -0
- package/python/include/python3.13/internal/pycore_warnings.h +31 -0
- package/python/include/python3.13/internal/pycore_weakref.h +133 -0
- package/python/include/python3.13/intrcheck.h +23 -0
- package/python/include/python3.13/iterobject.h +24 -0
- package/python/include/python3.13/listobject.h +55 -0
- package/python/include/python3.13/lock.h +16 -0
- package/python/include/python3.13/longobject.h +114 -0
- package/python/include/python3.13/marshal.h +31 -0
- package/python/include/python3.13/memoryobject.h +34 -0
- package/python/include/python3.13/methodobject.h +137 -0
- package/python/include/python3.13/modsupport.h +146 -0
- package/python/include/python3.13/moduleobject.h +122 -0
- package/python/include/python3.13/monitoring.h +18 -0
- package/python/include/python3.13/object.h +1280 -0
- package/python/include/python3.13/objimpl.h +211 -0
- package/python/include/python3.13/opcode.h +42 -0
- package/python/include/python3.13/opcode_ids.h +244 -0
- package/python/include/python3.13/osdefs.h +57 -0
- package/python/include/python3.13/osmodule.h +17 -0
- package/python/include/python3.13/patchlevel.h +35 -0
- package/python/include/python3.13/py_curses.h +117 -0
- package/python/include/python3.13/pyatomic.h +16 -0
- package/python/include/python3.13/pybuffer.h +145 -0
- package/python/include/python3.13/pycapsule.h +58 -0
- package/python/include/python3.13/pyconfig.h +2033 -0
- package/python/include/python3.13/pydtrace.h +59 -0
- package/python/include/python3.13/pyerrors.h +335 -0
- package/python/include/python3.13/pyexpat.h +62 -0
- package/python/include/python3.13/pyframe.h +26 -0
- package/python/include/python3.13/pyhash.h +59 -0
- package/python/include/python3.13/pylifecycle.h +80 -0
- package/python/include/python3.13/pymacconfig.h +91 -0
- package/python/include/python3.13/pymacro.h +199 -0
- package/python/include/python3.13/pymath.h +62 -0
- package/python/include/python3.13/pymem.h +110 -0
- package/python/include/python3.13/pyport.h +633 -0
- package/python/include/python3.13/pystate.h +132 -0
- package/python/include/python3.13/pystats.h +26 -0
- package/python/include/python3.13/pystrcmp.h +23 -0
- package/python/include/python3.13/pystrtod.h +37 -0
- package/python/include/python3.13/pythonrun.h +49 -0
- package/python/include/python3.13/pythread.h +131 -0
- package/python/include/python3.13/pytypedefs.h +30 -0
- package/python/include/python3.13/rangeobject.h +27 -0
- package/python/include/python3.13/setobject.h +49 -0
- package/python/include/python3.13/sliceobject.h +69 -0
- package/python/include/python3.13/structmember.h +56 -0
- package/python/include/python3.13/structseq.h +46 -0
- package/python/include/python3.13/sysmodule.h +44 -0
- package/python/include/python3.13/traceback.h +26 -0
- package/python/include/python3.13/tupleobject.h +46 -0
- package/python/include/python3.13/typeslots.h +88 -0
- package/python/include/python3.13/unicodeobject.h +1021 -0
- package/python/include/python3.13/warnings.h +45 -0
- package/python/include/python3.13/weakrefobject.h +46 -0
- package/python/lib/itcl4.3.5/itcl.tcl +151 -0
- package/python/lib/itcl4.3.5/itclConfig.sh +67 -0
- package/python/lib/itcl4.3.5/itclHullCmds.tcl +562 -0
- package/python/lib/itcl4.3.5/itclWidget.tcl +447 -0
- package/python/lib/itcl4.3.5/libitcl4.3.5.dylib +0 -0
- package/python/lib/itcl4.3.5/libitclstub.a +0 -0
- package/python/lib/itcl4.3.5/libitclstub4.3.5.a +0 -0
- package/python/lib/itcl4.3.5/libtcl9itcl4.3.5.dylib +0 -0
- package/python/lib/itcl4.3.5/pkgIndex.tcl +14 -0
- package/python/lib/libpython3.13.dylib +0 -0
- package/python/lib/libtcl9.0.dylib +0 -0
- package/python/lib/libtcl9tk9.0.dylib +0 -0
- package/python/lib/pkgconfig/python-3.13-embed.pc +13 -0
- package/python/lib/pkgconfig/python-3.13.pc +13 -0
- package/python/lib/python3.13/LICENSE.txt +277 -0
- package/python/lib/python3.13/__future__.py +147 -0
- package/python/lib/python3.13/__hello__.py +16 -0
- package/python/lib/python3.13/__phello__/__init__.py +7 -0
- package/python/lib/python3.13/__phello__/spam.py +7 -0
- package/python/lib/python3.13/_aix_support.py +108 -0
- package/python/lib/python3.13/_android_support.py +192 -0
- package/python/lib/python3.13/_apple_support.py +66 -0
- package/python/lib/python3.13/_collections_abc.py +1182 -0
- package/python/lib/python3.13/_colorize.py +119 -0
- package/python/lib/python3.13/_compat_pickle.py +251 -0
- package/python/lib/python3.13/_compression.py +162 -0
- package/python/lib/python3.13/_ios_support.py +71 -0
- package/python/lib/python3.13/_markupbase.py +396 -0
- package/python/lib/python3.13/_opcode_metadata.py +343 -0
- package/python/lib/python3.13/_osx_support.py +579 -0
- package/python/lib/python3.13/_py_abc.py +147 -0
- package/python/lib/python3.13/_pydatetime.py +2639 -0
- package/python/lib/python3.13/_pydecimal.py +6351 -0
- package/python/lib/python3.13/_pyio.py +2704 -0
- package/python/lib/python3.13/_pylong.py +363 -0
- package/python/lib/python3.13/_pyrepl/__init__.py +19 -0
- package/python/lib/python3.13/_pyrepl/__main__.py +10 -0
- package/python/lib/python3.13/_pyrepl/_minimal_curses.py +68 -0
- package/python/lib/python3.13/_pyrepl/_threading_handler.py +74 -0
- package/python/lib/python3.13/_pyrepl/base_eventqueue.py +110 -0
- package/python/lib/python3.13/_pyrepl/commands.py +492 -0
- package/python/lib/python3.13/_pyrepl/completing_reader.py +295 -0
- package/python/lib/python3.13/_pyrepl/console.py +229 -0
- package/python/lib/python3.13/_pyrepl/curses.py +33 -0
- package/python/lib/python3.13/_pyrepl/fancy_termios.py +82 -0
- package/python/lib/python3.13/_pyrepl/historical_reader.py +419 -0
- package/python/lib/python3.13/_pyrepl/input.py +114 -0
- package/python/lib/python3.13/_pyrepl/keymap.py +213 -0
- package/python/lib/python3.13/_pyrepl/main.py +59 -0
- package/python/lib/python3.13/_pyrepl/mypy.ini +29 -0
- package/python/lib/python3.13/_pyrepl/pager.py +175 -0
- package/python/lib/python3.13/_pyrepl/reader.py +764 -0
- package/python/lib/python3.13/_pyrepl/readline.py +599 -0
- package/python/lib/python3.13/_pyrepl/simple_interact.py +180 -0
- package/python/lib/python3.13/_pyrepl/trace.py +21 -0
- package/python/lib/python3.13/_pyrepl/types.py +10 -0
- package/python/lib/python3.13/_pyrepl/unix_console.py +852 -0
- package/python/lib/python3.13/_pyrepl/unix_eventqueue.py +76 -0
- package/python/lib/python3.13/_pyrepl/utils.py +83 -0
- package/python/lib/python3.13/_pyrepl/windows_console.py +692 -0
- package/python/lib/python3.13/_pyrepl/windows_eventqueue.py +42 -0
- package/python/lib/python3.13/_sitebuiltins.py +91 -0
- package/python/lib/python3.13/_strptime.py +800 -0
- package/python/lib/python3.13/_sysconfigdata__darwin_darwin.py +1028 -0
- package/python/lib/python3.13/_threading_local.py +120 -0
- package/python/lib/python3.13/_weakrefset.py +205 -0
- package/python/lib/python3.13/abc.py +188 -0
- package/python/lib/python3.13/antigravity.py +17 -0
- package/python/lib/python3.13/argparse.py +2690 -0
- package/python/lib/python3.13/ast.py +1865 -0
- package/python/lib/python3.13/asyncio/__init__.py +47 -0
- package/python/lib/python3.13/asyncio/__main__.py +207 -0
- package/python/lib/python3.13/asyncio/base_events.py +2075 -0
- package/python/lib/python3.13/asyncio/base_futures.py +67 -0
- package/python/lib/python3.13/asyncio/base_subprocess.py +319 -0
- package/python/lib/python3.13/asyncio/base_tasks.py +94 -0
- package/python/lib/python3.13/asyncio/constants.py +41 -0
- package/python/lib/python3.13/asyncio/coroutines.py +109 -0
- package/python/lib/python3.13/asyncio/events.py +882 -0
- package/python/lib/python3.13/asyncio/exceptions.py +62 -0
- package/python/lib/python3.13/asyncio/format_helpers.py +84 -0
- package/python/lib/python3.13/asyncio/futures.py +425 -0
- package/python/lib/python3.13/asyncio/locks.py +617 -0
- package/python/lib/python3.13/asyncio/log.py +7 -0
- package/python/lib/python3.13/asyncio/mixins.py +21 -0
- package/python/lib/python3.13/asyncio/proactor_events.py +896 -0
- package/python/lib/python3.13/asyncio/protocols.py +216 -0
- package/python/lib/python3.13/asyncio/queues.py +307 -0
- package/python/lib/python3.13/asyncio/runners.py +216 -0
- package/python/lib/python3.13/asyncio/selector_events.py +1326 -0
- package/python/lib/python3.13/asyncio/sslproto.py +929 -0
- package/python/lib/python3.13/asyncio/staggered.py +174 -0
- package/python/lib/python3.13/asyncio/streams.py +787 -0
- package/python/lib/python3.13/asyncio/subprocess.py +229 -0
- package/python/lib/python3.13/asyncio/taskgroups.py +278 -0
- package/python/lib/python3.13/asyncio/tasks.py +1118 -0
- package/python/lib/python3.13/asyncio/threads.py +25 -0
- package/python/lib/python3.13/asyncio/timeouts.py +184 -0
- package/python/lib/python3.13/asyncio/transports.py +337 -0
- package/python/lib/python3.13/asyncio/trsock.py +98 -0
- package/python/lib/python3.13/asyncio/unix_events.py +1536 -0
- package/python/lib/python3.13/asyncio/windows_events.py +903 -0
- package/python/lib/python3.13/asyncio/windows_utils.py +173 -0
- package/python/lib/python3.13/base64.py +621 -0
- package/python/lib/python3.13/bdb.py +973 -0
- package/python/lib/python3.13/bisect.py +118 -0
- package/python/lib/python3.13/bz2.py +352 -0
- package/python/lib/python3.13/cProfile.py +197 -0
- package/python/lib/python3.13/calendar.py +813 -0
- package/python/lib/python3.13/cmd.py +409 -0
- package/python/lib/python3.13/code.py +386 -0
- package/python/lib/python3.13/codecs.py +1132 -0
- package/python/lib/python3.13/codeop.py +155 -0
- package/python/lib/python3.13/collections/__init__.py +1600 -0
- package/python/lib/python3.13/colorsys.py +166 -0
- package/python/lib/python3.13/compileall.py +470 -0
- package/python/lib/python3.13/concurrent/__init__.py +1 -0
- package/python/lib/python3.13/concurrent/futures/__init__.py +54 -0
- package/python/lib/python3.13/concurrent/futures/_base.py +654 -0
- package/python/lib/python3.13/concurrent/futures/process.py +862 -0
- package/python/lib/python3.13/concurrent/futures/thread.py +240 -0
- package/python/lib/python3.13/config-3.13-darwin/Makefile +3505 -0
- package/python/lib/python3.13/config-3.13-darwin/Setup +298 -0
- package/python/lib/python3.13/config-3.13-darwin/Setup.bootstrap +38 -0
- package/python/lib/python3.13/config-3.13-darwin/Setup.local +89 -0
- package/python/lib/python3.13/config-3.13-darwin/Setup.stdlib +181 -0
- package/python/lib/python3.13/config-3.13-darwin/config.c +260 -0
- package/python/lib/python3.13/config-3.13-darwin/config.c.in +71 -0
- package/python/lib/python3.13/config-3.13-darwin/install-sh +541 -0
- package/python/lib/python3.13/config-3.13-darwin/makesetup +341 -0
- package/python/lib/python3.13/config-3.13-darwin/python-config.py +76 -0
- package/python/lib/python3.13/config-3.13-darwin/python.o +0 -0
- package/python/lib/python3.13/configparser.py +1387 -0
- package/python/lib/python3.13/contextlib.py +814 -0
- package/python/lib/python3.13/contextvars.py +4 -0
- package/python/lib/python3.13/copy.py +306 -0
- package/python/lib/python3.13/copyreg.py +217 -0
- package/python/lib/python3.13/csv.py +513 -0
- package/python/lib/python3.13/ctypes/__init__.py +603 -0
- package/python/lib/python3.13/ctypes/_aix.py +327 -0
- package/python/lib/python3.13/ctypes/_endian.py +78 -0
- package/python/lib/python3.13/ctypes/macholib/README.ctypes +7 -0
- package/python/lib/python3.13/ctypes/macholib/__init__.py +9 -0
- package/python/lib/python3.13/ctypes/macholib/dyld.py +165 -0
- package/python/lib/python3.13/ctypes/macholib/dylib.py +42 -0
- package/python/lib/python3.13/ctypes/macholib/fetch_macholib +2 -0
- package/python/lib/python3.13/ctypes/macholib/fetch_macholib.bat +1 -0
- package/python/lib/python3.13/ctypes/macholib/framework.py +42 -0
- package/python/lib/python3.13/ctypes/util.py +388 -0
- package/python/lib/python3.13/ctypes/wintypes.py +202 -0
- package/python/lib/python3.13/curses/__init__.py +101 -0
- package/python/lib/python3.13/curses/ascii.py +99 -0
- package/python/lib/python3.13/curses/has_key.py +192 -0
- package/python/lib/python3.13/curses/panel.py +6 -0
- package/python/lib/python3.13/curses/textpad.py +204 -0
- package/python/lib/python3.13/dataclasses.py +1630 -0
- package/python/lib/python3.13/datetime.py +9 -0
- package/python/lib/python3.13/dbm/__init__.py +194 -0
- package/python/lib/python3.13/dbm/dumb.py +319 -0
- package/python/lib/python3.13/dbm/gnu.py +3 -0
- package/python/lib/python3.13/dbm/ndbm.py +3 -0
- package/python/lib/python3.13/dbm/sqlite3.py +144 -0
- package/python/lib/python3.13/decimal.py +109 -0
- package/python/lib/python3.13/difflib.py +2056 -0
- package/python/lib/python3.13/dis.py +1075 -0
- package/python/lib/python3.13/doctest.py +2919 -0
- package/python/lib/python3.13/email/__init__.py +61 -0
- package/python/lib/python3.13/email/_encoded_words.py +233 -0
- package/python/lib/python3.13/email/_header_value_parser.py +3145 -0
- package/python/lib/python3.13/email/_parseaddr.py +563 -0
- package/python/lib/python3.13/email/_policybase.py +382 -0
- package/python/lib/python3.13/email/architecture.rst +216 -0
- package/python/lib/python3.13/email/base64mime.py +115 -0
- package/python/lib/python3.13/email/charset.py +398 -0
- package/python/lib/python3.13/email/contentmanager.py +253 -0
- package/python/lib/python3.13/email/encoders.py +65 -0
- package/python/lib/python3.13/email/errors.py +117 -0
- package/python/lib/python3.13/email/feedparser.py +536 -0
- package/python/lib/python3.13/email/generator.py +530 -0
- package/python/lib/python3.13/email/header.py +582 -0
- package/python/lib/python3.13/email/headerregistry.py +618 -0
- package/python/lib/python3.13/email/iterators.py +68 -0
- package/python/lib/python3.13/email/message.py +1217 -0
- package/python/lib/python3.13/email/mime/__init__.py +0 -0
- package/python/lib/python3.13/email/mime/application.py +37 -0
- package/python/lib/python3.13/email/mime/audio.py +97 -0
- package/python/lib/python3.13/email/mime/base.py +29 -0
- package/python/lib/python3.13/email/mime/image.py +152 -0
- package/python/lib/python3.13/email/mime/message.py +33 -0
- package/python/lib/python3.13/email/mime/multipart.py +47 -0
- package/python/lib/python3.13/email/mime/nonmultipart.py +21 -0
- package/python/lib/python3.13/email/mime/text.py +40 -0
- package/python/lib/python3.13/email/parser.py +127 -0
- package/python/lib/python3.13/email/policy.py +232 -0
- package/python/lib/python3.13/email/quoprimime.py +300 -0
- package/python/lib/python3.13/email/utils.py +494 -0
- package/python/lib/python3.13/encodings/__init__.py +174 -0
- package/python/lib/python3.13/encodings/aliases.py +552 -0
- package/python/lib/python3.13/encodings/ascii.py +50 -0
- package/python/lib/python3.13/encodings/base64_codec.py +55 -0
- package/python/lib/python3.13/encodings/big5.py +39 -0
- package/python/lib/python3.13/encodings/big5hkscs.py +39 -0
- package/python/lib/python3.13/encodings/bz2_codec.py +78 -0
- package/python/lib/python3.13/encodings/charmap.py +69 -0
- package/python/lib/python3.13/encodings/cp037.py +307 -0
- package/python/lib/python3.13/encodings/cp1006.py +307 -0
- package/python/lib/python3.13/encodings/cp1026.py +307 -0
- package/python/lib/python3.13/encodings/cp1125.py +698 -0
- package/python/lib/python3.13/encodings/cp1140.py +307 -0
- package/python/lib/python3.13/encodings/cp1250.py +307 -0
- package/python/lib/python3.13/encodings/cp1251.py +307 -0
- package/python/lib/python3.13/encodings/cp1252.py +307 -0
- package/python/lib/python3.13/encodings/cp1253.py +307 -0
- package/python/lib/python3.13/encodings/cp1254.py +307 -0
- package/python/lib/python3.13/encodings/cp1255.py +307 -0
- package/python/lib/python3.13/encodings/cp1256.py +307 -0
- package/python/lib/python3.13/encodings/cp1257.py +307 -0
- package/python/lib/python3.13/encodings/cp1258.py +307 -0
- package/python/lib/python3.13/encodings/cp273.py +307 -0
- package/python/lib/python3.13/encodings/cp424.py +307 -0
- package/python/lib/python3.13/encodings/cp437.py +698 -0
- package/python/lib/python3.13/encodings/cp500.py +307 -0
- package/python/lib/python3.13/encodings/cp720.py +309 -0
- package/python/lib/python3.13/encodings/cp737.py +698 -0
- package/python/lib/python3.13/encodings/cp775.py +697 -0
- package/python/lib/python3.13/encodings/cp850.py +698 -0
- package/python/lib/python3.13/encodings/cp852.py +698 -0
- package/python/lib/python3.13/encodings/cp855.py +698 -0
- package/python/lib/python3.13/encodings/cp856.py +307 -0
- package/python/lib/python3.13/encodings/cp857.py +694 -0
- package/python/lib/python3.13/encodings/cp858.py +698 -0
- package/python/lib/python3.13/encodings/cp860.py +698 -0
- package/python/lib/python3.13/encodings/cp861.py +698 -0
- package/python/lib/python3.13/encodings/cp862.py +698 -0
- package/python/lib/python3.13/encodings/cp863.py +698 -0
- package/python/lib/python3.13/encodings/cp864.py +690 -0
- package/python/lib/python3.13/encodings/cp865.py +698 -0
- package/python/lib/python3.13/encodings/cp866.py +698 -0
- package/python/lib/python3.13/encodings/cp869.py +689 -0
- package/python/lib/python3.13/encodings/cp874.py +307 -0
- package/python/lib/python3.13/encodings/cp875.py +307 -0
- package/python/lib/python3.13/encodings/cp932.py +39 -0
- package/python/lib/python3.13/encodings/cp949.py +39 -0
- package/python/lib/python3.13/encodings/cp950.py +39 -0
- package/python/lib/python3.13/encodings/euc_jis_2004.py +39 -0
- package/python/lib/python3.13/encodings/euc_jisx0213.py +39 -0
- package/python/lib/python3.13/encodings/euc_jp.py +39 -0
- package/python/lib/python3.13/encodings/euc_kr.py +39 -0
- package/python/lib/python3.13/encodings/gb18030.py +39 -0
- package/python/lib/python3.13/encodings/gb2312.py +39 -0
- package/python/lib/python3.13/encodings/gbk.py +39 -0
- package/python/lib/python3.13/encodings/hex_codec.py +55 -0
- package/python/lib/python3.13/encodings/hp_roman8.py +314 -0
- package/python/lib/python3.13/encodings/hz.py +39 -0
- package/python/lib/python3.13/encodings/idna.py +387 -0
- package/python/lib/python3.13/encodings/iso2022_jp.py +39 -0
- package/python/lib/python3.13/encodings/iso2022_jp_1.py +39 -0
- package/python/lib/python3.13/encodings/iso2022_jp_2.py +39 -0
- package/python/lib/python3.13/encodings/iso2022_jp_2004.py +39 -0
- package/python/lib/python3.13/encodings/iso2022_jp_3.py +39 -0
- package/python/lib/python3.13/encodings/iso2022_jp_ext.py +39 -0
- package/python/lib/python3.13/encodings/iso2022_kr.py +39 -0
- package/python/lib/python3.13/encodings/iso8859_1.py +307 -0
- package/python/lib/python3.13/encodings/iso8859_10.py +307 -0
- package/python/lib/python3.13/encodings/iso8859_11.py +307 -0
- package/python/lib/python3.13/encodings/iso8859_13.py +307 -0
- package/python/lib/python3.13/encodings/iso8859_14.py +307 -0
- package/python/lib/python3.13/encodings/iso8859_15.py +307 -0
- package/python/lib/python3.13/encodings/iso8859_16.py +307 -0
- package/python/lib/python3.13/encodings/iso8859_2.py +307 -0
- package/python/lib/python3.13/encodings/iso8859_3.py +307 -0
- package/python/lib/python3.13/encodings/iso8859_4.py +307 -0
- package/python/lib/python3.13/encodings/iso8859_5.py +307 -0
- package/python/lib/python3.13/encodings/iso8859_6.py +307 -0
- package/python/lib/python3.13/encodings/iso8859_7.py +307 -0
- package/python/lib/python3.13/encodings/iso8859_8.py +307 -0
- package/python/lib/python3.13/encodings/iso8859_9.py +307 -0
- package/python/lib/python3.13/encodings/johab.py +39 -0
- package/python/lib/python3.13/encodings/koi8_r.py +307 -0
- package/python/lib/python3.13/encodings/koi8_t.py +308 -0
- package/python/lib/python3.13/encodings/koi8_u.py +307 -0
- package/python/lib/python3.13/encodings/kz1048.py +307 -0
- package/python/lib/python3.13/encodings/latin_1.py +50 -0
- package/python/lib/python3.13/encodings/mac_arabic.py +698 -0
- package/python/lib/python3.13/encodings/mac_croatian.py +307 -0
- package/python/lib/python3.13/encodings/mac_cyrillic.py +307 -0
- package/python/lib/python3.13/encodings/mac_farsi.py +307 -0
- package/python/lib/python3.13/encodings/mac_greek.py +307 -0
- package/python/lib/python3.13/encodings/mac_iceland.py +307 -0
- package/python/lib/python3.13/encodings/mac_latin2.py +312 -0
- package/python/lib/python3.13/encodings/mac_roman.py +307 -0
- package/python/lib/python3.13/encodings/mac_romanian.py +307 -0
- package/python/lib/python3.13/encodings/mac_turkish.py +307 -0
- package/python/lib/python3.13/encodings/mbcs.py +47 -0
- package/python/lib/python3.13/encodings/oem.py +41 -0
- package/python/lib/python3.13/encodings/palmos.py +308 -0
- package/python/lib/python3.13/encodings/ptcp154.py +312 -0
- package/python/lib/python3.13/encodings/punycode.py +253 -0
- package/python/lib/python3.13/encodings/quopri_codec.py +56 -0
- package/python/lib/python3.13/encodings/raw_unicode_escape.py +46 -0
- package/python/lib/python3.13/encodings/rot_13.py +113 -0
- package/python/lib/python3.13/encodings/shift_jis.py +39 -0
- package/python/lib/python3.13/encodings/shift_jis_2004.py +39 -0
- package/python/lib/python3.13/encodings/shift_jisx0213.py +39 -0
- package/python/lib/python3.13/encodings/tis_620.py +307 -0
- package/python/lib/python3.13/encodings/undefined.py +49 -0
- package/python/lib/python3.13/encodings/unicode_escape.py +46 -0
- package/python/lib/python3.13/encodings/utf_16.py +155 -0
- package/python/lib/python3.13/encodings/utf_16_be.py +42 -0
- package/python/lib/python3.13/encodings/utf_16_le.py +42 -0
- package/python/lib/python3.13/encodings/utf_32.py +150 -0
- package/python/lib/python3.13/encodings/utf_32_be.py +37 -0
- package/python/lib/python3.13/encodings/utf_32_le.py +37 -0
- package/python/lib/python3.13/encodings/utf_7.py +38 -0
- package/python/lib/python3.13/encodings/utf_8.py +42 -0
- package/python/lib/python3.13/encodings/utf_8_sig.py +130 -0
- package/python/lib/python3.13/encodings/uu_codec.py +103 -0
- package/python/lib/python3.13/encodings/zlib_codec.py +77 -0
- package/python/lib/python3.13/ensurepip/__init__.py +264 -0
- package/python/lib/python3.13/ensurepip/__main__.py +5 -0
- package/python/lib/python3.13/ensurepip/_bundled/pip-25.3-py3-none-any.whl +0 -0
- package/python/lib/python3.13/ensurepip/_uninstall.py +31 -0
- package/python/lib/python3.13/enum.py +2182 -0
- package/python/lib/python3.13/filecmp.py +320 -0
- package/python/lib/python3.13/fileinput.py +442 -0
- package/python/lib/python3.13/fnmatch.py +192 -0
- package/python/lib/python3.13/fractions.py +1043 -0
- package/python/lib/python3.13/ftplib.py +966 -0
- package/python/lib/python3.13/functools.py +1036 -0
- package/python/lib/python3.13/genericpath.py +200 -0
- package/python/lib/python3.13/getopt.py +215 -0
- package/python/lib/python3.13/getpass.py +192 -0
- package/python/lib/python3.13/gettext.py +657 -0
- package/python/lib/python3.13/glob.py +551 -0
- package/python/lib/python3.13/graphlib.py +250 -0
- package/python/lib/python3.13/gzip.py +691 -0
- package/python/lib/python3.13/hashlib.py +255 -0
- package/python/lib/python3.13/heapq.py +603 -0
- package/python/lib/python3.13/hmac.py +220 -0
- package/python/lib/python3.13/html/__init__.py +132 -0
- package/python/lib/python3.13/html/entities.py +2513 -0
- package/python/lib/python3.13/html/parser.py +553 -0
- package/python/lib/python3.13/http/__init__.py +202 -0
- package/python/lib/python3.13/http/client.py +1570 -0
- package/python/lib/python3.13/http/cookiejar.py +2122 -0
- package/python/lib/python3.13/http/cookies.py +615 -0
- package/python/lib/python3.13/http/server.py +1351 -0
- package/python/lib/python3.13/idlelib/CREDITS.txt +48 -0
- package/python/lib/python3.13/idlelib/ChangeLog +1591 -0
- package/python/lib/python3.13/idlelib/HISTORY.txt +296 -0
- package/python/lib/python3.13/idlelib/Icons/README.txt +51 -0
- package/python/lib/python3.13/idlelib/Icons/folder.gif +0 -0
- package/python/lib/python3.13/idlelib/Icons/idle.ico +0 -0
- package/python/lib/python3.13/idlelib/Icons/idle_16.gif +0 -0
- package/python/lib/python3.13/idlelib/Icons/idle_16.png +0 -0
- package/python/lib/python3.13/idlelib/Icons/idle_256.png +0 -0
- package/python/lib/python3.13/idlelib/Icons/idle_32.gif +0 -0
- package/python/lib/python3.13/idlelib/Icons/idle_32.png +0 -0
- package/python/lib/python3.13/idlelib/Icons/idle_48.gif +0 -0
- package/python/lib/python3.13/idlelib/Icons/idle_48.png +0 -0
- package/python/lib/python3.13/idlelib/Icons/minusnode.gif +0 -0
- package/python/lib/python3.13/idlelib/Icons/openfolder.gif +0 -0
- package/python/lib/python3.13/idlelib/Icons/plusnode.gif +0 -0
- package/python/lib/python3.13/idlelib/Icons/python.gif +0 -0
- package/python/lib/python3.13/idlelib/Icons/tk.gif +0 -0
- package/python/lib/python3.13/idlelib/NEWS2x.txt +660 -0
- package/python/lib/python3.13/idlelib/News3.txt +1407 -0
- package/python/lib/python3.13/idlelib/README.txt +290 -0
- package/python/lib/python3.13/idlelib/TODO.txt +210 -0
- package/python/lib/python3.13/idlelib/__init__.py +10 -0
- package/python/lib/python3.13/idlelib/__main__.py +7 -0
- package/python/lib/python3.13/idlelib/autocomplete.py +228 -0
- package/python/lib/python3.13/idlelib/autocomplete_w.py +498 -0
- package/python/lib/python3.13/idlelib/autoexpand.py +96 -0
- package/python/lib/python3.13/idlelib/browser.py +260 -0
- package/python/lib/python3.13/idlelib/calltip.py +205 -0
- package/python/lib/python3.13/idlelib/calltip_w.py +202 -0
- package/python/lib/python3.13/idlelib/codecontext.py +270 -0
- package/python/lib/python3.13/idlelib/colorizer.py +384 -0
- package/python/lib/python3.13/idlelib/config-extensions.def +62 -0
- package/python/lib/python3.13/idlelib/config-highlight.def +105 -0
- package/python/lib/python3.13/idlelib/config-keys.def +309 -0
- package/python/lib/python3.13/idlelib/config-main.def +92 -0
- package/python/lib/python3.13/idlelib/config.py +917 -0
- package/python/lib/python3.13/idlelib/config_key.py +354 -0
- package/python/lib/python3.13/idlelib/configdialog.py +2408 -0
- package/python/lib/python3.13/idlelib/debugger.py +602 -0
- package/python/lib/python3.13/idlelib/debugger_r.py +390 -0
- package/python/lib/python3.13/idlelib/debugobj.py +146 -0
- package/python/lib/python3.13/idlelib/debugobj_r.py +41 -0
- package/python/lib/python3.13/idlelib/delegator.py +34 -0
- package/python/lib/python3.13/idlelib/dynoption.py +57 -0
- package/python/lib/python3.13/idlelib/editor.py +1721 -0
- package/python/lib/python3.13/idlelib/extend.txt +83 -0
- package/python/lib/python3.13/idlelib/filelist.py +132 -0
- package/python/lib/python3.13/idlelib/format.py +426 -0
- package/python/lib/python3.13/idlelib/grep.py +223 -0
- package/python/lib/python3.13/idlelib/help.html +865 -0
- package/python/lib/python3.13/idlelib/help.py +343 -0
- package/python/lib/python3.13/idlelib/help_about.py +211 -0
- package/python/lib/python3.13/idlelib/history.py +106 -0
- package/python/lib/python3.13/idlelib/hyperparser.py +312 -0
- package/python/lib/python3.13/idlelib/idle.bat +4 -0
- package/python/lib/python3.13/idlelib/idle.py +14 -0
- package/python/lib/python3.13/idlelib/idle.pyw +17 -0
- package/python/lib/python3.13/idlelib/iomenu.py +441 -0
- package/python/lib/python3.13/idlelib/macosx.py +278 -0
- package/python/lib/python3.13/idlelib/mainmenu.py +126 -0
- package/python/lib/python3.13/idlelib/multicall.py +451 -0
- package/python/lib/python3.13/idlelib/outwin.py +188 -0
- package/python/lib/python3.13/idlelib/parenmatch.py +183 -0
- package/python/lib/python3.13/idlelib/pathbrowser.py +107 -0
- package/python/lib/python3.13/idlelib/percolator.py +120 -0
- package/python/lib/python3.13/idlelib/pyparse.py +589 -0
- package/python/lib/python3.13/idlelib/pyshell.py +1699 -0
- package/python/lib/python3.13/idlelib/query.py +390 -0
- package/python/lib/python3.13/idlelib/redirector.py +174 -0
- package/python/lib/python3.13/idlelib/replace.py +299 -0
- package/python/lib/python3.13/idlelib/rpc.py +635 -0
- package/python/lib/python3.13/idlelib/run.py +653 -0
- package/python/lib/python3.13/idlelib/runscript.py +213 -0
- package/python/lib/python3.13/idlelib/scrolledlist.py +151 -0
- package/python/lib/python3.13/idlelib/search.py +165 -0
- package/python/lib/python3.13/idlelib/searchbase.py +210 -0
- package/python/lib/python3.13/idlelib/searchengine.py +234 -0
- package/python/lib/python3.13/idlelib/sidebar.py +543 -0
- package/python/lib/python3.13/idlelib/squeezer.py +345 -0
- package/python/lib/python3.13/idlelib/stackviewer.py +134 -0
- package/python/lib/python3.13/idlelib/statusbar.py +52 -0
- package/python/lib/python3.13/idlelib/textview.py +193 -0
- package/python/lib/python3.13/idlelib/tooltip.py +190 -0
- package/python/lib/python3.13/idlelib/tree.py +509 -0
- package/python/lib/python3.13/idlelib/undo.py +367 -0
- package/python/lib/python3.13/idlelib/util.py +37 -0
- package/python/lib/python3.13/idlelib/window.py +98 -0
- package/python/lib/python3.13/idlelib/zoomheight.py +124 -0
- package/python/lib/python3.13/idlelib/zzdummy.py +73 -0
- package/python/lib/python3.13/imaplib.py +1651 -0
- package/python/lib/python3.13/importlib/__init__.py +136 -0
- package/python/lib/python3.13/importlib/_abc.py +39 -0
- package/python/lib/python3.13/importlib/_bootstrap.py +1551 -0
- package/python/lib/python3.13/importlib/_bootstrap_external.py +1826 -0
- package/python/lib/python3.13/importlib/abc.py +243 -0
- package/python/lib/python3.13/importlib/machinery.py +21 -0
- package/python/lib/python3.13/importlib/metadata/__init__.py +1093 -0
- package/python/lib/python3.13/importlib/metadata/_adapters.py +89 -0
- package/python/lib/python3.13/importlib/metadata/_collections.py +30 -0
- package/python/lib/python3.13/importlib/metadata/_functools.py +104 -0
- package/python/lib/python3.13/importlib/metadata/_itertools.py +73 -0
- package/python/lib/python3.13/importlib/metadata/_meta.py +67 -0
- package/python/lib/python3.13/importlib/metadata/_text.py +99 -0
- package/python/lib/python3.13/importlib/metadata/diagnose.py +21 -0
- package/python/lib/python3.13/importlib/readers.py +12 -0
- package/python/lib/python3.13/importlib/resources/__init__.py +43 -0
- package/python/lib/python3.13/importlib/resources/_adapters.py +168 -0
- package/python/lib/python3.13/importlib/resources/_common.py +211 -0
- package/python/lib/python3.13/importlib/resources/_functional.py +81 -0
- package/python/lib/python3.13/importlib/resources/_itertools.py +38 -0
- package/python/lib/python3.13/importlib/resources/abc.py +173 -0
- package/python/lib/python3.13/importlib/resources/readers.py +203 -0
- package/python/lib/python3.13/importlib/resources/simple.py +106 -0
- package/python/lib/python3.13/importlib/simple.py +14 -0
- package/python/lib/python3.13/importlib/util.py +274 -0
- package/python/lib/python3.13/inspect.py +3471 -0
- package/python/lib/python3.13/io.py +99 -0
- package/python/lib/python3.13/ipaddress.py +2440 -0
- package/python/lib/python3.13/json/__init__.py +365 -0
- package/python/lib/python3.13/json/decoder.py +364 -0
- package/python/lib/python3.13/json/encoder.py +446 -0
- package/python/lib/python3.13/json/scanner.py +73 -0
- package/python/lib/python3.13/json/tool.py +89 -0
- package/python/lib/python3.13/keyword.py +64 -0
- package/python/lib/python3.13/lib-dynload/.empty +0 -0
- package/python/lib/python3.13/lib-dynload/_ctypes_test.cpython-313-darwin.so +0 -0
- package/python/lib/python3.13/lib-dynload/_dbm.cpython-313-darwin.so +0 -0
- package/python/lib/python3.13/lib-dynload/_tkinter.cpython-313-darwin.so +0 -0
- package/python/lib/python3.13/linecache.py +236 -0
- package/python/lib/python3.13/locale.py +1778 -0
- package/python/lib/python3.13/logging/__init__.py +2326 -0
- package/python/lib/python3.13/logging/config.py +1065 -0
- package/python/lib/python3.13/logging/handlers.py +1629 -0
- package/python/lib/python3.13/lzma.py +364 -0
- package/python/lib/python3.13/mailbox.py +2219 -0
- package/python/lib/python3.13/mimetypes.py +679 -0
- package/python/lib/python3.13/modulefinder.py +671 -0
- package/python/lib/python3.13/multiprocessing/__init__.py +37 -0
- package/python/lib/python3.13/multiprocessing/connection.py +1190 -0
- package/python/lib/python3.13/multiprocessing/context.py +377 -0
- package/python/lib/python3.13/multiprocessing/dummy/__init__.py +126 -0
- package/python/lib/python3.13/multiprocessing/dummy/connection.py +75 -0
- package/python/lib/python3.13/multiprocessing/forkserver.py +364 -0
- package/python/lib/python3.13/multiprocessing/heap.py +337 -0
- package/python/lib/python3.13/multiprocessing/managers.py +1397 -0
- package/python/lib/python3.13/multiprocessing/pool.py +957 -0
- package/python/lib/python3.13/multiprocessing/popen_fork.py +87 -0
- package/python/lib/python3.13/multiprocessing/popen_forkserver.py +74 -0
- package/python/lib/python3.13/multiprocessing/popen_spawn_posix.py +76 -0
- package/python/lib/python3.13/multiprocessing/popen_spawn_win32.py +147 -0
- package/python/lib/python3.13/multiprocessing/process.py +436 -0
- package/python/lib/python3.13/multiprocessing/queues.py +399 -0
- package/python/lib/python3.13/multiprocessing/reduction.py +281 -0
- package/python/lib/python3.13/multiprocessing/resource_sharer.py +154 -0
- package/python/lib/python3.13/multiprocessing/resource_tracker.py +420 -0
- package/python/lib/python3.13/multiprocessing/shared_memory.py +544 -0
- package/python/lib/python3.13/multiprocessing/sharedctypes.py +240 -0
- package/python/lib/python3.13/multiprocessing/spawn.py +307 -0
- package/python/lib/python3.13/multiprocessing/synchronize.py +404 -0
- package/python/lib/python3.13/multiprocessing/util.py +562 -0
- package/python/lib/python3.13/netrc.py +199 -0
- package/python/lib/python3.13/ntpath.py +870 -0
- package/python/lib/python3.13/nturl2path.py +69 -0
- package/python/lib/python3.13/numbers.py +427 -0
- package/python/lib/python3.13/opcode.py +115 -0
- package/python/lib/python3.13/operator.py +467 -0
- package/python/lib/python3.13/optparse.py +1681 -0
- package/python/lib/python3.13/os.py +1184 -0
- package/python/lib/python3.13/pathlib/__init__.py +12 -0
- package/python/lib/python3.13/pathlib/_abc.py +930 -0
- package/python/lib/python3.13/pathlib/_local.py +861 -0
- package/python/lib/python3.13/pdb.py +2550 -0
- package/python/lib/python3.13/pickle.py +1866 -0
- package/python/lib/python3.13/pickletools.py +2904 -0
- package/python/lib/python3.13/pkgutil.py +529 -0
- package/python/lib/python3.13/platform.py +1454 -0
- package/python/lib/python3.13/plistlib.py +948 -0
- package/python/lib/python3.13/poplib.py +477 -0
- package/python/lib/python3.13/posixpath.py +578 -0
- package/python/lib/python3.13/pprint.py +658 -0
- package/python/lib/python3.13/profile.py +616 -0
- package/python/lib/python3.13/pstats.py +778 -0
- package/python/lib/python3.13/pty.py +211 -0
- package/python/lib/python3.13/py_compile.py +212 -0
- package/python/lib/python3.13/pyclbr.py +314 -0
- package/python/lib/python3.13/pydoc.py +2859 -0
- package/python/lib/python3.13/pydoc_data/__init__.py +0 -0
- package/python/lib/python3.13/pydoc_data/_pydoc.css +112 -0
- package/python/lib/python3.13/pydoc_data/module_docs.py +314 -0
- package/python/lib/python3.13/pydoc_data/topics.py +13000 -0
- package/python/lib/python3.13/queue.py +383 -0
- package/python/lib/python3.13/quopri.py +237 -0
- package/python/lib/python3.13/random.py +1070 -0
- package/python/lib/python3.13/re/__init__.py +428 -0
- package/python/lib/python3.13/re/_casefix.py +106 -0
- package/python/lib/python3.13/re/_compiler.py +768 -0
- package/python/lib/python3.13/re/_constants.py +222 -0
- package/python/lib/python3.13/re/_parser.py +1081 -0
- package/python/lib/python3.13/reprlib.py +230 -0
- package/python/lib/python3.13/rlcompleter.py +221 -0
- package/python/lib/python3.13/runpy.py +319 -0
- package/python/lib/python3.13/sched.py +167 -0
- package/python/lib/python3.13/secrets.py +71 -0
- package/python/lib/python3.13/selectors.py +603 -0
- package/python/lib/python3.13/shelve.py +250 -0
- package/python/lib/python3.13/shlex.py +345 -0
- package/python/lib/python3.13/shutil.py +1583 -0
- package/python/lib/python3.13/signal.py +94 -0
- package/python/lib/python3.13/site-packages/README.txt +2 -0
- package/python/lib/python3.13/site-packages/pip/__init__.py +13 -0
- package/python/lib/python3.13/site-packages/pip/__main__.py +24 -0
- package/python/lib/python3.13/site-packages/pip/__pip-runner__.py +50 -0
- package/python/lib/python3.13/site-packages/pip/_internal/__init__.py +18 -0
- package/python/lib/python3.13/site-packages/pip/_internal/build_env.py +606 -0
- package/python/lib/python3.13/site-packages/pip/_internal/cache.py +291 -0
- package/python/lib/python3.13/site-packages/pip/_internal/cli/__init__.py +3 -0
- package/python/lib/python3.13/site-packages/pip/_internal/cli/autocompletion.py +184 -0
- package/python/lib/python3.13/site-packages/pip/_internal/cli/base_command.py +255 -0
- package/python/lib/python3.13/site-packages/pip/_internal/cli/cmdoptions.py +1267 -0
- package/python/lib/python3.13/site-packages/pip/_internal/cli/command_context.py +28 -0
- package/python/lib/python3.13/site-packages/pip/_internal/cli/index_command.py +195 -0
- package/python/lib/python3.13/site-packages/pip/_internal/cli/main.py +85 -0
- package/python/lib/python3.13/site-packages/pip/_internal/cli/main_parser.py +136 -0
- package/python/lib/python3.13/site-packages/pip/_internal/cli/parser.py +358 -0
- package/python/lib/python3.13/site-packages/pip/_internal/cli/progress_bars.py +153 -0
- package/python/lib/python3.13/site-packages/pip/_internal/cli/req_command.py +447 -0
- package/python/lib/python3.13/site-packages/pip/_internal/cli/spinners.py +235 -0
- package/python/lib/python3.13/site-packages/pip/_internal/cli/status_codes.py +6 -0
- package/python/lib/python3.13/site-packages/pip/_internal/commands/__init__.py +139 -0
- package/python/lib/python3.13/site-packages/pip/_internal/commands/cache.py +255 -0
- package/python/lib/python3.13/site-packages/pip/_internal/commands/check.py +66 -0
- package/python/lib/python3.13/site-packages/pip/_internal/commands/completion.py +136 -0
- package/python/lib/python3.13/site-packages/pip/_internal/commands/configuration.py +288 -0
- package/python/lib/python3.13/site-packages/pip/_internal/commands/debug.py +203 -0
- package/python/lib/python3.13/site-packages/pip/_internal/commands/download.py +146 -0
- package/python/lib/python3.13/site-packages/pip/_internal/commands/freeze.py +107 -0
- package/python/lib/python3.13/site-packages/pip/_internal/commands/hash.py +58 -0
- package/python/lib/python3.13/site-packages/pip/_internal/commands/help.py +40 -0
- package/python/lib/python3.13/site-packages/pip/_internal/commands/index.py +166 -0
- package/python/lib/python3.13/site-packages/pip/_internal/commands/inspect.py +92 -0
- package/python/lib/python3.13/site-packages/pip/_internal/commands/install.py +810 -0
- package/python/lib/python3.13/site-packages/pip/_internal/commands/list.py +398 -0
- package/python/lib/python3.13/site-packages/pip/_internal/commands/lock.py +175 -0
- package/python/lib/python3.13/site-packages/pip/_internal/commands/search.py +178 -0
- package/python/lib/python3.13/site-packages/pip/_internal/commands/show.py +231 -0
- package/python/lib/python3.13/site-packages/pip/_internal/commands/uninstall.py +113 -0
- package/python/lib/python3.13/site-packages/pip/_internal/commands/wheel.py +171 -0
- package/python/lib/python3.13/site-packages/pip/_internal/configuration.py +396 -0
- package/python/lib/python3.13/site-packages/pip/_internal/distributions/__init__.py +21 -0
- package/python/lib/python3.13/site-packages/pip/_internal/distributions/base.py +55 -0
- package/python/lib/python3.13/site-packages/pip/_internal/distributions/installed.py +33 -0
- package/python/lib/python3.13/site-packages/pip/_internal/distributions/sdist.py +164 -0
- package/python/lib/python3.13/site-packages/pip/_internal/distributions/wheel.py +44 -0
- package/python/lib/python3.13/site-packages/pip/_internal/exceptions.py +971 -0
- package/python/lib/python3.13/site-packages/pip/_internal/index/__init__.py +1 -0
- package/python/lib/python3.13/site-packages/pip/_internal/index/collector.py +488 -0
- package/python/lib/python3.13/site-packages/pip/_internal/index/package_finder.py +1125 -0
- package/python/lib/python3.13/site-packages/pip/_internal/index/sources.py +287 -0
- package/python/lib/python3.13/site-packages/pip/_internal/locations/__init__.py +440 -0
- package/python/lib/python3.13/site-packages/pip/_internal/locations/_distutils.py +173 -0
- package/python/lib/python3.13/site-packages/pip/_internal/locations/_sysconfig.py +218 -0
- package/python/lib/python3.13/site-packages/pip/_internal/locations/base.py +82 -0
- package/python/lib/python3.13/site-packages/pip/_internal/main.py +12 -0
- package/python/lib/python3.13/site-packages/pip/_internal/metadata/__init__.py +169 -0
- package/python/lib/python3.13/site-packages/pip/_internal/metadata/_json.py +87 -0
- package/python/lib/python3.13/site-packages/pip/_internal/metadata/base.py +685 -0
- package/python/lib/python3.13/site-packages/pip/_internal/metadata/importlib/__init__.py +6 -0
- package/python/lib/python3.13/site-packages/pip/_internal/metadata/importlib/_compat.py +87 -0
- package/python/lib/python3.13/site-packages/pip/_internal/metadata/importlib/_dists.py +229 -0
- package/python/lib/python3.13/site-packages/pip/_internal/metadata/importlib/_envs.py +143 -0
- package/python/lib/python3.13/site-packages/pip/_internal/metadata/pkg_resources.py +298 -0
- package/python/lib/python3.13/site-packages/pip/_internal/models/__init__.py +1 -0
- package/python/lib/python3.13/site-packages/pip/_internal/models/candidate.py +25 -0
- package/python/lib/python3.13/site-packages/pip/_internal/models/direct_url.py +227 -0
- package/python/lib/python3.13/site-packages/pip/_internal/models/format_control.py +78 -0
- package/python/lib/python3.13/site-packages/pip/_internal/models/index.py +28 -0
- package/python/lib/python3.13/site-packages/pip/_internal/models/installation_report.py +57 -0
- package/python/lib/python3.13/site-packages/pip/_internal/models/link.py +617 -0
- package/python/lib/python3.13/site-packages/pip/_internal/models/release_control.py +92 -0
- package/python/lib/python3.13/site-packages/pip/_internal/models/scheme.py +25 -0
- package/python/lib/python3.13/site-packages/pip/_internal/models/search_scope.py +126 -0
- package/python/lib/python3.13/site-packages/pip/_internal/models/selection_prefs.py +56 -0
- package/python/lib/python3.13/site-packages/pip/_internal/models/target_python.py +122 -0
- package/python/lib/python3.13/site-packages/pip/_internal/models/wheel.py +80 -0
- package/python/lib/python3.13/site-packages/pip/_internal/network/__init__.py +1 -0
- package/python/lib/python3.13/site-packages/pip/_internal/network/auth.py +568 -0
- package/python/lib/python3.13/site-packages/pip/_internal/network/cache.py +128 -0
- package/python/lib/python3.13/site-packages/pip/_internal/network/download.py +341 -0
- package/python/lib/python3.13/site-packages/pip/_internal/network/lazy_wheel.py +215 -0
- package/python/lib/python3.13/site-packages/pip/_internal/network/session.py +532 -0
- package/python/lib/python3.13/site-packages/pip/_internal/network/utils.py +98 -0
- package/python/lib/python3.13/site-packages/pip/_internal/network/xmlrpc.py +61 -0
- package/python/lib/python3.13/site-packages/pip/_internal/operations/__init__.py +0 -0
- package/python/lib/python3.13/site-packages/pip/_internal/operations/build/__init__.py +0 -0
- package/python/lib/python3.13/site-packages/pip/_internal/operations/build/build_tracker.py +140 -0
- package/python/lib/python3.13/site-packages/pip/_internal/operations/build/metadata.py +38 -0
- package/python/lib/python3.13/site-packages/pip/_internal/operations/build/metadata_editable.py +41 -0
- package/python/lib/python3.13/site-packages/pip/_internal/operations/build/wheel.py +38 -0
- package/python/lib/python3.13/site-packages/pip/_internal/operations/build/wheel_editable.py +47 -0
- package/python/lib/python3.13/site-packages/pip/_internal/operations/check.py +175 -0
- package/python/lib/python3.13/site-packages/pip/_internal/operations/freeze.py +259 -0
- package/python/lib/python3.13/site-packages/pip/_internal/operations/install/__init__.py +1 -0
- package/python/lib/python3.13/site-packages/pip/_internal/operations/install/wheel.py +745 -0
- package/python/lib/python3.13/site-packages/pip/_internal/operations/prepare.py +747 -0
- package/python/lib/python3.13/site-packages/pip/_internal/pyproject.py +123 -0
- package/python/lib/python3.13/site-packages/pip/_internal/req/__init__.py +103 -0
- package/python/lib/python3.13/site-packages/pip/_internal/req/constructors.py +568 -0
- package/python/lib/python3.13/site-packages/pip/_internal/req/pep723.py +41 -0
- package/python/lib/python3.13/site-packages/pip/_internal/req/req_dependency_group.py +75 -0
- package/python/lib/python3.13/site-packages/pip/_internal/req/req_file.py +631 -0
- package/python/lib/python3.13/site-packages/pip/_internal/req/req_install.py +828 -0
- package/python/lib/python3.13/site-packages/pip/_internal/req/req_set.py +81 -0
- package/python/lib/python3.13/site-packages/pip/_internal/req/req_uninstall.py +639 -0
- package/python/lib/python3.13/site-packages/pip/_internal/resolution/__init__.py +0 -0
- package/python/lib/python3.13/site-packages/pip/_internal/resolution/base.py +20 -0
- package/python/lib/python3.13/site-packages/pip/_internal/resolution/legacy/__init__.py +0 -0
- package/python/lib/python3.13/site-packages/pip/_internal/resolution/legacy/resolver.py +598 -0
- package/python/lib/python3.13/site-packages/pip/_internal/resolution/resolvelib/__init__.py +0 -0
- package/python/lib/python3.13/site-packages/pip/_internal/resolution/resolvelib/base.py +142 -0
- package/python/lib/python3.13/site-packages/pip/_internal/resolution/resolvelib/candidates.py +591 -0
- package/python/lib/python3.13/site-packages/pip/_internal/resolution/resolvelib/factory.py +856 -0
- package/python/lib/python3.13/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py +166 -0
- package/python/lib/python3.13/site-packages/pip/_internal/resolution/resolvelib/provider.py +285 -0
- package/python/lib/python3.13/site-packages/pip/_internal/resolution/resolvelib/reporter.py +98 -0
- package/python/lib/python3.13/site-packages/pip/_internal/resolution/resolvelib/requirements.py +251 -0
- package/python/lib/python3.13/site-packages/pip/_internal/resolution/resolvelib/resolver.py +332 -0
- package/python/lib/python3.13/site-packages/pip/_internal/self_outdated_check.py +255 -0
- package/python/lib/python3.13/site-packages/pip/_internal/utils/__init__.py +0 -0
- package/python/lib/python3.13/site-packages/pip/_internal/utils/_jaraco_text.py +109 -0
- package/python/lib/python3.13/site-packages/pip/_internal/utils/_log.py +38 -0
- package/python/lib/python3.13/site-packages/pip/_internal/utils/appdirs.py +52 -0
- package/python/lib/python3.13/site-packages/pip/_internal/utils/compat.py +85 -0
- package/python/lib/python3.13/site-packages/pip/_internal/utils/compatibility_tags.py +201 -0
- package/python/lib/python3.13/site-packages/pip/_internal/utils/datetime.py +28 -0
- package/python/lib/python3.13/site-packages/pip/_internal/utils/deprecation.py +126 -0
- package/python/lib/python3.13/site-packages/pip/_internal/utils/direct_url_helpers.py +87 -0
- package/python/lib/python3.13/site-packages/pip/_internal/utils/egg_link.py +81 -0
- package/python/lib/python3.13/site-packages/pip/_internal/utils/entrypoints.py +88 -0
- package/python/lib/python3.13/site-packages/pip/_internal/utils/filesystem.py +203 -0
- package/python/lib/python3.13/site-packages/pip/_internal/utils/filetypes.py +24 -0
- package/python/lib/python3.13/site-packages/pip/_internal/utils/glibc.py +102 -0
- package/python/lib/python3.13/site-packages/pip/_internal/utils/hashes.py +150 -0
- package/python/lib/python3.13/site-packages/pip/_internal/utils/logging.py +396 -0
- package/python/lib/python3.13/site-packages/pip/_internal/utils/misc.py +771 -0
- package/python/lib/python3.13/site-packages/pip/_internal/utils/packaging.py +44 -0
- package/python/lib/python3.13/site-packages/pip/_internal/utils/pylock.py +116 -0
- package/python/lib/python3.13/site-packages/pip/_internal/utils/retry.py +45 -0
- package/python/lib/python3.13/site-packages/pip/_internal/utils/subprocess.py +248 -0
- package/python/lib/python3.13/site-packages/pip/_internal/utils/temp_dir.py +294 -0
- package/python/lib/python3.13/site-packages/pip/_internal/utils/unpacking.py +362 -0
- package/python/lib/python3.13/site-packages/pip/_internal/utils/urls.py +55 -0
- package/python/lib/python3.13/site-packages/pip/_internal/utils/virtualenv.py +105 -0
- package/python/lib/python3.13/site-packages/pip/_internal/utils/wheel.py +132 -0
- package/python/lib/python3.13/site-packages/pip/_internal/vcs/__init__.py +15 -0
- package/python/lib/python3.13/site-packages/pip/_internal/vcs/bazaar.py +130 -0
- package/python/lib/python3.13/site-packages/pip/_internal/vcs/git.py +571 -0
- package/python/lib/python3.13/site-packages/pip/_internal/vcs/mercurial.py +186 -0
- package/python/lib/python3.13/site-packages/pip/_internal/vcs/subversion.py +335 -0
- package/python/lib/python3.13/site-packages/pip/_internal/vcs/versioncontrol.py +695 -0
- package/python/lib/python3.13/site-packages/pip/_internal/wheel_builder.py +261 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/README.rst +180 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/__init__.py +117 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/cachecontrol/LICENSE.txt +13 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/cachecontrol/__init__.py +32 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/cachecontrol/_cmd.py +70 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/cachecontrol/adapter.py +167 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/cachecontrol/cache.py +75 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/cachecontrol/caches/__init__.py +8 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py +145 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py +48 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/cachecontrol/controller.py +511 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/cachecontrol/filewrapper.py +121 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/cachecontrol/heuristics.py +157 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/cachecontrol/py.typed +0 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/cachecontrol/serialize.py +146 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/cachecontrol/wrapper.py +43 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/certifi/LICENSE +20 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/certifi/__init__.py +4 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/certifi/__main__.py +12 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/certifi/cacert.pem +4468 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/certifi/core.py +83 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/certifi/py.typed +0 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/dependency_groups/LICENSE.txt +9 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/dependency_groups/__init__.py +13 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/dependency_groups/__main__.py +65 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/dependency_groups/_implementation.py +209 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/dependency_groups/_lint_dependency_groups.py +59 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/dependency_groups/_pip_wrapper.py +62 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/dependency_groups/_toml_compat.py +9 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/dependency_groups/py.typed +0 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/distlib/LICENSE.txt +284 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/distlib/__init__.py +33 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/distlib/compat.py +1137 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/distlib/resources.py +358 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/distlib/scripts.py +447 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/distlib/t32.exe +0 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/distlib/t64-arm.exe +0 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/distlib/t64.exe +0 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/distlib/util.py +1984 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/distlib/w32.exe +0 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/distlib/w64-arm.exe +0 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/distlib/w64.exe +0 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/distro/LICENSE +202 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/distro/__init__.py +54 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/distro/__main__.py +4 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/distro/distro.py +1403 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/distro/py.typed +0 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/idna/LICENSE.md +31 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/idna/__init__.py +45 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/idna/codec.py +122 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/idna/compat.py +15 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/idna/core.py +437 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/idna/idnadata.py +4309 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/idna/intranges.py +57 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/idna/package_data.py +1 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/idna/py.typed +0 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/idna/uts46data.py +8841 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/msgpack/COPYING +14 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/msgpack/__init__.py +55 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/msgpack/exceptions.py +48 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/msgpack/ext.py +170 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/msgpack/fallback.py +929 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/packaging/LICENSE +3 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/packaging/LICENSE.APACHE +177 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/packaging/LICENSE.BSD +23 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/packaging/__init__.py +15 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/packaging/_elffile.py +108 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/packaging/_manylinux.py +262 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/packaging/_musllinux.py +85 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/packaging/_parser.py +365 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/packaging/_structures.py +69 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/packaging/_tokenizer.py +193 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/packaging/licenses/__init__.py +147 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/packaging/licenses/_spdx.py +799 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/packaging/markers.py +388 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/packaging/metadata.py +978 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/packaging/py.typed +0 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/packaging/pylock.py +635 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/packaging/requirements.py +86 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/packaging/specifiers.py +1068 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/packaging/tags.py +651 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/packaging/utils.py +158 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/packaging/version.py +792 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/pkg_resources/LICENSE +17 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/pkg_resources/__init__.py +3676 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/platformdirs/LICENSE +21 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/platformdirs/__init__.py +631 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/platformdirs/__main__.py +55 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/platformdirs/android.py +249 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/platformdirs/api.py +299 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/platformdirs/macos.py +146 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/platformdirs/py.typed +0 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/platformdirs/unix.py +272 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/platformdirs/version.py +34 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/platformdirs/windows.py +278 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/pygments/LICENSE +25 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/pygments/__init__.py +82 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/pygments/__main__.py +17 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/pygments/console.py +70 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/pygments/filter.py +70 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/pygments/filters/__init__.py +940 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/pygments/formatter.py +129 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/pygments/formatters/__init__.py +157 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/pygments/formatters/_mapping.py +23 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/pygments/lexer.py +963 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/pygments/lexers/__init__.py +362 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/pygments/lexers/_mapping.py +602 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/pygments/lexers/python.py +1201 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/pygments/modeline.py +43 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/pygments/plugin.py +72 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/pygments/regexopt.py +91 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/pygments/scanner.py +104 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/pygments/sphinxext.py +247 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/pygments/style.py +203 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/pygments/styles/__init__.py +61 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/pygments/styles/_mapping.py +54 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/pygments/token.py +214 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/pygments/unistring.py +153 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/pygments/util.py +324 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/pyproject_hooks/LICENSE +21 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/pyproject_hooks/__init__.py +31 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/pyproject_hooks/_impl.py +410 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py +21 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py +389 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/pyproject_hooks/py.typed +0 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/requests/LICENSE +175 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/requests/__init__.py +179 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/requests/__version__.py +14 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/requests/_internal_utils.py +50 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/requests/adapters.py +696 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/requests/api.py +157 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/requests/auth.py +314 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/requests/certs.py +17 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/requests/compat.py +90 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/requests/cookies.py +561 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/requests/exceptions.py +151 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/requests/help.py +127 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/requests/hooks.py +33 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/requests/models.py +1039 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/requests/packages.py +25 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/requests/sessions.py +831 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/requests/status_codes.py +128 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/requests/structures.py +99 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/requests/utils.py +1086 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/resolvelib/LICENSE +13 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/resolvelib/__init__.py +27 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/resolvelib/providers.py +196 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/resolvelib/py.typed +0 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/resolvelib/reporters.py +55 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/resolvelib/resolvers/__init__.py +27 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/resolvelib/resolvers/abstract.py +47 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/resolvelib/resolvers/criterion.py +48 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/resolvelib/resolvers/exceptions.py +57 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/resolvelib/resolvers/resolution.py +627 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/resolvelib/structs.py +209 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/LICENSE +19 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/__init__.py +177 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/__main__.py +245 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/_cell_widths.py +454 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/_emoji_codes.py +3610 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/_emoji_replace.py +32 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/_export_format.py +76 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/_extension.py +10 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/_fileno.py +24 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/_inspect.py +268 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/_log_render.py +94 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/_loop.py +43 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/_null_file.py +69 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/_palettes.py +309 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/_pick.py +17 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/_ratio.py +153 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/_spinners.py +482 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/_stack.py +16 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/_timer.py +19 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/_win32_console.py +661 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/_windows.py +71 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/_windows_renderer.py +56 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/_wrap.py +93 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/abc.py +33 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/align.py +306 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/ansi.py +241 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/bar.py +93 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/box.py +474 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/cells.py +174 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/color.py +621 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/color_triplet.py +38 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/columns.py +187 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/console.py +2680 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/constrain.py +37 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/containers.py +167 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/control.py +219 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/default_styles.py +193 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/diagnose.py +39 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/emoji.py +91 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/errors.py +34 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/file_proxy.py +57 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/filesize.py +88 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/highlighter.py +232 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/json.py +139 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/jupyter.py +101 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/layout.py +442 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/live.py +400 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/live_render.py +106 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/logging.py +297 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/markup.py +251 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/measure.py +151 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/padding.py +141 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/pager.py +34 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/palette.py +100 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/panel.py +317 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/pretty.py +1016 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/progress.py +1715 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/progress_bar.py +223 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/prompt.py +400 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/protocol.py +42 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/py.typed +0 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/region.py +10 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/repr.py +149 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/rule.py +130 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/scope.py +86 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/screen.py +54 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/segment.py +752 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/spinner.py +132 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/status.py +131 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/style.py +792 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/styled.py +42 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/syntax.py +985 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/table.py +1006 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/terminal_theme.py +153 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/text.py +1361 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/theme.py +115 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/themes.py +5 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/traceback.py +899 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/rich/tree.py +257 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/tomli/LICENSE +21 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/tomli/__init__.py +8 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/tomli/_parser.py +777 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/tomli/_re.py +115 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/tomli/_types.py +10 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/tomli/py.typed +1 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/tomli_w/LICENSE +21 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/tomli_w/__init__.py +4 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/tomli_w/_writer.py +229 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/tomli_w/py.typed +1 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/truststore/LICENSE +21 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/truststore/__init__.py +36 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/truststore/_api.py +341 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/truststore/_macos.py +571 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/truststore/_openssl.py +68 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/truststore/_ssl_constants.py +31 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/truststore/_windows.py +567 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/truststore/py.typed +0 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/urllib3/LICENSE.txt +21 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/urllib3/__init__.py +102 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/urllib3/_collections.py +355 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/urllib3/_version.py +2 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/urllib3/connection.py +572 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/urllib3/connectionpool.py +1140 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/urllib3/contrib/__init__.py +0 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py +36 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py +0 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py +519 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py +397 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/urllib3/contrib/appengine.py +314 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py +130 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py +518 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/urllib3/contrib/securetransport.py +920 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/urllib3/contrib/socks.py +216 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/urllib3/exceptions.py +323 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/urllib3/fields.py +274 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/urllib3/filepost.py +98 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/urllib3/packages/__init__.py +0 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py +0 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py +51 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/urllib3/packages/backports/weakref_finalize.py +155 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/urllib3/packages/six.py +1076 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/urllib3/poolmanager.py +540 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/urllib3/request.py +191 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/urllib3/response.py +879 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/urllib3/util/__init__.py +49 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/urllib3/util/connection.py +149 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/urllib3/util/proxy.py +57 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/urllib3/util/queue.py +22 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/urllib3/util/request.py +137 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/urllib3/util/response.py +107 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/urllib3/util/retry.py +622 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/urllib3/util/ssl_.py +504 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py +159 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/urllib3/util/ssltransport.py +221 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/urllib3/util/timeout.py +271 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/urllib3/util/url.py +435 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/urllib3/util/wait.py +152 -0
- package/python/lib/python3.13/site-packages/pip/_vendor/vendor.txt +19 -0
- package/python/lib/python3.13/site-packages/pip/py.typed +4 -0
- package/python/lib/python3.13/site-packages/pip-26.0.1.dist-info/INSTALLER +1 -0
- package/python/lib/python3.13/site-packages/pip-26.0.1.dist-info/METADATA +111 -0
- package/python/lib/python3.13/site-packages/pip-26.0.1.dist-info/RECORD +879 -0
- package/python/lib/python3.13/site-packages/pip-26.0.1.dist-info/REQUESTED +0 -0
- package/python/lib/python3.13/site-packages/pip-26.0.1.dist-info/WHEEL +4 -0
- package/python/lib/python3.13/site-packages/pip-26.0.1.dist-info/direct_url.json +1 -0
- package/python/lib/python3.13/site-packages/pip-26.0.1.dist-info/entry_points.txt +4 -0
- package/python/lib/python3.13/site-packages/pip-26.0.1.dist-info/licenses/AUTHORS.txt +860 -0
- package/python/lib/python3.13/site-packages/pip-26.0.1.dist-info/licenses/LICENSE.txt +20 -0
- package/python/lib/python3.13/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/cachecontrol/LICENSE.txt +13 -0
- package/python/lib/python3.13/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/certifi/LICENSE +20 -0
- package/python/lib/python3.13/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/dependency_groups/LICENSE.txt +9 -0
- package/python/lib/python3.13/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/distlib/LICENSE.txt +284 -0
- package/python/lib/python3.13/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/distro/LICENSE +202 -0
- package/python/lib/python3.13/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/idna/LICENSE.md +31 -0
- package/python/lib/python3.13/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/msgpack/COPYING +14 -0
- package/python/lib/python3.13/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/packaging/LICENSE +3 -0
- package/python/lib/python3.13/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/packaging/LICENSE.APACHE +177 -0
- package/python/lib/python3.13/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/packaging/LICENSE.BSD +23 -0
- package/python/lib/python3.13/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/pkg_resources/LICENSE +17 -0
- package/python/lib/python3.13/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/platformdirs/LICENSE +21 -0
- package/python/lib/python3.13/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/pygments/LICENSE +25 -0
- package/python/lib/python3.13/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/pyproject_hooks/LICENSE +21 -0
- package/python/lib/python3.13/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/requests/LICENSE +175 -0
- package/python/lib/python3.13/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/resolvelib/LICENSE +13 -0
- package/python/lib/python3.13/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/rich/LICENSE +19 -0
- package/python/lib/python3.13/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/tomli/LICENSE +21 -0
- package/python/lib/python3.13/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/tomli_w/LICENSE +21 -0
- package/python/lib/python3.13/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/truststore/LICENSE +21 -0
- package/python/lib/python3.13/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/urllib3/LICENSE.txt +21 -0
- package/python/lib/python3.13/site.py +773 -0
- package/python/lib/python3.13/smtplib.py +1123 -0
- package/python/lib/python3.13/socket.py +982 -0
- package/python/lib/python3.13/socketserver.py +863 -0
- package/python/lib/python3.13/sqlite3/__init__.py +70 -0
- package/python/lib/python3.13/sqlite3/__main__.py +139 -0
- package/python/lib/python3.13/sqlite3/dbapi2.py +108 -0
- package/python/lib/python3.13/sqlite3/dump.py +113 -0
- package/python/lib/python3.13/sre_compile.py +7 -0
- package/python/lib/python3.13/sre_constants.py +7 -0
- package/python/lib/python3.13/sre_parse.py +7 -0
- package/python/lib/python3.13/ssl.py +1529 -0
- package/python/lib/python3.13/stat.py +212 -0
- package/python/lib/python3.13/statistics.py +1817 -0
- package/python/lib/python3.13/string.py +309 -0
- package/python/lib/python3.13/stringprep.py +272 -0
- package/python/lib/python3.13/struct.py +15 -0
- package/python/lib/python3.13/subprocess.py +2258 -0
- package/python/lib/python3.13/symtable.py +414 -0
- package/python/lib/python3.13/sysconfig/__init__.py +726 -0
- package/python/lib/python3.13/sysconfig/__main__.py +248 -0
- package/python/lib/python3.13/tabnanny.py +340 -0
- package/python/lib/python3.13/tarfile.py +3070 -0
- package/python/lib/python3.13/tempfile.py +957 -0
- package/python/lib/python3.13/textwrap.py +497 -0
- package/python/lib/python3.13/this.py +28 -0
- package/python/lib/python3.13/threading.py +1602 -0
- package/python/lib/python3.13/timeit.py +381 -0
- package/python/lib/python3.13/tkinter/__init__.py +5002 -0
- package/python/lib/python3.13/tkinter/__main__.py +7 -0
- package/python/lib/python3.13/tkinter/colorchooser.py +86 -0
- package/python/lib/python3.13/tkinter/commondialog.py +53 -0
- package/python/lib/python3.13/tkinter/constants.py +110 -0
- package/python/lib/python3.13/tkinter/dialog.py +49 -0
- package/python/lib/python3.13/tkinter/dnd.py +324 -0
- package/python/lib/python3.13/tkinter/filedialog.py +492 -0
- package/python/lib/python3.13/tkinter/font.py +239 -0
- package/python/lib/python3.13/tkinter/messagebox.py +146 -0
- package/python/lib/python3.13/tkinter/scrolledtext.py +56 -0
- package/python/lib/python3.13/tkinter/simpledialog.py +441 -0
- package/python/lib/python3.13/tkinter/ttk.py +1647 -0
- package/python/lib/python3.13/token.py +141 -0
- package/python/lib/python3.13/tokenize.py +592 -0
- package/python/lib/python3.13/tomllib/__init__.py +10 -0
- package/python/lib/python3.13/tomllib/_parser.py +691 -0
- package/python/lib/python3.13/tomllib/_re.py +107 -0
- package/python/lib/python3.13/tomllib/_types.py +10 -0
- package/python/lib/python3.13/tomllib/mypy.ini +17 -0
- package/python/lib/python3.13/trace.py +754 -0
- package/python/lib/python3.13/traceback.py +1638 -0
- package/python/lib/python3.13/tracemalloc.py +560 -0
- package/python/lib/python3.13/tty.py +73 -0
- package/python/lib/python3.13/turtle.py +4199 -0
- package/python/lib/python3.13/turtledemo/__init__.py +14 -0
- package/python/lib/python3.13/turtledemo/__main__.py +401 -0
- package/python/lib/python3.13/turtledemo/bytedesign.py +161 -0
- package/python/lib/python3.13/turtledemo/chaos.py +59 -0
- package/python/lib/python3.13/turtledemo/clock.py +138 -0
- package/python/lib/python3.13/turtledemo/colormixer.py +58 -0
- package/python/lib/python3.13/turtledemo/forest.py +108 -0
- package/python/lib/python3.13/turtledemo/fractalcurves.py +138 -0
- package/python/lib/python3.13/turtledemo/lindenmayer.py +119 -0
- package/python/lib/python3.13/turtledemo/minimal_hanoi.py +79 -0
- package/python/lib/python3.13/turtledemo/nim.py +226 -0
- package/python/lib/python3.13/turtledemo/paint.py +54 -0
- package/python/lib/python3.13/turtledemo/peace.py +61 -0
- package/python/lib/python3.13/turtledemo/penrose.py +175 -0
- package/python/lib/python3.13/turtledemo/planet_and_moon.py +111 -0
- package/python/lib/python3.13/turtledemo/rosette.py +65 -0
- package/python/lib/python3.13/turtledemo/round_dance.py +86 -0
- package/python/lib/python3.13/turtledemo/sorting_animate.py +204 -0
- package/python/lib/python3.13/turtledemo/tree.py +62 -0
- package/python/lib/python3.13/turtledemo/turtle.cfg +10 -0
- package/python/lib/python3.13/turtledemo/two_canvases.py +54 -0
- package/python/lib/python3.13/turtledemo/yinyang.py +49 -0
- package/python/lib/python3.13/types.py +345 -0
- package/python/lib/python3.13/typing.py +3831 -0
- package/python/lib/python3.13/unittest/__init__.py +80 -0
- package/python/lib/python3.13/unittest/__main__.py +18 -0
- package/python/lib/python3.13/unittest/_log.py +86 -0
- package/python/lib/python3.13/unittest/async_case.py +146 -0
- package/python/lib/python3.13/unittest/case.py +1478 -0
- package/python/lib/python3.13/unittest/loader.py +453 -0
- package/python/lib/python3.13/unittest/main.py +280 -0
- package/python/lib/python3.13/unittest/mock.py +3179 -0
- package/python/lib/python3.13/unittest/result.py +256 -0
- package/python/lib/python3.13/unittest/runner.py +292 -0
- package/python/lib/python3.13/unittest/signals.py +71 -0
- package/python/lib/python3.13/unittest/suite.py +379 -0
- package/python/lib/python3.13/unittest/util.py +170 -0
- package/python/lib/python3.13/urllib/__init__.py +0 -0
- package/python/lib/python3.13/urllib/error.py +74 -0
- package/python/lib/python3.13/urllib/parse.py +1262 -0
- package/python/lib/python3.13/urllib/request.py +2797 -0
- package/python/lib/python3.13/urllib/response.py +84 -0
- package/python/lib/python3.13/urllib/robotparser.py +286 -0
- package/python/lib/python3.13/uuid.py +784 -0
- package/python/lib/python3.13/venv/__init__.py +687 -0
- package/python/lib/python3.13/venv/__main__.py +10 -0
- package/python/lib/python3.13/venv/scripts/common/Activate.ps1 +248 -0
- package/python/lib/python3.13/venv/scripts/common/activate +76 -0
- package/python/lib/python3.13/venv/scripts/common/activate.fish +69 -0
- package/python/lib/python3.13/venv/scripts/posix/activate.csh +27 -0
- package/python/lib/python3.13/warnings.py +735 -0
- package/python/lib/python3.13/wave.py +665 -0
- package/python/lib/python3.13/weakref.py +674 -0
- package/python/lib/python3.13/webbrowser.py +710 -0
- package/python/lib/python3.13/wsgiref/__init__.py +25 -0
- package/python/lib/python3.13/wsgiref/handlers.py +573 -0
- package/python/lib/python3.13/wsgiref/headers.py +187 -0
- package/python/lib/python3.13/wsgiref/simple_server.py +161 -0
- package/python/lib/python3.13/wsgiref/types.py +54 -0
- package/python/lib/python3.13/wsgiref/util.py +159 -0
- package/python/lib/python3.13/wsgiref/validate.py +438 -0
- package/python/lib/python3.13/xml/__init__.py +20 -0
- package/python/lib/python3.13/xml/dom/NodeFilter.py +27 -0
- package/python/lib/python3.13/xml/dom/__init__.py +140 -0
- package/python/lib/python3.13/xml/dom/domreg.py +99 -0
- package/python/lib/python3.13/xml/dom/expatbuilder.py +962 -0
- package/python/lib/python3.13/xml/dom/minicompat.py +109 -0
- package/python/lib/python3.13/xml/dom/minidom.py +2024 -0
- package/python/lib/python3.13/xml/dom/pulldom.py +336 -0
- package/python/lib/python3.13/xml/dom/xmlbuilder.py +389 -0
- package/python/lib/python3.13/xml/etree/ElementInclude.py +186 -0
- package/python/lib/python3.13/xml/etree/ElementPath.py +423 -0
- package/python/lib/python3.13/xml/etree/ElementTree.py +2098 -0
- package/python/lib/python3.13/xml/etree/__init__.py +33 -0
- package/python/lib/python3.13/xml/etree/cElementTree.py +3 -0
- package/python/lib/python3.13/xml/parsers/__init__.py +8 -0
- package/python/lib/python3.13/xml/parsers/expat.py +8 -0
- package/python/lib/python3.13/xml/sax/__init__.py +94 -0
- package/python/lib/python3.13/xml/sax/_exceptions.py +127 -0
- package/python/lib/python3.13/xml/sax/expatreader.py +454 -0
- package/python/lib/python3.13/xml/sax/handler.py +387 -0
- package/python/lib/python3.13/xml/sax/saxutils.py +369 -0
- package/python/lib/python3.13/xml/sax/xmlreader.py +378 -0
- package/python/lib/python3.13/xmlrpc/__init__.py +1 -0
- package/python/lib/python3.13/xmlrpc/client.py +1503 -0
- package/python/lib/python3.13/xmlrpc/server.py +1002 -0
- package/python/lib/python3.13/zipapp.py +229 -0
- package/python/lib/python3.13/zipfile/__init__.py +2375 -0
- package/python/lib/python3.13/zipfile/__main__.py +4 -0
- package/python/lib/python3.13/zipfile/_path/__init__.py +452 -0
- package/python/lib/python3.13/zipfile/_path/glob.py +113 -0
- package/python/lib/python3.13/zipimport.py +803 -0
- package/python/lib/python3.13/zoneinfo/__init__.py +34 -0
- package/python/lib/python3.13/zoneinfo/_common.py +168 -0
- package/python/lib/python3.13/zoneinfo/_tzpath.py +189 -0
- package/python/lib/python3.13/zoneinfo/_zoneinfo.py +772 -0
- package/python/lib/tcl9/9.0/http-2.10.1.tm +5475 -0
- package/python/lib/tcl9/9.0/msgcat-1.7.1.tm +1349 -0
- package/python/lib/tcl9/9.0/platform/shell-1.1.4.tm +241 -0
- package/python/lib/tcl9/9.0/platform-1.1.0.tm +443 -0
- package/python/lib/tcl9/9.0/tcltest-2.5.10.tm +3588 -0
- package/python/lib/tcl9.0/auto.tcl +711 -0
- package/python/lib/tcl9.0/clock.tcl +2110 -0
- package/python/lib/tcl9.0/cookiejar0.2/cookiejar.tcl +746 -0
- package/python/lib/tcl9.0/cookiejar0.2/idna.tcl +292 -0
- package/python/lib/tcl9.0/cookiejar0.2/pkgIndex.tcl +3 -0
- package/python/lib/tcl9.0/cookiejar0.2/public_suffix_list.dat.gz +0 -0
- package/python/lib/tcl9.0/encoding/ascii.enc +20 -0
- package/python/lib/tcl9.0/encoding/big5.enc +1516 -0
- package/python/lib/tcl9.0/encoding/cns11643.enc +1584 -0
- package/python/lib/tcl9.0/encoding/cp1250.enc +20 -0
- package/python/lib/tcl9.0/encoding/cp1251.enc +20 -0
- package/python/lib/tcl9.0/encoding/cp1252.enc +20 -0
- package/python/lib/tcl9.0/encoding/cp1253.enc +20 -0
- package/python/lib/tcl9.0/encoding/cp1254.enc +20 -0
- package/python/lib/tcl9.0/encoding/cp1255.enc +20 -0
- package/python/lib/tcl9.0/encoding/cp1256.enc +20 -0
- package/python/lib/tcl9.0/encoding/cp1257.enc +20 -0
- package/python/lib/tcl9.0/encoding/cp1258.enc +20 -0
- package/python/lib/tcl9.0/encoding/cp165.enc +20 -0
- package/python/lib/tcl9.0/encoding/cp437.enc +20 -0
- package/python/lib/tcl9.0/encoding/cp737.enc +20 -0
- package/python/lib/tcl9.0/encoding/cp775.enc +20 -0
- package/python/lib/tcl9.0/encoding/cp850.enc +20 -0
- package/python/lib/tcl9.0/encoding/cp852.enc +20 -0
- package/python/lib/tcl9.0/encoding/cp855.enc +20 -0
- package/python/lib/tcl9.0/encoding/cp857.enc +20 -0
- package/python/lib/tcl9.0/encoding/cp860.enc +20 -0
- package/python/lib/tcl9.0/encoding/cp861.enc +20 -0
- package/python/lib/tcl9.0/encoding/cp862.enc +20 -0
- package/python/lib/tcl9.0/encoding/cp863.enc +20 -0
- package/python/lib/tcl9.0/encoding/cp864.enc +20 -0
- package/python/lib/tcl9.0/encoding/cp865.enc +20 -0
- package/python/lib/tcl9.0/encoding/cp866.enc +20 -0
- package/python/lib/tcl9.0/encoding/cp869.enc +20 -0
- package/python/lib/tcl9.0/encoding/cp874.enc +20 -0
- package/python/lib/tcl9.0/encoding/cp932.enc +801 -0
- package/python/lib/tcl9.0/encoding/cp936.enc +2162 -0
- package/python/lib/tcl9.0/encoding/cp949.enc +2128 -0
- package/python/lib/tcl9.0/encoding/cp950.enc +1499 -0
- package/python/lib/tcl9.0/encoding/dingbats.enc +20 -0
- package/python/lib/tcl9.0/encoding/ebcdic.enc +20 -0
- package/python/lib/tcl9.0/encoding/euc-cn.enc +1397 -0
- package/python/lib/tcl9.0/encoding/euc-jp.enc +1353 -0
- package/python/lib/tcl9.0/encoding/euc-kr.enc +1533 -0
- package/python/lib/tcl9.0/encoding/gb12345.enc +1414 -0
- package/python/lib/tcl9.0/encoding/gb1988.enc +20 -0
- package/python/lib/tcl9.0/encoding/gb2312-raw.enc +1380 -0
- package/python/lib/tcl9.0/encoding/gb2312.enc +1397 -0
- package/python/lib/tcl9.0/encoding/iso2022-jp.enc +12 -0
- package/python/lib/tcl9.0/encoding/iso2022-kr.enc +7 -0
- package/python/lib/tcl9.0/encoding/iso2022.enc +14 -0
- package/python/lib/tcl9.0/encoding/iso8859-1.enc +20 -0
- package/python/lib/tcl9.0/encoding/iso8859-10.enc +20 -0
- package/python/lib/tcl9.0/encoding/iso8859-11.enc +20 -0
- package/python/lib/tcl9.0/encoding/iso8859-13.enc +20 -0
- package/python/lib/tcl9.0/encoding/iso8859-14.enc +20 -0
- package/python/lib/tcl9.0/encoding/iso8859-15.enc +20 -0
- package/python/lib/tcl9.0/encoding/iso8859-16.enc +20 -0
- package/python/lib/tcl9.0/encoding/iso8859-2.enc +20 -0
- package/python/lib/tcl9.0/encoding/iso8859-3.enc +20 -0
- package/python/lib/tcl9.0/encoding/iso8859-4.enc +20 -0
- package/python/lib/tcl9.0/encoding/iso8859-5.enc +20 -0
- package/python/lib/tcl9.0/encoding/iso8859-6.enc +20 -0
- package/python/lib/tcl9.0/encoding/iso8859-7.enc +20 -0
- package/python/lib/tcl9.0/encoding/iso8859-8.enc +20 -0
- package/python/lib/tcl9.0/encoding/iso8859-9.enc +20 -0
- package/python/lib/tcl9.0/encoding/jis0201.enc +20 -0
- package/python/lib/tcl9.0/encoding/jis0208.enc +1319 -0
- package/python/lib/tcl9.0/encoding/jis0212.enc +1159 -0
- package/python/lib/tcl9.0/encoding/koi8-r.enc +20 -0
- package/python/lib/tcl9.0/encoding/koi8-ru.enc +20 -0
- package/python/lib/tcl9.0/encoding/koi8-t.enc +20 -0
- package/python/lib/tcl9.0/encoding/koi8-u.enc +20 -0
- package/python/lib/tcl9.0/encoding/ksc5601.enc +1516 -0
- package/python/lib/tcl9.0/encoding/macCentEuro.enc +20 -0
- package/python/lib/tcl9.0/encoding/macCroatian.enc +20 -0
- package/python/lib/tcl9.0/encoding/macCyrillic.enc +20 -0
- package/python/lib/tcl9.0/encoding/macDingbats.enc +20 -0
- package/python/lib/tcl9.0/encoding/macGreek.enc +20 -0
- package/python/lib/tcl9.0/encoding/macIceland.enc +20 -0
- package/python/lib/tcl9.0/encoding/macJapan.enc +785 -0
- package/python/lib/tcl9.0/encoding/macRoman.enc +20 -0
- package/python/lib/tcl9.0/encoding/macRomania.enc +20 -0
- package/python/lib/tcl9.0/encoding/macThai.enc +20 -0
- package/python/lib/tcl9.0/encoding/macTurkish.enc +20 -0
- package/python/lib/tcl9.0/encoding/macUkraine.enc +20 -0
- package/python/lib/tcl9.0/encoding/shiftjis.enc +690 -0
- package/python/lib/tcl9.0/encoding/symbol.enc +20 -0
- package/python/lib/tcl9.0/encoding/tis-620.enc +20 -0
- package/python/lib/tcl9.0/foreachline.tcl +25 -0
- package/python/lib/tcl9.0/history.tcl +335 -0
- package/python/lib/tcl9.0/icu.tcl +145 -0
- package/python/lib/tcl9.0/init.tcl +773 -0
- package/python/lib/tcl9.0/install.tcl +275 -0
- package/python/lib/tcl9.0/msgs/af.msg +49 -0
- package/python/lib/tcl9.0/msgs/af_za.msg +6 -0
- package/python/lib/tcl9.0/msgs/ar.msg +54 -0
- package/python/lib/tcl9.0/msgs/ar_in.msg +6 -0
- package/python/lib/tcl9.0/msgs/ar_jo.msg +39 -0
- package/python/lib/tcl9.0/msgs/ar_lb.msg +39 -0
- package/python/lib/tcl9.0/msgs/ar_sy.msg +39 -0
- package/python/lib/tcl9.0/msgs/be.msg +52 -0
- package/python/lib/tcl9.0/msgs/bg.msg +52 -0
- package/python/lib/tcl9.0/msgs/bn.msg +49 -0
- package/python/lib/tcl9.0/msgs/bn_in.msg +6 -0
- package/python/lib/tcl9.0/msgs/ca.msg +50 -0
- package/python/lib/tcl9.0/msgs/cs.msg +54 -0
- package/python/lib/tcl9.0/msgs/da.msg +52 -0
- package/python/lib/tcl9.0/msgs/de.msg +54 -0
- package/python/lib/tcl9.0/msgs/de_at.msg +35 -0
- package/python/lib/tcl9.0/msgs/de_be.msg +53 -0
- package/python/lib/tcl9.0/msgs/el.msg +52 -0
- package/python/lib/tcl9.0/msgs/en_au.msg +7 -0
- package/python/lib/tcl9.0/msgs/en_be.msg +7 -0
- package/python/lib/tcl9.0/msgs/en_bw.msg +6 -0
- package/python/lib/tcl9.0/msgs/en_ca.msg +7 -0
- package/python/lib/tcl9.0/msgs/en_gb.msg +7 -0
- package/python/lib/tcl9.0/msgs/en_hk.msg +8 -0
- package/python/lib/tcl9.0/msgs/en_ie.msg +7 -0
- package/python/lib/tcl9.0/msgs/en_in.msg +8 -0
- package/python/lib/tcl9.0/msgs/en_nz.msg +7 -0
- package/python/lib/tcl9.0/msgs/en_ph.msg +8 -0
- package/python/lib/tcl9.0/msgs/en_sg.msg +6 -0
- package/python/lib/tcl9.0/msgs/en_za.msg +6 -0
- package/python/lib/tcl9.0/msgs/en_zw.msg +6 -0
- package/python/lib/tcl9.0/msgs/eo.msg +54 -0
- package/python/lib/tcl9.0/msgs/es.msg +52 -0
- package/python/lib/tcl9.0/msgs/es_ar.msg +6 -0
- package/python/lib/tcl9.0/msgs/es_bo.msg +6 -0
- package/python/lib/tcl9.0/msgs/es_cl.msg +6 -0
- package/python/lib/tcl9.0/msgs/es_co.msg +6 -0
- package/python/lib/tcl9.0/msgs/es_cr.msg +6 -0
- package/python/lib/tcl9.0/msgs/es_do.msg +6 -0
- package/python/lib/tcl9.0/msgs/es_ec.msg +6 -0
- package/python/lib/tcl9.0/msgs/es_gt.msg +6 -0
- package/python/lib/tcl9.0/msgs/es_hn.msg +6 -0
- package/python/lib/tcl9.0/msgs/es_mx.msg +6 -0
- package/python/lib/tcl9.0/msgs/es_ni.msg +6 -0
- package/python/lib/tcl9.0/msgs/es_pa.msg +6 -0
- package/python/lib/tcl9.0/msgs/es_pe.msg +6 -0
- package/python/lib/tcl9.0/msgs/es_pr.msg +6 -0
- package/python/lib/tcl9.0/msgs/es_py.msg +6 -0
- package/python/lib/tcl9.0/msgs/es_sv.msg +6 -0
- package/python/lib/tcl9.0/msgs/es_uy.msg +6 -0
- package/python/lib/tcl9.0/msgs/es_ve.msg +6 -0
- package/python/lib/tcl9.0/msgs/et.msg +52 -0
- package/python/lib/tcl9.0/msgs/eu.msg +47 -0
- package/python/lib/tcl9.0/msgs/eu_es.msg +7 -0
- package/python/lib/tcl9.0/msgs/fa.msg +47 -0
- package/python/lib/tcl9.0/msgs/fa_in.msg +52 -0
- package/python/lib/tcl9.0/msgs/fa_ir.msg +9 -0
- package/python/lib/tcl9.0/msgs/fi.msg +50 -0
- package/python/lib/tcl9.0/msgs/fo.msg +47 -0
- package/python/lib/tcl9.0/msgs/fo_fo.msg +7 -0
- package/python/lib/tcl9.0/msgs/fr.msg +52 -0
- package/python/lib/tcl9.0/msgs/fr_be.msg +7 -0
- package/python/lib/tcl9.0/msgs/fr_ca.msg +7 -0
- package/python/lib/tcl9.0/msgs/fr_ch.msg +7 -0
- package/python/lib/tcl9.0/msgs/ga.msg +47 -0
- package/python/lib/tcl9.0/msgs/ga_ie.msg +7 -0
- package/python/lib/tcl9.0/msgs/gl.msg +47 -0
- package/python/lib/tcl9.0/msgs/gl_es.msg +6 -0
- package/python/lib/tcl9.0/msgs/gv.msg +47 -0
- package/python/lib/tcl9.0/msgs/gv_gb.msg +6 -0
- package/python/lib/tcl9.0/msgs/he.msg +52 -0
- package/python/lib/tcl9.0/msgs/hi.msg +39 -0
- package/python/lib/tcl9.0/msgs/hi_in.msg +6 -0
- package/python/lib/tcl9.0/msgs/hr.msg +50 -0
- package/python/lib/tcl9.0/msgs/hu.msg +54 -0
- package/python/lib/tcl9.0/msgs/id.msg +47 -0
- package/python/lib/tcl9.0/msgs/id_id.msg +6 -0
- package/python/lib/tcl9.0/msgs/is.msg +50 -0
- package/python/lib/tcl9.0/msgs/it.msg +54 -0
- package/python/lib/tcl9.0/msgs/it_ch.msg +6 -0
- package/python/lib/tcl9.0/msgs/ja.msg +44 -0
- package/python/lib/tcl9.0/msgs/kl.msg +47 -0
- package/python/lib/tcl9.0/msgs/kl_gl.msg +7 -0
- package/python/lib/tcl9.0/msgs/ko.msg +55 -0
- package/python/lib/tcl9.0/msgs/ko_kr.msg +8 -0
- package/python/lib/tcl9.0/msgs/kok.msg +39 -0
- package/python/lib/tcl9.0/msgs/kok_in.msg +6 -0
- package/python/lib/tcl9.0/msgs/kw.msg +47 -0
- package/python/lib/tcl9.0/msgs/kw_gb.msg +6 -0
- package/python/lib/tcl9.0/msgs/lt.msg +52 -0
- package/python/lib/tcl9.0/msgs/lv.msg +52 -0
- package/python/lib/tcl9.0/msgs/mk.msg +52 -0
- package/python/lib/tcl9.0/msgs/mr.msg +39 -0
- package/python/lib/tcl9.0/msgs/mr_in.msg +6 -0
- package/python/lib/tcl9.0/msgs/ms.msg +47 -0
- package/python/lib/tcl9.0/msgs/ms_my.msg +6 -0
- package/python/lib/tcl9.0/msgs/mt.msg +27 -0
- package/python/lib/tcl9.0/msgs/nb.msg +52 -0
- package/python/lib/tcl9.0/msgs/nl.msg +50 -0
- package/python/lib/tcl9.0/msgs/nl_be.msg +7 -0
- package/python/lib/tcl9.0/msgs/nn.msg +52 -0
- package/python/lib/tcl9.0/msgs/pl.msg +52 -0
- package/python/lib/tcl9.0/msgs/pt.msg +50 -0
- package/python/lib/tcl9.0/msgs/pt_br.msg +7 -0
- package/python/lib/tcl9.0/msgs/ro.msg +52 -0
- package/python/lib/tcl9.0/msgs/ru.msg +52 -0
- package/python/lib/tcl9.0/msgs/ru_ua.msg +6 -0
- package/python/lib/tcl9.0/msgs/sh.msg +52 -0
- package/python/lib/tcl9.0/msgs/sk.msg +52 -0
- package/python/lib/tcl9.0/msgs/sl.msg +52 -0
- package/python/lib/tcl9.0/msgs/sq.msg +54 -0
- package/python/lib/tcl9.0/msgs/sr.msg +52 -0
- package/python/lib/tcl9.0/msgs/sv.msg +52 -0
- package/python/lib/tcl9.0/msgs/sw.msg +49 -0
- package/python/lib/tcl9.0/msgs/ta.msg +39 -0
- package/python/lib/tcl9.0/msgs/ta_in.msg +6 -0
- package/python/lib/tcl9.0/msgs/te.msg +47 -0
- package/python/lib/tcl9.0/msgs/te_in.msg +8 -0
- package/python/lib/tcl9.0/msgs/th.msg +54 -0
- package/python/lib/tcl9.0/msgs/tr.msg +50 -0
- package/python/lib/tcl9.0/msgs/uk.msg +52 -0
- package/python/lib/tcl9.0/msgs/vi.msg +50 -0
- package/python/lib/tcl9.0/msgs/zh.msg +55 -0
- package/python/lib/tcl9.0/msgs/zh_cn.msg +7 -0
- package/python/lib/tcl9.0/msgs/zh_hk.msg +28 -0
- package/python/lib/tcl9.0/msgs/zh_sg.msg +8 -0
- package/python/lib/tcl9.0/msgs/zh_tw.msg +8 -0
- package/python/lib/tcl9.0/opt0.4/optparse.tcl +1069 -0
- package/python/lib/tcl9.0/opt0.4/pkgIndex.tcl +12 -0
- package/python/lib/tcl9.0/package.tcl +767 -0
- package/python/lib/tcl9.0/parray.tcl +28 -0
- package/python/lib/tcl9.0/readfile.tcl +23 -0
- package/python/lib/tcl9.0/safe.tcl +1461 -0
- package/python/lib/tcl9.0/tclAppInit.c +183 -0
- package/python/lib/tcl9.0/tclIndex +112 -0
- package/python/lib/tcl9.0/tm.tcl +378 -0
- package/python/lib/tcl9.0/word.tcl +155 -0
- package/python/lib/tcl9.0/writefile.tcl +37 -0
- package/python/lib/thread3.0.4/libtcl9thread3.0.4.dylib +0 -0
- package/python/lib/thread3.0.4/libthread3.0.4.dylib +0 -0
- package/python/lib/thread3.0.4/pkgIndex.tcl +52 -0
- package/python/lib/thread3.0.4/ttrace.tcl +943 -0
- package/python/lib/tk9.0/bgerror.tcl +282 -0
- package/python/lib/tk9.0/button.tcl +782 -0
- package/python/lib/tk9.0/choosedir.tcl +310 -0
- package/python/lib/tk9.0/clrpick.tcl +696 -0
- package/python/lib/tk9.0/comdlg.tcl +322 -0
- package/python/lib/tk9.0/console.tcl +1148 -0
- package/python/lib/tk9.0/demos/README +44 -0
- package/python/lib/tk9.0/demos/anilabel.tcl +168 -0
- package/python/lib/tk9.0/demos/aniwave.tcl +107 -0
- package/python/lib/tk9.0/demos/arrow.tcl +260 -0
- package/python/lib/tk9.0/demos/bind.tcl +78 -0
- package/python/lib/tk9.0/demos/bitmap.tcl +52 -0
- package/python/lib/tk9.0/demos/browse +66 -0
- package/python/lib/tk9.0/demos/button.tcl +47 -0
- package/python/lib/tk9.0/demos/check.tcl +71 -0
- package/python/lib/tk9.0/demos/clrpick.tcl +54 -0
- package/python/lib/tk9.0/demos/colors.tcl +99 -0
- package/python/lib/tk9.0/demos/combo.tcl +62 -0
- package/python/lib/tk9.0/demos/cscroll.tcl +134 -0
- package/python/lib/tk9.0/demos/ctext.tcl +172 -0
- package/python/lib/tk9.0/demos/dialog1.tcl +25 -0
- package/python/lib/tk9.0/demos/dialog2.tcl +18 -0
- package/python/lib/tk9.0/demos/en.msg +103 -0
- package/python/lib/tk9.0/demos/entry1.tcl +34 -0
- package/python/lib/tk9.0/demos/entry2.tcl +47 -0
- package/python/lib/tk9.0/demos/entry3.tcl +185 -0
- package/python/lib/tk9.0/demos/filebox.tcl +82 -0
- package/python/lib/tk9.0/demos/floor.tcl +1379 -0
- package/python/lib/tk9.0/demos/fontchoose.tcl +67 -0
- package/python/lib/tk9.0/demos/form.tcl +38 -0
- package/python/lib/tk9.0/demos/goldberg.tcl +1970 -0
- package/python/lib/tk9.0/demos/hello +22 -0
- package/python/lib/tk9.0/demos/hscale.tcl +49 -0
- package/python/lib/tk9.0/demos/icon.tcl +51 -0
- package/python/lib/tk9.0/demos/image1.tcl +44 -0
- package/python/lib/tk9.0/demos/image2.tcl +114 -0
- package/python/lib/tk9.0/demos/images/Tcl.svg +75 -0
- package/python/lib/tk9.0/demos/images/Tk_feather.png +0 -0
- package/python/lib/tk9.0/demos/images/earth.gif +0 -0
- package/python/lib/tk9.0/demos/images/earthmenu.png +0 -0
- package/python/lib/tk9.0/demos/images/earthris.gif +0 -0
- package/python/lib/tk9.0/demos/images/flagdown.xbm +27 -0
- package/python/lib/tk9.0/demos/images/flagup.xbm +27 -0
- package/python/lib/tk9.0/demos/images/gray25.xbm +6 -0
- package/python/lib/tk9.0/demos/images/letters.xbm +27 -0
- package/python/lib/tk9.0/demos/images/noletter.xbm +27 -0
- package/python/lib/tk9.0/demos/images/ouster.png +0 -0
- package/python/lib/tk9.0/demos/images/pattern.xbm +6 -0
- package/python/lib/tk9.0/demos/images/plowed_field.png +0 -0
- package/python/lib/tk9.0/demos/images/starry_night.png +0 -0
- package/python/lib/tk9.0/demos/images/tcllogo.gif +0 -0
- package/python/lib/tk9.0/demos/images/teapot.ppm +31 -0
- package/python/lib/tk9.0/demos/items.tcl +307 -0
- package/python/lib/tk9.0/demos/ixset +328 -0
- package/python/lib/tk9.0/demos/knightstour.tcl +274 -0
- package/python/lib/tk9.0/demos/label.tcl +47 -0
- package/python/lib/tk9.0/demos/labelframe.tcl +76 -0
- package/python/lib/tk9.0/demos/license.terms +40 -0
- package/python/lib/tk9.0/demos/mac_styles.tcl +266 -0
- package/python/lib/tk9.0/demos/mac_tabs.tcl +76 -0
- package/python/lib/tk9.0/demos/mac_wm.tcl +227 -0
- package/python/lib/tk9.0/demos/mclist.tcl +170 -0
- package/python/lib/tk9.0/demos/menu.tcl +184 -0
- package/python/lib/tk9.0/demos/menubu.tcl +90 -0
- package/python/lib/tk9.0/demos/msgbox.tcl +62 -0
- package/python/lib/tk9.0/demos/nl.msg +132 -0
- package/python/lib/tk9.0/demos/paned1.tcl +32 -0
- package/python/lib/tk9.0/demos/paned2.tcl +74 -0
- package/python/lib/tk9.0/demos/pendulum.tcl +206 -0
- package/python/lib/tk9.0/demos/plot.tcl +97 -0
- package/python/lib/tk9.0/demos/print.tcl +91 -0
- package/python/lib/tk9.0/demos/puzzle.tcl +82 -0
- package/python/lib/tk9.0/demos/radio.tcl +66 -0
- package/python/lib/tk9.0/demos/rmt +210 -0
- package/python/lib/tk9.0/demos/rolodex +204 -0
- package/python/lib/tk9.0/demos/ruler.tcl +175 -0
- package/python/lib/tk9.0/demos/sayings.tcl +44 -0
- package/python/lib/tk9.0/demos/search.tcl +139 -0
- package/python/lib/tk9.0/demos/spin.tcl +45 -0
- package/python/lib/tk9.0/demos/states.tcl +54 -0
- package/python/lib/tk9.0/demos/style.tcl +155 -0
- package/python/lib/tk9.0/demos/systray.tcl +89 -0
- package/python/lib/tk9.0/demos/tclIndex +70 -0
- package/python/lib/tk9.0/demos/tcolor +358 -0
- package/python/lib/tk9.0/demos/text.tcl +113 -0
- package/python/lib/tk9.0/demos/textpeer.tcl +62 -0
- package/python/lib/tk9.0/demos/timer +47 -0
- package/python/lib/tk9.0/demos/toolbar.tcl +92 -0
- package/python/lib/tk9.0/demos/tree.tcl +89 -0
- package/python/lib/tk9.0/demos/ttkbut.tcl +84 -0
- package/python/lib/tk9.0/demos/ttkmenu.tcl +53 -0
- package/python/lib/tk9.0/demos/ttknote.tcl +57 -0
- package/python/lib/tk9.0/demos/ttkpane.tcl +112 -0
- package/python/lib/tk9.0/demos/ttkprogress.tcl +46 -0
- package/python/lib/tk9.0/demos/ttkscale.tcl +39 -0
- package/python/lib/tk9.0/demos/ttkspin.tcl +49 -0
- package/python/lib/tk9.0/demos/twind.tcl +358 -0
- package/python/lib/tk9.0/demos/unicodeout.tcl +126 -0
- package/python/lib/tk9.0/demos/vscale.tcl +50 -0
- package/python/lib/tk9.0/demos/widget +713 -0
- package/python/lib/tk9.0/demos/windowicons.tcl +108 -0
- package/python/lib/tk9.0/dialog.tcl +175 -0
- package/python/lib/tk9.0/entry.tcl +720 -0
- package/python/lib/tk9.0/focus.tcl +178 -0
- package/python/lib/tk9.0/fontchooser.tcl +512 -0
- package/python/lib/tk9.0/iconbadges.tcl +253 -0
- package/python/lib/tk9.0/iconlist.tcl +705 -0
- package/python/lib/tk9.0/icons.tcl +54 -0
- package/python/lib/tk9.0/images/README +7 -0
- package/python/lib/tk9.0/images/logo.eps +2091 -0
- package/python/lib/tk9.0/images/logo100.gif +0 -0
- package/python/lib/tk9.0/images/logo64.gif +0 -0
- package/python/lib/tk9.0/images/logoLarge.gif +0 -0
- package/python/lib/tk9.0/images/logoMed.gif +0 -0
- package/python/lib/tk9.0/images/pwrdLogo.eps +1897 -0
- package/python/lib/tk9.0/images/pwrdLogo100.gif +0 -0
- package/python/lib/tk9.0/images/pwrdLogo150.gif +0 -0
- package/python/lib/tk9.0/images/pwrdLogo175.gif +0 -0
- package/python/lib/tk9.0/images/pwrdLogo200.gif +0 -0
- package/python/lib/tk9.0/images/pwrdLogo75.gif +0 -0
- package/python/lib/tk9.0/images/tai-ku.gif +0 -0
- package/python/lib/tk9.0/listbox.tcl +522 -0
- package/python/lib/tk9.0/megawidget.tcl +297 -0
- package/python/lib/tk9.0/menu.tcl +1376 -0
- package/python/lib/tk9.0/mkpsenc.tcl +1488 -0
- package/python/lib/tk9.0/msgbox.tcl +454 -0
- package/python/lib/tk9.0/msgs/cs.msg +95 -0
- package/python/lib/tk9.0/msgs/da.msg +96 -0
- package/python/lib/tk9.0/msgs/de.msg +109 -0
- package/python/lib/tk9.0/msgs/el.msg +104 -0
- package/python/lib/tk9.0/msgs/en.msg +110 -0
- package/python/lib/tk9.0/msgs/en_gb.msg +3 -0
- package/python/lib/tk9.0/msgs/eo.msg +93 -0
- package/python/lib/tk9.0/msgs/es.msg +94 -0
- package/python/lib/tk9.0/msgs/fi.msg +114 -0
- package/python/lib/tk9.0/msgs/fr.msg +90 -0
- package/python/lib/tk9.0/msgs/hu.msg +96 -0
- package/python/lib/tk9.0/msgs/it.msg +91 -0
- package/python/lib/tk9.0/msgs/nl.msg +109 -0
- package/python/lib/tk9.0/msgs/pl.msg +109 -0
- package/python/lib/tk9.0/msgs/pt.msg +92 -0
- package/python/lib/tk9.0/msgs/ru.msg +112 -0
- package/python/lib/tk9.0/msgs/sv.msg +94 -0
- package/python/lib/tk9.0/msgs/zh_cn.msg +111 -0
- package/python/lib/tk9.0/optMenu.tcl +43 -0
- package/python/lib/tk9.0/palette.tcl +283 -0
- package/python/lib/tk9.0/panedwindow.tcl +194 -0
- package/python/lib/tk9.0/pkgIndex.tcl +3 -0
- package/python/lib/tk9.0/print.tcl +1460 -0
- package/python/lib/tk9.0/safetk.tcl +262 -0
- package/python/lib/tk9.0/scale.tcl +299 -0
- package/python/lib/tk9.0/scaling.tcl +232 -0
- package/python/lib/tk9.0/scrlbar.tcl +500 -0
- package/python/lib/tk9.0/spinbox.tcl +580 -0
- package/python/lib/tk9.0/systray.tcl +483 -0
- package/python/lib/tk9.0/tclIndex +252 -0
- package/python/lib/tk9.0/tearoff.tcl +155 -0
- package/python/lib/tk9.0/text.tcl +1295 -0
- package/python/lib/tk9.0/tk.tcl +853 -0
- package/python/lib/tk9.0/tkAppInit.c +200 -0
- package/python/lib/tk9.0/tkfbox.tcl +1251 -0
- package/python/lib/tk9.0/ttk/altTheme.tcl +153 -0
- package/python/lib/tk9.0/ttk/aquaTheme.tcl +178 -0
- package/python/lib/tk9.0/ttk/button.tcl +83 -0
- package/python/lib/tk9.0/ttk/clamTheme.tcl +196 -0
- package/python/lib/tk9.0/ttk/classicTheme.tcl +145 -0
- package/python/lib/tk9.0/ttk/combobox.tcl +555 -0
- package/python/lib/tk9.0/ttk/cursors.tcl +205 -0
- package/python/lib/tk9.0/ttk/defaults.tcl +231 -0
- package/python/lib/tk9.0/ttk/entry.tcl +678 -0
- package/python/lib/tk9.0/ttk/fonts.tcl +152 -0
- package/python/lib/tk9.0/ttk/menubutton.tcl +237 -0
- package/python/lib/tk9.0/ttk/notebook.tcl +255 -0
- package/python/lib/tk9.0/ttk/panedwindow.tcl +89 -0
- package/python/lib/tk9.0/ttk/progress.tcl +55 -0
- package/python/lib/tk9.0/ttk/scale.tcl +94 -0
- package/python/lib/tk9.0/ttk/scrollbar.tcl +119 -0
- package/python/lib/tk9.0/ttk/sizegrip.tcl +102 -0
- package/python/lib/tk9.0/ttk/spinbox.tcl +204 -0
- package/python/lib/tk9.0/ttk/treeview.tcl +464 -0
- package/python/lib/tk9.0/ttk/ttk.tcl +223 -0
- package/python/lib/tk9.0/ttk/utils.tcl +317 -0
- package/python/lib/tk9.0/ttk/vistaTheme.tcl +259 -0
- package/python/lib/tk9.0/ttk/winTheme.tcl +119 -0
- package/python/lib/tk9.0/ttk/xpTheme.tcl +95 -0
- package/python/lib/tk9.0/xmfbox.tcl +982 -0
- package/python/share/man/man1/python3.13.1 +740 -0
- package/runtime-manifest.json +7 -0
|
@@ -0,0 +1,1461 @@
|
|
|
1
|
+
# safe.tcl --
|
|
2
|
+
#
|
|
3
|
+
# This file provide a safe loading/sourcing mechanism for safe interpreters.
|
|
4
|
+
# It implements a virtual path mecanism to hide the real pathnames from the
|
|
5
|
+
# child. It runs in a parent interpreter and sets up data structure and
|
|
6
|
+
# aliases that will be invoked when used from a child interpreter.
|
|
7
|
+
#
|
|
8
|
+
# See the safe.n man page for details.
|
|
9
|
+
#
|
|
10
|
+
# Copyright © 1996-1997 Sun Microsystems, Inc.
|
|
11
|
+
#
|
|
12
|
+
# See the file "license.terms" for information on usage and redistribution of
|
|
13
|
+
# this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
|
14
|
+
|
|
15
|
+
#
|
|
16
|
+
# The implementation is based on namespaces. These naming conventions are
|
|
17
|
+
# followed:
|
|
18
|
+
# Private procs starts with uppercase.
|
|
19
|
+
# Public procs are exported and starts with lowercase
|
|
20
|
+
#
|
|
21
|
+
|
|
22
|
+
# Needed utilities package
|
|
23
|
+
package require opt 0.4.10
|
|
24
|
+
|
|
25
|
+
# Create the safe namespace
|
|
26
|
+
namespace eval ::safe {
|
|
27
|
+
# Exported API:
|
|
28
|
+
namespace export interpCreate interpInit interpConfigure interpDelete \
|
|
29
|
+
interpAddToAccessPath interpFindInAccessPath setLogCmd
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
# Helper function to resolve the dual way of specifying staticsok (either
|
|
33
|
+
# by -noStatics or -statics 0)
|
|
34
|
+
proc ::safe::InterpStatics {} {
|
|
35
|
+
foreach v {Args statics noStatics} {
|
|
36
|
+
upvar $v $v
|
|
37
|
+
}
|
|
38
|
+
set flag [::tcl::OptProcArgGiven -noStatics]
|
|
39
|
+
if {$flag && (!$noStatics == !$statics)
|
|
40
|
+
&& ([::tcl::OptProcArgGiven -statics])} {
|
|
41
|
+
return -code error\
|
|
42
|
+
"conflicting values given for -statics and -noStatics"
|
|
43
|
+
}
|
|
44
|
+
if {$flag} {
|
|
45
|
+
return [expr {!$noStatics}]
|
|
46
|
+
} else {
|
|
47
|
+
return $statics
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
# Helper function to resolve the dual way of specifying nested loading
|
|
52
|
+
# (either by -nestedLoadOk or -nested 1)
|
|
53
|
+
proc ::safe::InterpNested {} {
|
|
54
|
+
foreach v {Args nested nestedLoadOk} {
|
|
55
|
+
upvar $v $v
|
|
56
|
+
}
|
|
57
|
+
set flag [::tcl::OptProcArgGiven -nestedLoadOk]
|
|
58
|
+
# note that the test here is the opposite of the "InterpStatics" one
|
|
59
|
+
# (it is not -noNested... because of the wanted default value)
|
|
60
|
+
if {$flag && (!$nestedLoadOk != !$nested)
|
|
61
|
+
&& ([::tcl::OptProcArgGiven -nested])} {
|
|
62
|
+
return -code error\
|
|
63
|
+
"conflicting values given for -nested and -nestedLoadOk"
|
|
64
|
+
}
|
|
65
|
+
if {$flag} {
|
|
66
|
+
# another difference with "InterpStatics"
|
|
67
|
+
return $nestedLoadOk
|
|
68
|
+
} else {
|
|
69
|
+
return $nested
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
####
|
|
74
|
+
#
|
|
75
|
+
# API entry points that needs argument parsing :
|
|
76
|
+
#
|
|
77
|
+
####
|
|
78
|
+
|
|
79
|
+
# Interface/entry point function and front end for "Create"
|
|
80
|
+
proc ::safe::interpCreate {args} {
|
|
81
|
+
variable AutoPathSync
|
|
82
|
+
if {$AutoPathSync} {
|
|
83
|
+
set autoPath {}
|
|
84
|
+
}
|
|
85
|
+
set Args [::tcl::OptKeyParse ::safe::interpCreate $args]
|
|
86
|
+
RejectExcessColons $child
|
|
87
|
+
|
|
88
|
+
set withAutoPath [::tcl::OptProcArgGiven -autoPath]
|
|
89
|
+
InterpCreate $child $accessPath \
|
|
90
|
+
[InterpStatics] [InterpNested] $deleteHook $autoPath $withAutoPath
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
proc ::safe::interpInit {args} {
|
|
94
|
+
variable AutoPathSync
|
|
95
|
+
if {$AutoPathSync} {
|
|
96
|
+
set autoPath {}
|
|
97
|
+
}
|
|
98
|
+
set Args [::tcl::OptKeyParse ::safe::interpIC $args]
|
|
99
|
+
if {![::interp exists $child]} {
|
|
100
|
+
return -code error "\"$child\" is not an interpreter"
|
|
101
|
+
}
|
|
102
|
+
RejectExcessColons $child
|
|
103
|
+
|
|
104
|
+
set withAutoPath [::tcl::OptProcArgGiven -autoPath]
|
|
105
|
+
InterpInit $child $accessPath \
|
|
106
|
+
[InterpStatics] [InterpNested] $deleteHook $autoPath $withAutoPath
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
# Check that the given child is "one of us"
|
|
110
|
+
proc ::safe::CheckInterp {child} {
|
|
111
|
+
namespace upvar ::safe [VarName $child] state
|
|
112
|
+
if {![info exists state] || ![::interp exists $child]} {
|
|
113
|
+
return -code error \
|
|
114
|
+
"\"$child\" is not an interpreter managed by ::safe::"
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
# Interface/entry point function and front end for "Configure". This code
|
|
119
|
+
# is awfully pedestrian because it would need more coupling and support
|
|
120
|
+
# between the way we store the configuration values in safe::interp's and
|
|
121
|
+
# the Opt package. Obviously we would like an OptConfigure to avoid
|
|
122
|
+
# duplicating all this code everywhere.
|
|
123
|
+
# -> TODO (the app should share or access easily the program/value stored
|
|
124
|
+
# by opt)
|
|
125
|
+
|
|
126
|
+
# This is even more complicated by the boolean flags with no values that
|
|
127
|
+
# we had the bad idea to support for the sake of user simplicity in
|
|
128
|
+
# create/init but which makes life hard in configure...
|
|
129
|
+
# So this will be hopefully written and some integrated with opt1.0
|
|
130
|
+
# (hopefully for tcl9.0 ?)
|
|
131
|
+
proc ::safe::interpConfigure {args} {
|
|
132
|
+
variable AutoPathSync
|
|
133
|
+
switch [llength $args] {
|
|
134
|
+
1 {
|
|
135
|
+
# If we have exactly 1 argument the semantic is to return all
|
|
136
|
+
# the current configuration. We still call OptKeyParse though
|
|
137
|
+
# we know that "child" is our given argument because it also
|
|
138
|
+
# checks for the "-help" option.
|
|
139
|
+
set Args [::tcl::OptKeyParse ::safe::interpIC $args]
|
|
140
|
+
CheckInterp $child
|
|
141
|
+
namespace upvar ::safe [VarName $child] state
|
|
142
|
+
|
|
143
|
+
set TMP [list \
|
|
144
|
+
[list -accessPath $state(access_path)] \
|
|
145
|
+
[list -statics $state(staticsok)] \
|
|
146
|
+
[list -nested $state(nestedok)] \
|
|
147
|
+
[list -deleteHook $state(cleanupHook)] \
|
|
148
|
+
]
|
|
149
|
+
if {!$AutoPathSync} {
|
|
150
|
+
lappend TMP [list -autoPath $state(auto_path)]
|
|
151
|
+
}
|
|
152
|
+
return [join $TMP]
|
|
153
|
+
}
|
|
154
|
+
2 {
|
|
155
|
+
# If we have exactly 2 arguments the semantic is a "configure
|
|
156
|
+
# get"
|
|
157
|
+
lassign $args child arg
|
|
158
|
+
|
|
159
|
+
# get the flag sub program (we 'know' about Opt's internal
|
|
160
|
+
# representation of data)
|
|
161
|
+
set desc [lindex [::tcl::OptKeyGetDesc ::safe::interpIC] 2]
|
|
162
|
+
set hits [::tcl::OptHits desc $arg]
|
|
163
|
+
if {$hits > 1} {
|
|
164
|
+
return -code error [::tcl::OptAmbigous $desc $arg]
|
|
165
|
+
} elseif {$hits == 0} {
|
|
166
|
+
return -code error [::tcl::OptFlagUsage $desc $arg]
|
|
167
|
+
}
|
|
168
|
+
CheckInterp $child
|
|
169
|
+
namespace upvar ::safe [VarName $child] state
|
|
170
|
+
|
|
171
|
+
set item [::tcl::OptCurDesc $desc]
|
|
172
|
+
set name [::tcl::OptName $item]
|
|
173
|
+
switch -exact -- $name {
|
|
174
|
+
-accessPath {
|
|
175
|
+
return [list -accessPath $state(access_path)]
|
|
176
|
+
}
|
|
177
|
+
-autoPath {
|
|
178
|
+
if {$AutoPathSync} {
|
|
179
|
+
return -code error "unknown flag $name (bug)"
|
|
180
|
+
} else {
|
|
181
|
+
return [list -autoPath $state(auto_path)]
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
-statics {
|
|
185
|
+
return [list -statics $state(staticsok)]
|
|
186
|
+
}
|
|
187
|
+
-nested {
|
|
188
|
+
return [list -nested $state(nestedok)]
|
|
189
|
+
}
|
|
190
|
+
-deleteHook {
|
|
191
|
+
return [list -deleteHook $state(cleanupHook)]
|
|
192
|
+
}
|
|
193
|
+
-noStatics {
|
|
194
|
+
# it is most probably a set in fact but we would need
|
|
195
|
+
# then to jump to the set part and it is not *sure*
|
|
196
|
+
# that it is a set action that the user want, so force
|
|
197
|
+
# it to use the unambiguous -statics ?value? instead:
|
|
198
|
+
return -code error\
|
|
199
|
+
"ambigous query (get or set -noStatics ?)\
|
|
200
|
+
use -statics instead"
|
|
201
|
+
}
|
|
202
|
+
-nestedLoadOk {
|
|
203
|
+
return -code error\
|
|
204
|
+
"ambigous query (get or set -nestedLoadOk ?)\
|
|
205
|
+
use -nested instead"
|
|
206
|
+
}
|
|
207
|
+
default {
|
|
208
|
+
return -code error "unknown flag $name (bug)"
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
}
|
|
212
|
+
default {
|
|
213
|
+
# Otherwise we want to parse the arguments like init and
|
|
214
|
+
# create did
|
|
215
|
+
set Args [::tcl::OptKeyParse ::safe::interpIC $args]
|
|
216
|
+
CheckInterp $child
|
|
217
|
+
namespace upvar ::safe [VarName $child] state
|
|
218
|
+
|
|
219
|
+
# Get the current (and not the default) values of whatever has
|
|
220
|
+
# not been given:
|
|
221
|
+
if {![::tcl::OptProcArgGiven -accessPath]} {
|
|
222
|
+
set doreset 0
|
|
223
|
+
set accessPath $state(access_path)
|
|
224
|
+
} else {
|
|
225
|
+
set doreset 1
|
|
226
|
+
}
|
|
227
|
+
if {(!$AutoPathSync) && (![::tcl::OptProcArgGiven -autoPath])} {
|
|
228
|
+
set autoPath $state(auto_path)
|
|
229
|
+
} elseif {$AutoPathSync} {
|
|
230
|
+
set autoPath {}
|
|
231
|
+
} else {
|
|
232
|
+
}
|
|
233
|
+
if {
|
|
234
|
+
![::tcl::OptProcArgGiven -statics]
|
|
235
|
+
&& ![::tcl::OptProcArgGiven -noStatics]
|
|
236
|
+
} then {
|
|
237
|
+
set statics $state(staticsok)
|
|
238
|
+
} else {
|
|
239
|
+
set statics [InterpStatics]
|
|
240
|
+
}
|
|
241
|
+
if {
|
|
242
|
+
[::tcl::OptProcArgGiven -nested] ||
|
|
243
|
+
[::tcl::OptProcArgGiven -nestedLoadOk]
|
|
244
|
+
} then {
|
|
245
|
+
set nested [InterpNested]
|
|
246
|
+
} else {
|
|
247
|
+
set nested $state(nestedok)
|
|
248
|
+
}
|
|
249
|
+
if {![::tcl::OptProcArgGiven -deleteHook]} {
|
|
250
|
+
set deleteHook $state(cleanupHook)
|
|
251
|
+
}
|
|
252
|
+
# Now reconfigure
|
|
253
|
+
set withAutoPath [::tcl::OptProcArgGiven -autoPath]
|
|
254
|
+
InterpSetConfig $child $accessPath $statics $nested $deleteHook $autoPath $withAutoPath
|
|
255
|
+
|
|
256
|
+
# auto_reset the child (to completely sync the new access_path) tests safe-9.8 safe-9.9
|
|
257
|
+
if {$doreset} {
|
|
258
|
+
if {[catch {::interp eval $child {auto_reset}} msg]} {
|
|
259
|
+
Log $child "auto_reset failed: $msg"
|
|
260
|
+
} else {
|
|
261
|
+
Log $child "successful auto_reset" NOTICE
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
# Sync the paths used to search for Tcl modules.
|
|
265
|
+
::interp eval $child {tcl::tm::path remove {*}[tcl::tm::list]}
|
|
266
|
+
if {[llength $state(tm_path_child)] > 0} {
|
|
267
|
+
::interp eval $child [list \
|
|
268
|
+
::tcl::tm::add {*}[lreverse $state(tm_path_child)]]
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
# Remove stale "package ifneeded" data for non-loaded packages.
|
|
272
|
+
# - Not for loaded packages, because "package forget" erases
|
|
273
|
+
# data from "package provide" as well as "package ifneeded".
|
|
274
|
+
# - This is OK because the script cannot reload any version of
|
|
275
|
+
# the package unless it first does "package forget".
|
|
276
|
+
foreach pkg [::interp eval $child {package names}] {
|
|
277
|
+
if {[::interp eval $child [list package provide $pkg]] eq ""} {
|
|
278
|
+
::interp eval $child [list package forget $pkg]
|
|
279
|
+
}
|
|
280
|
+
}
|
|
281
|
+
}
|
|
282
|
+
return
|
|
283
|
+
}
|
|
284
|
+
}
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
####
|
|
288
|
+
#
|
|
289
|
+
# Functions that actually implements the exported APIs
|
|
290
|
+
#
|
|
291
|
+
####
|
|
292
|
+
|
|
293
|
+
#
|
|
294
|
+
# safe::InterpCreate : doing the real job
|
|
295
|
+
#
|
|
296
|
+
# This procedure creates a safe interpreter and initializes it with the safe
|
|
297
|
+
# base aliases.
|
|
298
|
+
# NB: child name must be simple alphanumeric string, no spaces, no (), no
|
|
299
|
+
# {},... {because the state array is stored as part of the name}
|
|
300
|
+
#
|
|
301
|
+
# Returns the child name.
|
|
302
|
+
#
|
|
303
|
+
# Optional Arguments :
|
|
304
|
+
# + child name : if empty, generated name will be used
|
|
305
|
+
# + access_path: path list controlling where load/source can occur,
|
|
306
|
+
# if empty: the parent auto_path and its subdirectories will be
|
|
307
|
+
# used.
|
|
308
|
+
# + staticsok : flag, if 0 :no static package can be loaded (load {} Xxx)
|
|
309
|
+
# if 1 :static packages are ok.
|
|
310
|
+
# + nestedok : flag, if 0 :no loading to sub-sub interps (load xx xx sub)
|
|
311
|
+
# if 1 : multiple levels are ok.
|
|
312
|
+
|
|
313
|
+
# use the full name and no indent so auto_mkIndex can find us
|
|
314
|
+
proc ::safe::InterpCreate {
|
|
315
|
+
child
|
|
316
|
+
access_path
|
|
317
|
+
staticsok
|
|
318
|
+
nestedok
|
|
319
|
+
deletehook
|
|
320
|
+
autoPath
|
|
321
|
+
withAutoPath
|
|
322
|
+
} {
|
|
323
|
+
# Create the child.
|
|
324
|
+
# If evaluated in ::safe, the interpreter command for foo is ::foo;
|
|
325
|
+
# but for foo::bar is safe::foo::bar. So evaluate in :: instead.
|
|
326
|
+
if {$child ne ""} {
|
|
327
|
+
namespace eval :: [list ::interp create -safe $child]
|
|
328
|
+
} else {
|
|
329
|
+
# empty argument: generate child name
|
|
330
|
+
set child [::interp create -safe]
|
|
331
|
+
}
|
|
332
|
+
Log $child "Created" NOTICE
|
|
333
|
+
|
|
334
|
+
# Initialize it. (returns child name)
|
|
335
|
+
InterpInit $child $access_path $staticsok $nestedok $deletehook $autoPath $withAutoPath
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
#
|
|
339
|
+
# InterpSetConfig (was setAccessPath) :
|
|
340
|
+
# Sets up child virtual access path and corresponding structure within
|
|
341
|
+
# the parent. Also sets the tcl_library in the child to be the first
|
|
342
|
+
# directory in the path.
|
|
343
|
+
# NB: If you change the path after the child has been initialized you
|
|
344
|
+
# probably need to call "auto_reset" in the child in order that it gets
|
|
345
|
+
# the right auto_index() array values.
|
|
346
|
+
#
|
|
347
|
+
# It is the caller's responsibility, if it supplies a non-empty value for
|
|
348
|
+
# access_path, to make the first directory in the path suitable for use as
|
|
349
|
+
# tcl_library, and (if ![setSyncMode]), to set the child's ::auto_path.
|
|
350
|
+
|
|
351
|
+
proc ::safe::InterpSetConfig {child access_path staticsok nestedok deletehook autoPath withAutoPath} {
|
|
352
|
+
global auto_path
|
|
353
|
+
variable AutoPathSync
|
|
354
|
+
|
|
355
|
+
# determine and store the access path if empty
|
|
356
|
+
if {$access_path eq ""} {
|
|
357
|
+
set access_path $auto_path
|
|
358
|
+
|
|
359
|
+
# Make sure that tcl_library is in auto_path and at the first
|
|
360
|
+
# position (needed by setAccessPath)
|
|
361
|
+
set where [lsearch -exact $access_path [info library]]
|
|
362
|
+
if {$where < 0} {
|
|
363
|
+
# not found, add it.
|
|
364
|
+
set access_path [linsert $access_path 0 [info library]]
|
|
365
|
+
Log $child "tcl_library was not in auto_path,\
|
|
366
|
+
added it to child's access_path" NOTICE
|
|
367
|
+
} elseif {$where != 0} {
|
|
368
|
+
# not first, move it first
|
|
369
|
+
set access_path [linsert \
|
|
370
|
+
[lreplace $access_path $where $where] \
|
|
371
|
+
0 [info library]]
|
|
372
|
+
Log $child "tcl_libray was not in first in auto_path,\
|
|
373
|
+
moved it to front of child's access_path" NOTICE
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
set raw_auto_path $access_path
|
|
377
|
+
|
|
378
|
+
# Add 1st level subdirs (will searched by auto loading from tcl
|
|
379
|
+
# code in the child using glob and thus fail, so we add them here
|
|
380
|
+
# so by default it works the same).
|
|
381
|
+
set access_path [AddSubDirs $access_path]
|
|
382
|
+
} else {
|
|
383
|
+
set raw_auto_path $autoPath
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
if {$withAutoPath} {
|
|
387
|
+
set raw_auto_path $autoPath
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
Log $child "Setting accessPath=($access_path) staticsok=$staticsok\
|
|
391
|
+
nestedok=$nestedok deletehook=($deletehook)" NOTICE
|
|
392
|
+
if {!$AutoPathSync} {
|
|
393
|
+
Log $child "Setting auto_path=($raw_auto_path)" NOTICE
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
namespace upvar ::safe [VarName $child] state
|
|
397
|
+
|
|
398
|
+
# clear old autopath if it existed
|
|
399
|
+
# build new one
|
|
400
|
+
# Extend the access list with the paths used to look for Tcl Modules.
|
|
401
|
+
# We save the virtual form separately as well, as syncing it with the
|
|
402
|
+
# child has to be defered until the necessary commands are present for
|
|
403
|
+
# setup.
|
|
404
|
+
set norm_access_path {}
|
|
405
|
+
set child_access_path {}
|
|
406
|
+
set map_access_path {}
|
|
407
|
+
set remap_access_path {}
|
|
408
|
+
set child_tm_path {}
|
|
409
|
+
|
|
410
|
+
set i 0
|
|
411
|
+
foreach dir $access_path {
|
|
412
|
+
set token [PathToken $i]
|
|
413
|
+
lappend child_access_path $token
|
|
414
|
+
lappend map_access_path $token $dir
|
|
415
|
+
lappend remap_access_path $dir $token
|
|
416
|
+
lappend norm_access_path [file normalize $dir]
|
|
417
|
+
incr i
|
|
418
|
+
}
|
|
419
|
+
|
|
420
|
+
# Set the child auto_path to a tokenized raw_auto_path.
|
|
421
|
+
# Silently ignore any directories that are not in the access path.
|
|
422
|
+
# If [setSyncMode], SyncAccessPath will overwrite this value with the
|
|
423
|
+
# full access path.
|
|
424
|
+
# If ![setSyncMode], Safe Base code will not change this value.
|
|
425
|
+
set tokens_auto_path {}
|
|
426
|
+
foreach dir $raw_auto_path {
|
|
427
|
+
if {[dict exists $remap_access_path $dir]} {
|
|
428
|
+
lappend tokens_auto_path [dict get $remap_access_path $dir]
|
|
429
|
+
}
|
|
430
|
+
}
|
|
431
|
+
::interp eval $child [list set auto_path $tokens_auto_path]
|
|
432
|
+
|
|
433
|
+
# Add the tcl::tm directories to the access path.
|
|
434
|
+
set morepaths [::tcl::tm::list]
|
|
435
|
+
set firstpass 1
|
|
436
|
+
while {[llength $morepaths]} {
|
|
437
|
+
set addpaths $morepaths
|
|
438
|
+
set morepaths {}
|
|
439
|
+
|
|
440
|
+
foreach dir $addpaths {
|
|
441
|
+
# Prevent the addition of dirs on the tm list to the
|
|
442
|
+
# result if they are already known.
|
|
443
|
+
if {[dict exists $remap_access_path $dir]} {
|
|
444
|
+
if {$firstpass} {
|
|
445
|
+
# $dir is in [::tcl::tm::list] and belongs in the child_tm_path.
|
|
446
|
+
# Later passes handle subdirectories, which belong in the
|
|
447
|
+
# access path but not in the module path.
|
|
448
|
+
lappend child_tm_path [dict get $remap_access_path $dir]
|
|
449
|
+
}
|
|
450
|
+
continue
|
|
451
|
+
}
|
|
452
|
+
|
|
453
|
+
set token [PathToken $i]
|
|
454
|
+
lappend access_path $dir
|
|
455
|
+
lappend child_access_path $token
|
|
456
|
+
lappend map_access_path $token $dir
|
|
457
|
+
lappend remap_access_path $dir $token
|
|
458
|
+
lappend norm_access_path [file normalize $dir]
|
|
459
|
+
if {$firstpass} {
|
|
460
|
+
# $dir is in [::tcl::tm::list] and belongs in the child_tm_path.
|
|
461
|
+
# Later passes handle subdirectories, which belong in the
|
|
462
|
+
# access path but not in the module path.
|
|
463
|
+
lappend child_tm_path $token
|
|
464
|
+
}
|
|
465
|
+
incr i
|
|
466
|
+
|
|
467
|
+
# [Bug 2854929]
|
|
468
|
+
# Recursively find deeper paths which may contain
|
|
469
|
+
# modules. Required to handle modules with names like
|
|
470
|
+
# 'platform::shell', which translate into
|
|
471
|
+
# 'platform/shell-X.tm', i.e arbitrarily deep
|
|
472
|
+
# subdirectories.
|
|
473
|
+
lappend morepaths {*}[glob -nocomplain -directory $dir -type d *]
|
|
474
|
+
}
|
|
475
|
+
set firstpass 0
|
|
476
|
+
}
|
|
477
|
+
|
|
478
|
+
set state(access_path) $access_path
|
|
479
|
+
set state(access_path,map) $map_access_path
|
|
480
|
+
set state(access_path,remap) $remap_access_path
|
|
481
|
+
set state(access_path,norm) $norm_access_path
|
|
482
|
+
set state(access_path,child) $child_access_path
|
|
483
|
+
set state(tm_path_child) $child_tm_path
|
|
484
|
+
set state(staticsok) $staticsok
|
|
485
|
+
set state(nestedok) $nestedok
|
|
486
|
+
set state(cleanupHook) $deletehook
|
|
487
|
+
|
|
488
|
+
if {!$AutoPathSync} {
|
|
489
|
+
set state(auto_path) $raw_auto_path
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
SyncAccessPath $child
|
|
493
|
+
return
|
|
494
|
+
}
|
|
495
|
+
|
|
496
|
+
|
|
497
|
+
#
|
|
498
|
+
# DetokPath:
|
|
499
|
+
# Convert tokens to directories where possible.
|
|
500
|
+
# Leave undefined tokens unconverted. They are
|
|
501
|
+
# nonsense in both the child and the parent.
|
|
502
|
+
#
|
|
503
|
+
proc ::safe::DetokPath {child tokenPath} {
|
|
504
|
+
namespace upvar ::safe [VarName $child] state
|
|
505
|
+
|
|
506
|
+
set childPath {}
|
|
507
|
+
foreach token $tokenPath {
|
|
508
|
+
if {[dict exists $state(access_path,map) $token]} {
|
|
509
|
+
lappend childPath [dict get $state(access_path,map) $token]
|
|
510
|
+
} else {
|
|
511
|
+
lappend childPath $token
|
|
512
|
+
}
|
|
513
|
+
}
|
|
514
|
+
return $childPath
|
|
515
|
+
}
|
|
516
|
+
|
|
517
|
+
#
|
|
518
|
+
#
|
|
519
|
+
# interpFindInAccessPath:
|
|
520
|
+
# Search for a real directory and returns its virtual Id (including the
|
|
521
|
+
# "$")
|
|
522
|
+
#
|
|
523
|
+
# When debugging, use TranslatePath for the inverse operation.
|
|
524
|
+
proc ::safe::interpFindInAccessPath {child path} {
|
|
525
|
+
CheckInterp $child
|
|
526
|
+
namespace upvar ::safe [VarName $child] state
|
|
527
|
+
|
|
528
|
+
if {![dict exists $state(access_path,remap) $path]} {
|
|
529
|
+
return -code error "$path not found in access path"
|
|
530
|
+
}
|
|
531
|
+
|
|
532
|
+
return [dict get $state(access_path,remap) $path]
|
|
533
|
+
}
|
|
534
|
+
|
|
535
|
+
|
|
536
|
+
#
|
|
537
|
+
# addToAccessPath:
|
|
538
|
+
# add (if needed) a real directory to access path and return its
|
|
539
|
+
# virtual token (including the "$").
|
|
540
|
+
proc ::safe::interpAddToAccessPath {child path} {
|
|
541
|
+
# first check if the directory is already in there
|
|
542
|
+
# (inlined interpFindInAccessPath).
|
|
543
|
+
CheckInterp $child
|
|
544
|
+
namespace upvar ::safe [VarName $child] state
|
|
545
|
+
|
|
546
|
+
if {[dict exists $state(access_path,remap) $path]} {
|
|
547
|
+
return [dict get $state(access_path,remap) $path]
|
|
548
|
+
}
|
|
549
|
+
|
|
550
|
+
# new one, add it:
|
|
551
|
+
set token [PathToken [llength $state(access_path)]]
|
|
552
|
+
|
|
553
|
+
lappend state(access_path) $path
|
|
554
|
+
lappend state(access_path,child) $token
|
|
555
|
+
lappend state(access_path,map) $token $path
|
|
556
|
+
lappend state(access_path,remap) $path $token
|
|
557
|
+
lappend state(access_path,norm) [file normalize $path]
|
|
558
|
+
|
|
559
|
+
SyncAccessPath $child
|
|
560
|
+
return $token
|
|
561
|
+
}
|
|
562
|
+
|
|
563
|
+
# This procedure applies the initializations to an already existing
|
|
564
|
+
# interpreter. It is useful when you want to install the safe base aliases
|
|
565
|
+
# into a preexisting safe interpreter.
|
|
566
|
+
proc ::safe::InterpInit {
|
|
567
|
+
child
|
|
568
|
+
access_path
|
|
569
|
+
staticsok
|
|
570
|
+
nestedok
|
|
571
|
+
deletehook
|
|
572
|
+
autoPath
|
|
573
|
+
withAutoPath
|
|
574
|
+
} {
|
|
575
|
+
# Configure will generate an access_path when access_path is empty.
|
|
576
|
+
InterpSetConfig $child $access_path $staticsok $nestedok $deletehook $autoPath $withAutoPath
|
|
577
|
+
|
|
578
|
+
# NB we need to add [namespace current], aliases are always absolute
|
|
579
|
+
# paths.
|
|
580
|
+
|
|
581
|
+
# These aliases let the child load files to define new commands
|
|
582
|
+
# This alias lets the child use the encoding names, convertfrom,
|
|
583
|
+
# convertto, and system, but not "encoding system <name>" to set the
|
|
584
|
+
# system encoding.
|
|
585
|
+
# Handling Tcl Modules, we need a restricted form of Glob.
|
|
586
|
+
# This alias interposes on the 'exit' command and cleanly terminates
|
|
587
|
+
# the child.
|
|
588
|
+
|
|
589
|
+
foreach {command alias} {
|
|
590
|
+
source AliasSource
|
|
591
|
+
load AliasLoad
|
|
592
|
+
exit interpDelete
|
|
593
|
+
glob AliasGlob
|
|
594
|
+
} {
|
|
595
|
+
::interp alias $child $command {} [namespace current]::$alias $child
|
|
596
|
+
}
|
|
597
|
+
|
|
598
|
+
# UGLY POINT! These commands are safe (they're ensembles with unsafe
|
|
599
|
+
# subcommands), but is assumed to not be by existing policies so it is
|
|
600
|
+
# hidden by default. Hack it...
|
|
601
|
+
foreach command {encoding file} {
|
|
602
|
+
::interp alias $child $command {} interp invokehidden $child $command
|
|
603
|
+
}
|
|
604
|
+
|
|
605
|
+
# This alias lets the child have access to a subset of the 'file'
|
|
606
|
+
# command functionality.
|
|
607
|
+
|
|
608
|
+
foreach subcommand {dirname extension rootname tail} {
|
|
609
|
+
::interp alias $child ::tcl::file::$subcommand {} \
|
|
610
|
+
::safe::AliasFileSubcommand $child $subcommand
|
|
611
|
+
}
|
|
612
|
+
|
|
613
|
+
# Subcommand of 'encoding' that has special handling; [encoding system] is
|
|
614
|
+
# OK provided it has no other arguments passed to it.
|
|
615
|
+
::interp alias $child ::tcl::encoding::system {} \
|
|
616
|
+
::safe::AliasEncodingSystem $child
|
|
617
|
+
|
|
618
|
+
# Subcommands of info
|
|
619
|
+
::interp alias $child ::tcl::info::nameofexecutable {} \
|
|
620
|
+
::safe::AliasExeName $child
|
|
621
|
+
|
|
622
|
+
# Source init.tcl and tm.tcl into the child, to get auto_load and
|
|
623
|
+
# other procedures defined:
|
|
624
|
+
|
|
625
|
+
if {[catch {::interp eval $child {
|
|
626
|
+
source [file join $tcl_library init.tcl]
|
|
627
|
+
}} msg opt]} {
|
|
628
|
+
Log $child "can't source init.tcl ($msg)"
|
|
629
|
+
return -options $opt "can't source init.tcl into child $child ($msg)"
|
|
630
|
+
}
|
|
631
|
+
|
|
632
|
+
if {[catch {::interp eval $child {
|
|
633
|
+
source [file join $tcl_library tm.tcl]
|
|
634
|
+
}} msg opt]} {
|
|
635
|
+
Log $child "can't source tm.tcl ($msg)"
|
|
636
|
+
return -options $opt "can't source tm.tcl into child $child ($msg)"
|
|
637
|
+
}
|
|
638
|
+
|
|
639
|
+
# Sync the paths used to search for Tcl modules. This can be done only
|
|
640
|
+
# now, after tm.tcl was loaded.
|
|
641
|
+
namespace upvar ::safe [VarName $child] state
|
|
642
|
+
if {[llength $state(tm_path_child)] > 0} {
|
|
643
|
+
::interp eval $child [list \
|
|
644
|
+
::tcl::tm::add {*}[lreverse $state(tm_path_child)]]
|
|
645
|
+
}
|
|
646
|
+
return $child
|
|
647
|
+
}
|
|
648
|
+
|
|
649
|
+
# Add (only if needed, avoid duplicates) 1 level of sub directories to an
|
|
650
|
+
# existing path list. Also removes non directories from the returned
|
|
651
|
+
# list.
|
|
652
|
+
proc ::safe::AddSubDirs {pathList} {
|
|
653
|
+
set res {}
|
|
654
|
+
foreach dir $pathList {
|
|
655
|
+
if {[file isdirectory $dir]} {
|
|
656
|
+
# check that we don't have it yet as a children of a previous
|
|
657
|
+
# dir
|
|
658
|
+
if {$dir ni $res} {
|
|
659
|
+
lappend res $dir
|
|
660
|
+
}
|
|
661
|
+
foreach sub [glob -directory $dir -nocomplain *] {
|
|
662
|
+
if {[file isdirectory $sub] && ($sub ni $res)} {
|
|
663
|
+
# new sub dir, add it !
|
|
664
|
+
lappend res $sub
|
|
665
|
+
}
|
|
666
|
+
}
|
|
667
|
+
}
|
|
668
|
+
}
|
|
669
|
+
return $res
|
|
670
|
+
}
|
|
671
|
+
|
|
672
|
+
# This procedure deletes a safe interpreter managed by Safe Tcl and cleans up
|
|
673
|
+
# associated state.
|
|
674
|
+
# - The command will also delete non-Safe-Base interpreters.
|
|
675
|
+
# - This is regrettable, but to avoid breaking existing code this should be
|
|
676
|
+
# amended at the next major revision by uncommenting "CheckInterp".
|
|
677
|
+
|
|
678
|
+
proc ::safe::interpDelete {child} {
|
|
679
|
+
Log $child "About to delete" NOTICE
|
|
680
|
+
|
|
681
|
+
# CheckInterp $child
|
|
682
|
+
namespace upvar ::safe [VarName $child] state
|
|
683
|
+
|
|
684
|
+
# When an interpreter is deleted with [interp delete], any sub-interpreters
|
|
685
|
+
# are deleted automatically, but this leaves behind their data in the Safe
|
|
686
|
+
# Base. To clean up properly, we call safe::interpDelete recursively on each
|
|
687
|
+
# Safe Base sub-interpreter, so each one is deleted cleanly and not by
|
|
688
|
+
# the automatic mechanism built into [interp delete].
|
|
689
|
+
foreach sub [interp children $child] {
|
|
690
|
+
if {[info exists ::safe::[VarName [list $child $sub]]]} {
|
|
691
|
+
::safe::interpDelete [list $child $sub]
|
|
692
|
+
}
|
|
693
|
+
}
|
|
694
|
+
|
|
695
|
+
# If the child has a cleanup hook registered, call it. Check the
|
|
696
|
+
# existence because we might be called to delete an interp which has
|
|
697
|
+
# not been registered with us at all
|
|
698
|
+
|
|
699
|
+
if {[info exists state(cleanupHook)]} {
|
|
700
|
+
set hook $state(cleanupHook)
|
|
701
|
+
if {[llength $hook]} {
|
|
702
|
+
# remove the hook now, otherwise if the hook calls us somehow,
|
|
703
|
+
# we'll loop
|
|
704
|
+
unset state(cleanupHook)
|
|
705
|
+
try {
|
|
706
|
+
{*}$hook $child
|
|
707
|
+
} on error err {
|
|
708
|
+
Log $child "Delete hook error ($err)"
|
|
709
|
+
}
|
|
710
|
+
}
|
|
711
|
+
}
|
|
712
|
+
|
|
713
|
+
# Discard the global array of state associated with the child, and
|
|
714
|
+
# delete the interpreter.
|
|
715
|
+
|
|
716
|
+
if {[info exists state]} {
|
|
717
|
+
unset state
|
|
718
|
+
}
|
|
719
|
+
|
|
720
|
+
# if we have been called twice, the interp might have been deleted
|
|
721
|
+
# already
|
|
722
|
+
if {[::interp exists $child]} {
|
|
723
|
+
::interp delete $child
|
|
724
|
+
Log $child "Deleted" NOTICE
|
|
725
|
+
}
|
|
726
|
+
|
|
727
|
+
return
|
|
728
|
+
}
|
|
729
|
+
|
|
730
|
+
# Set (or get) the logging mechanism
|
|
731
|
+
|
|
732
|
+
proc ::safe::setLogCmd {args} {
|
|
733
|
+
variable Log
|
|
734
|
+
set la [llength $args]
|
|
735
|
+
if {$la == 0} {
|
|
736
|
+
return $Log
|
|
737
|
+
} elseif {$la == 1} {
|
|
738
|
+
set Log [lindex $args 0]
|
|
739
|
+
} else {
|
|
740
|
+
set Log $args
|
|
741
|
+
}
|
|
742
|
+
|
|
743
|
+
if {$Log eq ""} {
|
|
744
|
+
# Disable logging completely. Calls to it will be compiled out
|
|
745
|
+
# of all users.
|
|
746
|
+
proc ::safe::Log {args} {}
|
|
747
|
+
} else {
|
|
748
|
+
# Activate logging, define proper command.
|
|
749
|
+
|
|
750
|
+
proc ::safe::Log {child msg {type ERROR}} {
|
|
751
|
+
variable Log
|
|
752
|
+
{*}$Log "$type for child $child : $msg"
|
|
753
|
+
return
|
|
754
|
+
}
|
|
755
|
+
}
|
|
756
|
+
}
|
|
757
|
+
|
|
758
|
+
# ------------------- END OF PUBLIC METHODS ------------
|
|
759
|
+
|
|
760
|
+
#
|
|
761
|
+
# Sets the child auto_path to its recorded access path. Also sets
|
|
762
|
+
# tcl_library to the first token of the access path.
|
|
763
|
+
#
|
|
764
|
+
proc ::safe::SyncAccessPath {child} {
|
|
765
|
+
variable AutoPathSync
|
|
766
|
+
namespace upvar ::safe [VarName $child] state
|
|
767
|
+
|
|
768
|
+
set child_access_path $state(access_path,child)
|
|
769
|
+
if {$AutoPathSync} {
|
|
770
|
+
::interp eval $child [list set auto_path $child_access_path]
|
|
771
|
+
|
|
772
|
+
Log $child "auto_path in $child has been set to $child_access_path"\
|
|
773
|
+
NOTICE
|
|
774
|
+
}
|
|
775
|
+
|
|
776
|
+
# This code assumes that info library is the first element in the
|
|
777
|
+
# list of access path's. See -> InterpSetConfig for the code which
|
|
778
|
+
# ensures this condition.
|
|
779
|
+
|
|
780
|
+
::interp eval $child [list \
|
|
781
|
+
set tcl_library [lindex $child_access_path 0]]
|
|
782
|
+
return
|
|
783
|
+
}
|
|
784
|
+
|
|
785
|
+
# Returns the virtual token for directory number N.
|
|
786
|
+
proc ::safe::PathToken {n} {
|
|
787
|
+
# We need to have a ":" in the token string so [file join] on the
|
|
788
|
+
# mac won't turn it into a relative path.
|
|
789
|
+
return "\$p(:$n:)" ;# Form tested by case 7.2
|
|
790
|
+
}
|
|
791
|
+
|
|
792
|
+
#
|
|
793
|
+
# translate virtual path into real path
|
|
794
|
+
#
|
|
795
|
+
proc ::safe::TranslatePath {child path} {
|
|
796
|
+
namespace upvar ::safe [VarName $child] state
|
|
797
|
+
|
|
798
|
+
# somehow strip the namespaces 'functionality' out (the danger is that
|
|
799
|
+
# we would strip valid macintosh "../" queries... :
|
|
800
|
+
if {[string match "*::*" $path] || [string match "*..*" $path]} {
|
|
801
|
+
return -code error "invalid characters in path $path"
|
|
802
|
+
}
|
|
803
|
+
|
|
804
|
+
# Use a cached map instead of computed local vars and subst.
|
|
805
|
+
|
|
806
|
+
return [string map $state(access_path,map) $path]
|
|
807
|
+
}
|
|
808
|
+
|
|
809
|
+
# file name control (limit access to files/resources that should be a
|
|
810
|
+
# valid tcl source file)
|
|
811
|
+
proc ::safe::CheckFileName {child file} {
|
|
812
|
+
# This used to limit what can be sourced to ".tcl" and forbid files
|
|
813
|
+
# with more than 1 dot and longer than 14 chars, but I changed that
|
|
814
|
+
# for 8.4 as a safe interp has enough internal protection already to
|
|
815
|
+
# allow sourcing anything. - hobbs
|
|
816
|
+
|
|
817
|
+
if {![file exists $file]} {
|
|
818
|
+
# don't tell the file path
|
|
819
|
+
return -code error "no such file or directory"
|
|
820
|
+
}
|
|
821
|
+
|
|
822
|
+
if {![file readable $file]} {
|
|
823
|
+
# don't tell the file path
|
|
824
|
+
return -code error "not readable"
|
|
825
|
+
}
|
|
826
|
+
}
|
|
827
|
+
|
|
828
|
+
# AliasFileSubcommand handles selected subcommands of [file] in safe
|
|
829
|
+
# interpreters that are *almost* safe. In particular, it just acts to
|
|
830
|
+
# prevent discovery of what home directories exist.
|
|
831
|
+
|
|
832
|
+
proc ::safe::AliasFileSubcommand {child subcommand name} {
|
|
833
|
+
tailcall ::interp invokehidden $child tcl:file:$subcommand $name
|
|
834
|
+
}
|
|
835
|
+
|
|
836
|
+
# AliasGlob is the target of the "glob" alias in safe interpreters.
|
|
837
|
+
|
|
838
|
+
proc ::safe::AliasGlob {child args} {
|
|
839
|
+
variable AutoPathSync
|
|
840
|
+
Log $child "GLOB ! $args" NOTICE
|
|
841
|
+
set cmd {}
|
|
842
|
+
set at 0
|
|
843
|
+
array set got {
|
|
844
|
+
-directory 0
|
|
845
|
+
-nocomplain 0
|
|
846
|
+
-join 0
|
|
847
|
+
-tails 0
|
|
848
|
+
-- 0
|
|
849
|
+
}
|
|
850
|
+
|
|
851
|
+
if {$::tcl_platform(platform) eq "windows"} {
|
|
852
|
+
set dirPartRE {^(.*)[\\/]([^\\/]*)$}
|
|
853
|
+
} else {
|
|
854
|
+
set dirPartRE {^(.*)/([^/]*)$}
|
|
855
|
+
}
|
|
856
|
+
|
|
857
|
+
set dir {}
|
|
858
|
+
set virtualdir {}
|
|
859
|
+
|
|
860
|
+
while {$at < [llength $args]} {
|
|
861
|
+
switch -glob -- [set opt [lindex $args $at]] {
|
|
862
|
+
-nocomplain - -- - -tails {
|
|
863
|
+
lappend cmd $opt
|
|
864
|
+
set got($opt) 1
|
|
865
|
+
incr at
|
|
866
|
+
}
|
|
867
|
+
-join {
|
|
868
|
+
set got($opt) 1
|
|
869
|
+
incr at
|
|
870
|
+
}
|
|
871
|
+
-types - -type {
|
|
872
|
+
lappend cmd -types [lindex $args [incr at]]
|
|
873
|
+
incr at
|
|
874
|
+
}
|
|
875
|
+
-directory {
|
|
876
|
+
if {$got($opt)} {
|
|
877
|
+
return -code error \
|
|
878
|
+
{"-directory" cannot be used with "-path"}
|
|
879
|
+
}
|
|
880
|
+
set got($opt) 1
|
|
881
|
+
set virtualdir [lindex $args [incr at]]
|
|
882
|
+
incr at
|
|
883
|
+
}
|
|
884
|
+
-* {
|
|
885
|
+
Log $child "Safe base rejecting glob option '$opt'"
|
|
886
|
+
return -code error "Safe base rejecting glob option '$opt'"
|
|
887
|
+
# unsafe/unnecessary options rejected: -path
|
|
888
|
+
}
|
|
889
|
+
default {
|
|
890
|
+
break
|
|
891
|
+
}
|
|
892
|
+
}
|
|
893
|
+
if {$got(--)} break
|
|
894
|
+
}
|
|
895
|
+
|
|
896
|
+
# Get the real path from the virtual one and check that the path is in the
|
|
897
|
+
# access path of that child. Done after basic argument processing so that
|
|
898
|
+
# we know if -nocomplain is set.
|
|
899
|
+
if {$got(-directory)} {
|
|
900
|
+
try {
|
|
901
|
+
set dir [TranslatePath $child $virtualdir]
|
|
902
|
+
DirInAccessPath $child $dir
|
|
903
|
+
} on error msg {
|
|
904
|
+
Log $child $msg
|
|
905
|
+
if {$got(-nocomplain)} return
|
|
906
|
+
return -code error "permission denied"
|
|
907
|
+
}
|
|
908
|
+
if {$got(--)} {
|
|
909
|
+
set cmd [linsert $cmd end-1 -directory $dir]
|
|
910
|
+
} else {
|
|
911
|
+
lappend cmd -directory $dir
|
|
912
|
+
}
|
|
913
|
+
} else {
|
|
914
|
+
# The code after this "if ... else" block would conspire to return with
|
|
915
|
+
# no results in this case, if it were allowed to proceed. Instead,
|
|
916
|
+
# return now and reduce the number of cases to be considered later.
|
|
917
|
+
Log $child {option -directory must be supplied}
|
|
918
|
+
if {$got(-nocomplain)} return
|
|
919
|
+
return -code error "permission denied"
|
|
920
|
+
}
|
|
921
|
+
|
|
922
|
+
# Apply the -join semantics ourselves (hence -join not copied to $cmd)
|
|
923
|
+
if {$got(-join)} {
|
|
924
|
+
set args [lreplace $args $at end [join [lrange $args $at end] "/"]]
|
|
925
|
+
}
|
|
926
|
+
|
|
927
|
+
# Process the pattern arguments. If we've done a join there is only one
|
|
928
|
+
# pattern argument.
|
|
929
|
+
|
|
930
|
+
set firstPattern [llength $cmd]
|
|
931
|
+
foreach opt [lrange $args $at end] {
|
|
932
|
+
if {![regexp $dirPartRE $opt -> thedir thefile]} {
|
|
933
|
+
set thedir .
|
|
934
|
+
# The *.tm search comes here.
|
|
935
|
+
}
|
|
936
|
+
# "Special" treatment for (joined) argument {*/pkgIndex.tcl}.
|
|
937
|
+
# Do the expansion of "*" here, and filter out any directories that are
|
|
938
|
+
# not in the access path. The outcome is to lappend to cmd a path of
|
|
939
|
+
# the form $virtualdir/subdir/pkgIndex.tcl for each subdirectory subdir,
|
|
940
|
+
# after removing any subdir that are not in the access path.
|
|
941
|
+
if {($thedir eq "*") && ($thefile eq "pkgIndex.tcl")} {
|
|
942
|
+
set mapped 0
|
|
943
|
+
foreach d [glob -directory [TranslatePath $child $virtualdir] \
|
|
944
|
+
-types d -tails *] {
|
|
945
|
+
catch {
|
|
946
|
+
DirInAccessPath $child \
|
|
947
|
+
[TranslatePath $child [file join $virtualdir $d]]
|
|
948
|
+
lappend cmd [file join $d $thefile]
|
|
949
|
+
set mapped 1
|
|
950
|
+
}
|
|
951
|
+
}
|
|
952
|
+
if {$mapped} continue
|
|
953
|
+
# Don't [continue] if */pkgIndex.tcl has no matches in the access
|
|
954
|
+
# path. The pattern will now receive the same treatment as a
|
|
955
|
+
# "non-special" pattern (and will fail because it includes a "*" in
|
|
956
|
+
# the directory name).
|
|
957
|
+
}
|
|
958
|
+
# Any directory pattern that is not an exact (i.e. non-glob) match to a
|
|
959
|
+
# directory in the access path will be rejected here.
|
|
960
|
+
# - Rejections include any directory pattern that has glob matching
|
|
961
|
+
# patterns "*", "?", backslashes, braces or square brackets, (UNLESS
|
|
962
|
+
# it corresponds to a genuine directory name AND that directory is in
|
|
963
|
+
# the access path).
|
|
964
|
+
# - The only "special matching characters" that remain in patterns for
|
|
965
|
+
# processing by glob are in the filename tail.
|
|
966
|
+
# - [file join $anything ~${foo}] is ~${foo}, which is not an exact
|
|
967
|
+
# match to any directory in the access path. Hence directory patterns
|
|
968
|
+
# that begin with "~" are rejected here. Tests safe-16.[5-8] check
|
|
969
|
+
# that "file join" remains as required and does not expand ~${foo}.
|
|
970
|
+
# - Bug [3529949] relates to unwanted expansion of ~${foo} and this is
|
|
971
|
+
# how the present code avoids the bug. All tests safe-16.* relate.
|
|
972
|
+
try {
|
|
973
|
+
DirInAccessPath $child [TranslatePath $child \
|
|
974
|
+
[file join $virtualdir $thedir]]
|
|
975
|
+
} on error msg {
|
|
976
|
+
Log $child $msg
|
|
977
|
+
if {$got(-nocomplain)} continue
|
|
978
|
+
return -code error "permission denied"
|
|
979
|
+
}
|
|
980
|
+
lappend cmd $opt
|
|
981
|
+
}
|
|
982
|
+
|
|
983
|
+
Log $child "GLOB = $cmd" NOTICE
|
|
984
|
+
|
|
985
|
+
if {$got(-nocomplain) && [llength $cmd] eq $firstPattern} {
|
|
986
|
+
return
|
|
987
|
+
}
|
|
988
|
+
try {
|
|
989
|
+
# >>>>>>>>>> HERE'S THE CALL TO SAFE INTERP GLOB <<<<<<<<<<
|
|
990
|
+
# - Pattern arguments added to cmd have NOT been translated from tokens.
|
|
991
|
+
# Only the virtualdir is translated (to dir).
|
|
992
|
+
# - In the pkgIndex.tcl case, there is no "*" in the pattern arguments,
|
|
993
|
+
# which are a list of names each with tail pkgIndex.tcl. The purpose
|
|
994
|
+
# of the call to glob is to remove the names for which the file does
|
|
995
|
+
# not exist.
|
|
996
|
+
set entries [::interp invokehidden $child glob {*}$cmd]
|
|
997
|
+
} on error msg {
|
|
998
|
+
# This is the only place that a call with -nocomplain and no invalid
|
|
999
|
+
# "dash-options" can return an error.
|
|
1000
|
+
Log $child $msg
|
|
1001
|
+
return -code error "script error"
|
|
1002
|
+
}
|
|
1003
|
+
|
|
1004
|
+
Log $child "GLOB < $entries" NOTICE
|
|
1005
|
+
|
|
1006
|
+
# Translate path back to what the child should see.
|
|
1007
|
+
set res {}
|
|
1008
|
+
set l [string length $dir]
|
|
1009
|
+
foreach p $entries {
|
|
1010
|
+
if {[string equal -length $l $dir $p]} {
|
|
1011
|
+
set p [string replace $p 0 [expr {$l-1}] $virtualdir]
|
|
1012
|
+
}
|
|
1013
|
+
lappend res $p
|
|
1014
|
+
}
|
|
1015
|
+
|
|
1016
|
+
Log $child "GLOB > $res" NOTICE
|
|
1017
|
+
return $res
|
|
1018
|
+
}
|
|
1019
|
+
|
|
1020
|
+
# AliasSource is the target of the "source" alias in safe interpreters.
|
|
1021
|
+
|
|
1022
|
+
proc ::safe::AliasSource {child args} {
|
|
1023
|
+
set argc [llength $args]
|
|
1024
|
+
# Extended for handling of Tcl Modules to allow not only "source
|
|
1025
|
+
# filename", but "source -encoding E filename" as well.
|
|
1026
|
+
if {[lindex $args 0] eq "-encoding"} {
|
|
1027
|
+
incr argc -2
|
|
1028
|
+
set encoding [lindex $args 1]
|
|
1029
|
+
set at 2
|
|
1030
|
+
if {$encoding eq "identity"} {
|
|
1031
|
+
Log $child "attempt to use the identity encoding"
|
|
1032
|
+
return -code error "permission denied"
|
|
1033
|
+
}
|
|
1034
|
+
} else {
|
|
1035
|
+
set at 0
|
|
1036
|
+
set encoding utf-8
|
|
1037
|
+
}
|
|
1038
|
+
if {$argc != 1} {
|
|
1039
|
+
set msg "wrong # args: should be \"source ?-encoding E? fileName\""
|
|
1040
|
+
Log $child "$msg ($args)"
|
|
1041
|
+
return -code error $msg
|
|
1042
|
+
}
|
|
1043
|
+
set file [lindex $args $at]
|
|
1044
|
+
|
|
1045
|
+
# get the real path from the virtual one.
|
|
1046
|
+
if {[catch {
|
|
1047
|
+
set realfile [TranslatePath $child $file]
|
|
1048
|
+
} msg]} {
|
|
1049
|
+
Log $child $msg
|
|
1050
|
+
return -code error "permission denied"
|
|
1051
|
+
}
|
|
1052
|
+
|
|
1053
|
+
# check that the path is in the access path of that child
|
|
1054
|
+
if {[catch {
|
|
1055
|
+
FileInAccessPath $child $realfile
|
|
1056
|
+
} msg]} {
|
|
1057
|
+
Log $child $msg
|
|
1058
|
+
return -code error "permission denied"
|
|
1059
|
+
}
|
|
1060
|
+
|
|
1061
|
+
# Check that the filename exists and is readable. If it is not, deliver
|
|
1062
|
+
# this -errorcode so that caller in tclPkgUnknown does not write a message
|
|
1063
|
+
# to tclLog. Has no effect on other callers of ::source, which are in
|
|
1064
|
+
# "package ifneeded" scripts.
|
|
1065
|
+
if {[catch {
|
|
1066
|
+
CheckFileName $child $realfile
|
|
1067
|
+
} msg]} {
|
|
1068
|
+
Log $child "$realfile:$msg"
|
|
1069
|
+
return -code error -errorcode {POSIX EACCES} $msg
|
|
1070
|
+
}
|
|
1071
|
+
|
|
1072
|
+
# Passed all the tests, lets source it. Note that we do this all manually
|
|
1073
|
+
# because we want to control [info script] in the child so information
|
|
1074
|
+
# doesn't leak so much. [Bug 2913625]
|
|
1075
|
+
set old [::interp eval $child {info script}]
|
|
1076
|
+
set replacementMsg "script error"
|
|
1077
|
+
set code [catch {
|
|
1078
|
+
set f [open $realfile]
|
|
1079
|
+
fconfigure $f -encoding $encoding -eofchar \x1A
|
|
1080
|
+
set contents [read $f]
|
|
1081
|
+
close $f
|
|
1082
|
+
::interp eval $child [list info script $file]
|
|
1083
|
+
} msg opt]
|
|
1084
|
+
if {$code == 0} {
|
|
1085
|
+
# See [Bug 1d26e580cf]
|
|
1086
|
+
if {[string index $contents 0] eq "\uFEFF"} {
|
|
1087
|
+
set contents [string range $contents 1 end]
|
|
1088
|
+
}
|
|
1089
|
+
set code [catch {::interp eval $child $contents} msg opt]
|
|
1090
|
+
set replacementMsg $msg
|
|
1091
|
+
}
|
|
1092
|
+
catch {interp eval $child [list info script $old]}
|
|
1093
|
+
# Note that all non-errors are fine result codes from [source], so we must
|
|
1094
|
+
# take a little care to do it properly. [Bug 2923613]
|
|
1095
|
+
if {$code == 1} {
|
|
1096
|
+
Log $child $msg
|
|
1097
|
+
return -code error $replacementMsg
|
|
1098
|
+
}
|
|
1099
|
+
return -code $code -options $opt $msg
|
|
1100
|
+
}
|
|
1101
|
+
|
|
1102
|
+
# AliasLoad is the target of the "load" alias in safe interpreters.
|
|
1103
|
+
|
|
1104
|
+
proc ::safe::AliasLoad {child file args} {
|
|
1105
|
+
set argc [llength $args]
|
|
1106
|
+
if {$argc > 2} {
|
|
1107
|
+
set msg "load error: too many arguments"
|
|
1108
|
+
Log $child "$msg ($argc) {$file $args}"
|
|
1109
|
+
return -code error $msg
|
|
1110
|
+
}
|
|
1111
|
+
|
|
1112
|
+
# prefix (can be empty if file is not).
|
|
1113
|
+
set prefix [lindex $args 0]
|
|
1114
|
+
|
|
1115
|
+
namespace upvar ::safe [VarName $child] state
|
|
1116
|
+
|
|
1117
|
+
# Determine where to load. load use a relative interp path and {}
|
|
1118
|
+
# means self, so we can directly and safely use passed arg.
|
|
1119
|
+
set target [lindex $args 1]
|
|
1120
|
+
if {$target ne ""} {
|
|
1121
|
+
# we will try to load into a sub sub interp; check that we want to
|
|
1122
|
+
# authorize that.
|
|
1123
|
+
if {!$state(nestedok)} {
|
|
1124
|
+
Log $child "loading to a sub interp (nestedok)\
|
|
1125
|
+
disabled (trying to load $prefix to $target)"
|
|
1126
|
+
return -code error "permission denied (nested load)"
|
|
1127
|
+
}
|
|
1128
|
+
}
|
|
1129
|
+
|
|
1130
|
+
# Determine what kind of load is requested
|
|
1131
|
+
if {$file eq ""} {
|
|
1132
|
+
# static loading
|
|
1133
|
+
if {$prefix eq ""} {
|
|
1134
|
+
set msg "load error: empty filename and no prefix"
|
|
1135
|
+
Log $child $msg
|
|
1136
|
+
return -code error $msg
|
|
1137
|
+
}
|
|
1138
|
+
if {!$state(staticsok)} {
|
|
1139
|
+
Log $child "static loading disabled\
|
|
1140
|
+
(trying to load $prefix to $target)"
|
|
1141
|
+
return -code error "permission denied (static library)"
|
|
1142
|
+
}
|
|
1143
|
+
} else {
|
|
1144
|
+
# file loading
|
|
1145
|
+
|
|
1146
|
+
# get the real path from the virtual one.
|
|
1147
|
+
try {
|
|
1148
|
+
set file [TranslatePath $child $file]
|
|
1149
|
+
} on error msg {
|
|
1150
|
+
Log $child $msg
|
|
1151
|
+
return -code error "permission denied"
|
|
1152
|
+
}
|
|
1153
|
+
|
|
1154
|
+
# check the translated path
|
|
1155
|
+
try {
|
|
1156
|
+
FileInAccessPath $child $file
|
|
1157
|
+
} on error msg {
|
|
1158
|
+
Log $child $msg
|
|
1159
|
+
return -code error "permission denied (path)"
|
|
1160
|
+
}
|
|
1161
|
+
}
|
|
1162
|
+
|
|
1163
|
+
try {
|
|
1164
|
+
return [::interp invokehidden $child load $file $prefix $target]
|
|
1165
|
+
} on error msg {
|
|
1166
|
+
# Some libraries return no error message.
|
|
1167
|
+
set msg0 "load of library for prefix $prefix failed"
|
|
1168
|
+
if {$msg eq {}} {
|
|
1169
|
+
set msg $msg0
|
|
1170
|
+
} else {
|
|
1171
|
+
set msg "$msg0: $msg"
|
|
1172
|
+
}
|
|
1173
|
+
Log $child $msg
|
|
1174
|
+
return -code error $msg
|
|
1175
|
+
}
|
|
1176
|
+
}
|
|
1177
|
+
|
|
1178
|
+
# FileInAccessPath raises an error if the file is not found in the list of
|
|
1179
|
+
# directories contained in the (parent side recorded) child's access path.
|
|
1180
|
+
|
|
1181
|
+
# the security here relies on "file dirname" answering the proper
|
|
1182
|
+
# result... needs checking ?
|
|
1183
|
+
proc ::safe::FileInAccessPath {child file} {
|
|
1184
|
+
namespace upvar ::safe [VarName $child] state
|
|
1185
|
+
set access_path $state(access_path)
|
|
1186
|
+
|
|
1187
|
+
if {[file isdirectory $file]} {
|
|
1188
|
+
return -code error "\"$file\": is a directory"
|
|
1189
|
+
}
|
|
1190
|
+
set parent [file dirname $file]
|
|
1191
|
+
|
|
1192
|
+
# Normalize paths for comparison since lsearch knows nothing of
|
|
1193
|
+
# potential pathname anomalies.
|
|
1194
|
+
set norm_parent [file normalize $parent]
|
|
1195
|
+
|
|
1196
|
+
namespace upvar ::safe [VarName $child] state
|
|
1197
|
+
if {$norm_parent ni $state(access_path,norm)} {
|
|
1198
|
+
return -code error "\"$file\": not in access_path"
|
|
1199
|
+
}
|
|
1200
|
+
}
|
|
1201
|
+
|
|
1202
|
+
proc ::safe::DirInAccessPath {child dir} {
|
|
1203
|
+
namespace upvar ::safe [VarName $child] state
|
|
1204
|
+
set access_path $state(access_path)
|
|
1205
|
+
|
|
1206
|
+
if {[file isfile $dir]} {
|
|
1207
|
+
return -code error "\"$dir\": is a file"
|
|
1208
|
+
}
|
|
1209
|
+
|
|
1210
|
+
# Normalize paths for comparison since lsearch knows nothing of
|
|
1211
|
+
# potential pathname anomalies.
|
|
1212
|
+
set norm_dir [file normalize $dir]
|
|
1213
|
+
|
|
1214
|
+
namespace upvar ::safe [VarName $child] state
|
|
1215
|
+
if {$norm_dir ni $state(access_path,norm)} {
|
|
1216
|
+
return -code error "\"$dir\": not in access_path"
|
|
1217
|
+
}
|
|
1218
|
+
}
|
|
1219
|
+
|
|
1220
|
+
# This procedure is used to report an attempt to use an unsafe member of an
|
|
1221
|
+
# ensemble command.
|
|
1222
|
+
|
|
1223
|
+
proc ::safe::BadSubcommand {child command subcommand args} {
|
|
1224
|
+
set msg "not allowed to invoke subcommand $subcommand of $command"
|
|
1225
|
+
Log $child $msg
|
|
1226
|
+
return -code error -errorcode {TCL SAFE SUBCOMMAND} $msg
|
|
1227
|
+
}
|
|
1228
|
+
|
|
1229
|
+
# AliasEncodingSystem is the target of the "encoding system" alias in safe
|
|
1230
|
+
# interpreters.
|
|
1231
|
+
proc ::safe::AliasEncodingSystem {child args} {
|
|
1232
|
+
try {
|
|
1233
|
+
# Must not pass extra arguments; safe interpreters may not set the
|
|
1234
|
+
# system encoding but they may read it.
|
|
1235
|
+
if {[llength $args]} {
|
|
1236
|
+
return -code error -errorcode {TCL WRONGARGS} \
|
|
1237
|
+
"wrong # args: should be \"encoding system\""
|
|
1238
|
+
}
|
|
1239
|
+
} on error {msg options} {
|
|
1240
|
+
Log $child $msg
|
|
1241
|
+
return -options $options $msg
|
|
1242
|
+
}
|
|
1243
|
+
tailcall ::interp invokehidden $child tcl:encoding:system
|
|
1244
|
+
}
|
|
1245
|
+
|
|
1246
|
+
# Various minor hiding of platform features. [Bug 2913625]
|
|
1247
|
+
|
|
1248
|
+
proc ::safe::AliasExeName {child} {
|
|
1249
|
+
return ""
|
|
1250
|
+
}
|
|
1251
|
+
|
|
1252
|
+
# ------------------------------------------------------------------------------
|
|
1253
|
+
# Using Interpreter Names with Namespace Qualifiers
|
|
1254
|
+
# ------------------------------------------------------------------------------
|
|
1255
|
+
# (1) We wish to preserve compatibility with existing code, in which Safe Base
|
|
1256
|
+
# interpreter names have no namespace qualifiers.
|
|
1257
|
+
# (2) safe::interpCreate and the rest of the Safe Base previously could not
|
|
1258
|
+
# accept namespace qualifiers in an interpreter name.
|
|
1259
|
+
# (3) The interp command will accept namespace qualifiers in an interpreter
|
|
1260
|
+
# name, but accepts distinct interpreters that will have the same command
|
|
1261
|
+
# name (e.g. foo, ::foo, and :::foo) (bug 66c2e8c974).
|
|
1262
|
+
# (4) To satisfy these constraints, Safe Base interpreter names will be fully
|
|
1263
|
+
# qualified namespace names with no excess colons and with the leading "::"
|
|
1264
|
+
# omitted.
|
|
1265
|
+
# (5) Trailing "::" implies a namespace tail {}, which interp reads as {{}}.
|
|
1266
|
+
# Reject such names.
|
|
1267
|
+
# (6) We could:
|
|
1268
|
+
# (a) EITHER reject usable but non-compliant names (e.g. excess colons) in
|
|
1269
|
+
# interpCreate, interpInit;
|
|
1270
|
+
# (b) OR accept such names and then translate to a compliant name in every
|
|
1271
|
+
# command.
|
|
1272
|
+
# The problem with (b) is that the user will expect to use the name with the
|
|
1273
|
+
# interp command and will find that it is not recognised.
|
|
1274
|
+
# E.g "interpCreate ::foo" creates interpreter "foo", and the user's name
|
|
1275
|
+
# "::foo" works with all the Safe Base commands, but "interp eval ::foo"
|
|
1276
|
+
# fails.
|
|
1277
|
+
# So we choose (a).
|
|
1278
|
+
# (7) The command
|
|
1279
|
+
# namespace upvar ::safe S$child state
|
|
1280
|
+
# becomes
|
|
1281
|
+
# namespace upvar ::safe [VarName $child] state
|
|
1282
|
+
# ------------------------------------------------------------------------------
|
|
1283
|
+
|
|
1284
|
+
proc ::safe::RejectExcessColons {child} {
|
|
1285
|
+
set stripped [regsub -all -- {:::*} $child ::]
|
|
1286
|
+
if {[string range $stripped end-1 end] eq {::}} {
|
|
1287
|
+
return -code error {interpreter name must not end in "::"}
|
|
1288
|
+
}
|
|
1289
|
+
if {$stripped ne $child} {
|
|
1290
|
+
set msg {interpreter name has excess colons in namespace separators}
|
|
1291
|
+
return -code error $msg
|
|
1292
|
+
}
|
|
1293
|
+
if {[string range $stripped 0 1] eq {::}} {
|
|
1294
|
+
return -code error {interpreter name must not begin "::"}
|
|
1295
|
+
}
|
|
1296
|
+
return
|
|
1297
|
+
}
|
|
1298
|
+
|
|
1299
|
+
proc ::safe::VarName {child} {
|
|
1300
|
+
# return S$child
|
|
1301
|
+
return S[string map {:: @N @ @A} $child]
|
|
1302
|
+
}
|
|
1303
|
+
|
|
1304
|
+
proc ::safe::Setup {} {
|
|
1305
|
+
####
|
|
1306
|
+
#
|
|
1307
|
+
# Setup the arguments parsing
|
|
1308
|
+
#
|
|
1309
|
+
####
|
|
1310
|
+
variable AutoPathSync
|
|
1311
|
+
|
|
1312
|
+
# Share the descriptions
|
|
1313
|
+
set OptList {
|
|
1314
|
+
{-accessPath -list {} "access path for the child"}
|
|
1315
|
+
{-noStatics "prevent loading of statically linked pkgs"}
|
|
1316
|
+
{-statics true "loading of statically linked pkgs"}
|
|
1317
|
+
{-nestedLoadOk "allow nested loading"}
|
|
1318
|
+
{-nested false "nested loading"}
|
|
1319
|
+
{-deleteHook -script {} "delete hook"}
|
|
1320
|
+
}
|
|
1321
|
+
if {!$AutoPathSync} {
|
|
1322
|
+
lappend OptList {-autoPath -list {} "::auto_path for the child"}
|
|
1323
|
+
}
|
|
1324
|
+
set temp [::tcl::OptKeyRegister $OptList]
|
|
1325
|
+
|
|
1326
|
+
# create case (child is optional)
|
|
1327
|
+
::tcl::OptKeyRegister {
|
|
1328
|
+
{?child? -name {} "name of the child (optional)"}
|
|
1329
|
+
} ::safe::interpCreate
|
|
1330
|
+
|
|
1331
|
+
# adding the flags sub programs to the command program (relying on Opt's
|
|
1332
|
+
# internal implementation details)
|
|
1333
|
+
lappend ::tcl::OptDesc(::safe::interpCreate) $::tcl::OptDesc($temp)
|
|
1334
|
+
|
|
1335
|
+
# init and configure (child is needed)
|
|
1336
|
+
::tcl::OptKeyRegister {
|
|
1337
|
+
{child -name {} "name of the child"}
|
|
1338
|
+
} ::safe::interpIC
|
|
1339
|
+
|
|
1340
|
+
# adding the flags sub programs to the command program (relying on Opt's
|
|
1341
|
+
# internal implementation details)
|
|
1342
|
+
lappend ::tcl::OptDesc(::safe::interpIC) $::tcl::OptDesc($temp)
|
|
1343
|
+
|
|
1344
|
+
# temp not needed anymore
|
|
1345
|
+
::tcl::OptKeyDelete $temp
|
|
1346
|
+
|
|
1347
|
+
####
|
|
1348
|
+
#
|
|
1349
|
+
# Default: No logging.
|
|
1350
|
+
#
|
|
1351
|
+
####
|
|
1352
|
+
|
|
1353
|
+
setLogCmd {}
|
|
1354
|
+
|
|
1355
|
+
# Log eventually.
|
|
1356
|
+
# To enable error logging, set Log to {puts stderr} for instance,
|
|
1357
|
+
# via setLogCmd.
|
|
1358
|
+
return
|
|
1359
|
+
}
|
|
1360
|
+
|
|
1361
|
+
# Accessor method for ::safe::AutoPathSync
|
|
1362
|
+
# Usage: ::safe::setSyncMode ?newValue?
|
|
1363
|
+
# Respond to changes by calling Setup again, preserving any
|
|
1364
|
+
# caller-defined logging. This allows complete equivalence with
|
|
1365
|
+
# prior Safe Base behavior if AutoPathSync is true.
|
|
1366
|
+
#
|
|
1367
|
+
# >>> WARNING <<<
|
|
1368
|
+
#
|
|
1369
|
+
# DO NOT CHANGE AutoPathSync EXCEPT BY THIS COMMAND - IT IS VITAL THAT WHENEVER
|
|
1370
|
+
# THE VALUE CHANGES, THE EXISTING PARSE TOKENS ARE DELETED AND Setup IS CALLED
|
|
1371
|
+
# AGAIN.
|
|
1372
|
+
# (The initialization of AutoPathSync at the end of this file is acceptable
|
|
1373
|
+
# because Setup has not yet been called.)
|
|
1374
|
+
|
|
1375
|
+
proc ::safe::setSyncMode {args} {
|
|
1376
|
+
variable AutoPathSync
|
|
1377
|
+
|
|
1378
|
+
if {[llength $args] == 0} {
|
|
1379
|
+
} elseif {[llength $args] == 1} {
|
|
1380
|
+
set newValue [lindex $args 0]
|
|
1381
|
+
if {![string is boolean -strict $newValue]} {
|
|
1382
|
+
return -code error "new value must be a valid boolean"
|
|
1383
|
+
}
|
|
1384
|
+
set args [expr {$newValue && $newValue}]
|
|
1385
|
+
if {([info vars ::safe::S*] ne {}) && ($args != $AutoPathSync)} {
|
|
1386
|
+
return -code error \
|
|
1387
|
+
"cannot set new value while Safe Base child interpreters exist"
|
|
1388
|
+
}
|
|
1389
|
+
if {($args != $AutoPathSync)} {
|
|
1390
|
+
set AutoPathSync {*}$args
|
|
1391
|
+
::tcl::OptKeyDelete ::safe::interpCreate
|
|
1392
|
+
::tcl::OptKeyDelete ::safe::interpIC
|
|
1393
|
+
set TmpLog [setLogCmd]
|
|
1394
|
+
Setup
|
|
1395
|
+
setLogCmd $TmpLog
|
|
1396
|
+
}
|
|
1397
|
+
} else {
|
|
1398
|
+
set msg {wrong # args: should be "safe::setSyncMode ?newValue?"}
|
|
1399
|
+
return -code error $msg
|
|
1400
|
+
}
|
|
1401
|
+
|
|
1402
|
+
return $AutoPathSync
|
|
1403
|
+
}
|
|
1404
|
+
|
|
1405
|
+
namespace eval ::safe {
|
|
1406
|
+
# internal variables (must not begin with "S")
|
|
1407
|
+
|
|
1408
|
+
# AutoPathSync
|
|
1409
|
+
#
|
|
1410
|
+
# Set AutoPathSync to 0 to give a child's ::auto_path the same meaning as
|
|
1411
|
+
# for an unsafe interpreter: the package command will search its directories
|
|
1412
|
+
# and first-level subdirectories for pkgIndex.tcl files; the auto-loader
|
|
1413
|
+
# will search its directories for tclIndex files. The access path and
|
|
1414
|
+
# module path will be maintained as separate values, and ::auto_path will
|
|
1415
|
+
# not be updated when the user calls ::safe::interpAddToAccessPath to add to
|
|
1416
|
+
# the access path. If the user specifies an access path when calling
|
|
1417
|
+
# interpCreate, interpInit or interpConfigure, it is the user's
|
|
1418
|
+
# responsibility to define the child's auto_path. If these commands are
|
|
1419
|
+
# called with no (or empty) access path, the child's auto_path will be set
|
|
1420
|
+
# to a tokenized form of the parent's auto_path, and these directories and
|
|
1421
|
+
# their first-level subdirectories will be added to the access path.
|
|
1422
|
+
#
|
|
1423
|
+
# Set to 1 for "traditional" behavior: a child's entire access path and
|
|
1424
|
+
# module path are copied to its ::auto_path, which is updated whenever
|
|
1425
|
+
# the user calls ::safe::interpAddToAccessPath to add to the access path.
|
|
1426
|
+
variable AutoPathSync 0
|
|
1427
|
+
|
|
1428
|
+
# Log command, set via 'setLogCmd'. Logging is disabled when empty.
|
|
1429
|
+
variable Log {}
|
|
1430
|
+
|
|
1431
|
+
# The package maintains a state array per child interp under its
|
|
1432
|
+
# control. The name of this array is S<interp-name>. This array is
|
|
1433
|
+
# brought into scope where needed, using 'namespace upvar'. The S
|
|
1434
|
+
# prefix is used to avoid that a child interp called "Log" smashes
|
|
1435
|
+
# the "Log" variable.
|
|
1436
|
+
#
|
|
1437
|
+
# The array's elements are:
|
|
1438
|
+
#
|
|
1439
|
+
# access_path : List of paths accessible to the child.
|
|
1440
|
+
# access_path,norm : Ditto, in normalized form.
|
|
1441
|
+
# access_path,child : Ditto, as the path tokens as seen by the child.
|
|
1442
|
+
# access_path,map : dict ( token -> path )
|
|
1443
|
+
# access_path,remap : dict ( path -> token )
|
|
1444
|
+
# auto_path : List of paths requested by the caller as child's ::auto_path.
|
|
1445
|
+
# tm_path_child : List of TM root directories, as tokens seen by the child.
|
|
1446
|
+
# staticsok : Value of option -statics
|
|
1447
|
+
# nestedok : Value of option -nested
|
|
1448
|
+
# cleanupHook : Value of option -deleteHook
|
|
1449
|
+
#
|
|
1450
|
+
# In principle, the child can change its value of ::auto_path -
|
|
1451
|
+
# - a package might add a path (that is already in the access path) for
|
|
1452
|
+
# access to tclIndex files;
|
|
1453
|
+
# - the script might remove some elements of the auto_path.
|
|
1454
|
+
# However, this is really the business of the parent, and the auto_path will
|
|
1455
|
+
# be reset whenever the token mapping changes (i.e. when option -accessPath is
|
|
1456
|
+
# used to change the access path).
|
|
1457
|
+
# -autoPath is now stored in the array and is no longer obtained from
|
|
1458
|
+
# the child.
|
|
1459
|
+
}
|
|
1460
|
+
|
|
1461
|
+
::safe::Setup
|