tpy-lang 0.3.0__py3-none-any.whl
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.
- tpy_lang-0.3.0.dist-info/METADATA +194 -0
- tpy_lang-0.3.0.dist-info/RECORD +345 -0
- tpy_lang-0.3.0.dist-info/WHEEL +4 -0
- tpy_lang-0.3.0.dist-info/entry_points.txt +3 -0
- tpyc/__init__.py +104 -0
- tpyc/__main__.py +6 -0
- tpyc/_buildinfo.py +1 -0
- tpyc/_data/docs/LANGUAGE_FEATURES.md +6349 -0
- tpyc/_data/docs/STDLIB_ROADMAP.md +1258 -0
- tpyc/_data/docs/TPY_FOR_AGENTS.md +587 -0
- tpyc/_data/lib/tpy/_bindings/__init__.py +6 -0
- tpyc/_data/lib/tpy/_bindings/pcre2.py +173 -0
- tpyc/_data/lib/tpy/_bindings/posix_socket.py +161 -0
- tpyc/_data/lib/tpy/_functools_macros.py +80 -0
- tpyc/_data/lib/tpy/_macro_helpers.py +161 -0
- tpyc/_data/lib/tpy/argparse.py +2062 -0
- tpyc/_data/lib/tpy/asyncio/__init__.py +744 -0
- tpyc/_data/lib/tpy/asyncio/_executor.py +515 -0
- tpyc/_data/lib/tpy/base64.py +410 -0
- tpyc/_data/lib/tpy/bisect.py +39 -0
- tpyc/_data/lib/tpy/builtins.py +38 -0
- tpyc/_data/lib/tpy/dataclasses.py +354 -0
- tpyc/_data/lib/tpy/enum.py +23 -0
- tpyc/_data/lib/tpy/functools.py +33 -0
- tpyc/_data/lib/tpy/hashlib.py +206 -0
- tpyc/_data/lib/tpy/heapq.py +118 -0
- tpyc/_data/lib/tpy/io.py +395 -0
- tpyc/_data/lib/tpy/json.py +221 -0
- tpyc/_data/lib/tpy/math.py +406 -0
- tpyc/_data/lib/tpy/random.py +597 -0
- tpyc/_data/lib/tpy/re.py +467 -0
- tpyc/_data/lib/tpy/socket.py +379 -0
- tpyc/_data/lib/tpy/struct.py +178 -0
- tpyc/_data/lib/tpy/sys.py +40 -0
- tpyc/_data/lib/tpy/time.py +39 -0
- tpyc/_data/lib/tpy/tplib/__init__.py +10 -0
- tpyc/_data/lib/tpy/tplib/array_list.py +197 -0
- tpyc/_data/lib/tpy/tplib/box.py +62 -0
- tpyc/_data/lib/tpy/tplib/fix_str.py +79 -0
- tpyc/_data/lib/tpy/tplib/json/__init__.py +3 -0
- tpyc/_data/lib/tpy/tplib/json/model.py +822 -0
- tpyc/_data/lib/tpy/tplib/json/parser.py +455 -0
- tpyc/_data/lib/tpy/tplib/json/writer.py +206 -0
- tpyc/_data/lib/tpy/tplib/rc.py +202 -0
- tpyc/_data/lib/tpy/tpy/__init__.py +83 -0
- tpyc/_data/lib/tpy/tpy/_bootstrap/__init__.py +10 -0
- tpyc/_data/lib/tpy/tpy/_bootstrap/_decorators.py +37 -0
- tpyc/_data/lib/tpy/tpy/_bootstrap/_extern.py +64 -0
- tpyc/_data/lib/tpy/tpy/_builtins/__init__.py +11 -0
- tpyc/_data/lib/tpy/tpy/_builtins/_bytes.py +378 -0
- tpyc/_data/lib/tpy/tpy/_builtins/_dict.py +151 -0
- tpyc/_data/lib/tpy/tpy/_builtins/_exceptions.py +125 -0
- tpyc/_data/lib/tpy/tpy/_builtins/_funcs.py +681 -0
- tpyc/_data/lib/tpy/tpy/_builtins/_io.py +97 -0
- tpyc/_data/lib/tpy/tpy/_builtins/_list.py +127 -0
- tpyc/_data/lib/tpy/tpy/_builtins/_range.py +52 -0
- tpyc/_data/lib/tpy/tpy/_builtins/_set.py +139 -0
- tpyc/_data/lib/tpy/tpy/_builtins/_super.py +11 -0
- tpyc/_data/lib/tpy/tpy/_builtins/_types.py +661 -0
- tpyc/_data/lib/tpy/tpy/_core/__init__.py +25 -0
- tpyc/_data/lib/tpy/tpy/_core/_bytes_view.py +129 -0
- tpyc/_data/lib/tpy/tpy/_core/_containers.py +180 -0
- tpyc/_data/lib/tpy/tpy/_core/_functions.py +40 -0
- tpyc/_data/lib/tpy/tpy/_core/_types.py +2061 -0
- tpyc/_data/lib/tpy/tpy/_typing/__init__.py +77 -0
- tpyc/_data/lib/tpy/tpy/_version.py +29 -0
- tpyc/_data/lib/tpy/tpy/bits.py +28 -0
- tpyc/_data/lib/tpy/tpy/coro/__init__.py +127 -0
- tpyc/_data/lib/tpy/tpy/extern.py +8 -0
- tpyc/_data/lib/tpy/tpy/mem.py +49 -0
- tpyc/_data/lib/tpy/tpy/unsafe.py +195 -0
- tpyc/_data/lib/tpy/tpy/version.py +21 -0
- tpyc/_data/lib/tpy/typing.py +13 -0
- tpyc/_data/runtime/cpp/include/tpy/any.hpp +461 -0
- tpyc/_data/runtime/cpp/include/tpy/as_ostream.hpp +117 -0
- tpyc/_data/runtime/cpp/include/tpy/async.hpp +76 -0
- tpyc/_data/runtime/cpp/include/tpy/bigint.hpp +1343 -0
- tpyc/_data/runtime/cpp/include/tpy/builtins.hpp +400 -0
- tpyc/_data/runtime/cpp/include/tpy/bytes_ops.hpp +469 -0
- tpyc/_data/runtime/cpp/include/tpy/container_ops.hpp +487 -0
- tpyc/_data/runtime/cpp/include/tpy/copy_iter.hpp +82 -0
- tpyc/_data/runtime/cpp/include/tpy/core.hpp +558 -0
- tpyc/_data/runtime/cpp/include/tpy/dict_ops.hpp +289 -0
- tpyc/_data/runtime/cpp/include/tpy/dunder.hpp +750 -0
- tpyc/_data/runtime/cpp/include/tpy/dynamic.hpp +70 -0
- tpyc/_data/runtime/cpp/include/tpy/enum.hpp +40 -0
- tpyc/_data/runtime/cpp/include/tpy/file.hpp +245 -0
- tpyc/_data/runtime/cpp/include/tpy/fixed_int.hpp +317 -0
- tpyc/_data/runtime/cpp/include/tpy/format.hpp +954 -0
- tpyc/_data/runtime/cpp/include/tpy/frame_slot.hpp +120 -0
- tpyc/_data/runtime/cpp/include/tpy/generator.hpp +47 -0
- tpyc/_data/runtime/cpp/include/tpy/iterable_ops.hpp +122 -0
- tpyc/_data/runtime/cpp/include/tpy/itertools.hpp +749 -0
- tpyc/_data/runtime/cpp/include/tpy/next_iter.hpp +82 -0
- tpyc/_data/runtime/cpp/include/tpy/ordered_map.hpp +518 -0
- tpyc/_data/runtime/cpp/include/tpy/ordered_set.hpp +337 -0
- tpyc/_data/runtime/cpp/include/tpy/own_iter.hpp +54 -0
- tpyc/_data/runtime/cpp/include/tpy/pascal_graph_sdl.hpp +192 -0
- tpyc/_data/runtime/cpp/include/tpy/printing.hpp +326 -0
- tpyc/_data/runtime/cpp/include/tpy/protocols.hpp +61 -0
- tpyc/_data/runtime/cpp/include/tpy/range.hpp +115 -0
- tpyc/_data/runtime/cpp/include/tpy/ranges.hpp +212 -0
- tpyc/_data/runtime/cpp/include/tpy/set_ops.hpp +265 -0
- tpyc/_data/runtime/cpp/include/tpy/slice.hpp +47 -0
- tpyc/_data/runtime/cpp/include/tpy/span_iter.hpp +42 -0
- tpyc/_data/runtime/cpp/include/tpy/stdlib/math.hpp +41 -0
- tpyc/_data/runtime/cpp/include/tpy/stdlib/pcre2_h.hpp +96 -0
- tpyc/_data/runtime/cpp/include/tpy/stdlib/random.hpp +25 -0
- tpyc/_data/runtime/cpp/include/tpy/stdlib/socket_h.hpp +145 -0
- tpyc/_data/runtime/cpp/include/tpy/stdlib/time.hpp +62 -0
- tpyc/_data/runtime/cpp/include/tpy/system.hpp +121 -0
- tpyc/_data/runtime/cpp/include/tpy/throwable.hpp +55 -0
- tpyc/_data/runtime/cpp/include/tpy/tpy.hpp +156 -0
- tpyc/_data/runtime/cpp/include/tpy/type_name.hpp +77 -0
- tpyc/_data/runtime/cpp/include/tpy/type_traits.hpp +257 -0
- tpyc/_data/runtime/cpp/include/tpy/uninit_array_storage.hpp +250 -0
- tpyc/_data/runtime/cpp/include/tpy/uninit_heap_storage.hpp +277 -0
- tpyc/_data/runtime/cpp/include/tpy/varargs.hpp +217 -0
- tpyc/_data/runtime/cpp/include/tpy/variant_ref.hpp +118 -0
- tpyc/_data/runtime/cpp/src/stdlib/socket_impl.cpp +104 -0
- tpyc/_data/runtime/cpp/third_party/README.md +58 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/AUTHORS +36 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/CMakeLists.txt +1233 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/COPYING +5 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/ChangeLog +3097 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/HACKING +853 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/INSTALL +368 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/LICENCE +94 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/NEWS +492 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/NON-AUTOTOOLS-BUILD +430 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/README +956 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/cmake/COPYING-CMAKE-SCRIPTS +22 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/cmake/FindEditline.cmake +16 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/cmake/FindPackageHandleStandardArgs.cmake +58 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/cmake/FindReadline.cmake +29 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/cmake/pcre2-config-version.cmake.in +15 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/cmake/pcre2-config.cmake.in +148 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/config-cmake.h.in +56 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/libpcre2-16.pc.in +13 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/libpcre2-32.pc.in +13 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/libpcre2-8.pc.in +13 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/libpcre2-posix.pc.in +13 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/pcre2-config.in +121 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/config.h +483 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/config.h.generic +483 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/config.h.in +460 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2.h +1010 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2.h.generic +1010 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2.h.in +1010 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_auto_possess.c +1371 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_chartables.c +196 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_chartables.c.dist +196 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_chkdint.c +96 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_compile.c +11001 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_config.c +252 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_context.c +510 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_convert.c +1189 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_dfa_match.c +4119 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_dftables.c +297 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_error.c +345 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_extuni.c +162 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_find_bracket.c +219 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_fuzzsupport.c +792 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_internal.h +2084 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_intmodedep.h +940 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_jit_compile.c +14972 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_jit_match.c +200 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_jit_misc.c +234 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_jit_neon_inc.h +354 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_jit_simd_inc.h +2355 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_jit_test.c +2528 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_maketables.c +165 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_match.c +7777 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_match_data.c +185 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_newline.c +243 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_ord2utf.c +120 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_pattern_info.c +432 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_printint.c +886 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_script_run.c +344 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_serialize.c +286 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_string_utils.c +237 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_study.c +1915 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_substitute.c +1009 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_substring.c +550 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_tables.c +234 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_ucd.c +5460 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_ucp.h +396 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_ucptables.c +1533 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_valid_utf.c +398 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_xclass.c +308 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2demo.c +497 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2grep.c +4606 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2posix.c +425 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2posix.h +187 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2posix_test.c +209 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2test.c +9708 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/sljit/allocator_src/sljitExecAllocatorApple.c +137 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/sljit/allocator_src/sljitExecAllocatorCore.c +327 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/sljit/allocator_src/sljitExecAllocatorFreeBSD.c +89 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/sljit/allocator_src/sljitExecAllocatorPosix.c +62 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/sljit/allocator_src/sljitExecAllocatorWindows.c +40 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/sljit/allocator_src/sljitProtExecAllocatorNetBSD.c +72 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/sljit/allocator_src/sljitProtExecAllocatorPosix.c +172 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/sljit/allocator_src/sljitWXExecAllocatorPosix.c +141 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/sljit/allocator_src/sljitWXExecAllocatorWindows.c +102 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/sljit/sljitConfig.h +142 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/sljit/sljitConfigCPU.h +188 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/sljit/sljitConfigInternal.h +907 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/sljit/sljitLir.c +3561 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/sljit/sljitLir.h +2466 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/sljit/sljitNativeARM_32.c +4636 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/sljit/sljitNativeARM_64.c +3491 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/sljit/sljitNativeARM_T2_32.c +4302 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/sljit/sljitNativeLOONGARCH_64.c +3765 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/sljit/sljitNativeMIPS_32.c +472 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/sljit/sljitNativeMIPS_64.c +387 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/sljit/sljitNativeMIPS_common.c +4259 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/sljit/sljitNativePPC_32.c +485 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/sljit/sljitNativePPC_64.c +719 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/sljit/sljitNativePPC_common.c +3161 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/sljit/sljitNativeRISCV_32.c +142 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/sljit/sljitNativeRISCV_64.c +222 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/sljit/sljitNativeRISCV_common.c +3121 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/sljit/sljitNativeS390X.c +4526 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/sljit/sljitNativeX86_32.c +1685 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/sljit/sljitNativeX86_64.c +1398 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/sljit/sljitNativeX86_common.c +5001 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/sljit/sljitSerialize.c +516 -0
- tpyc/_data/runtime/cpp/third_party/pcre2/src/sljit/sljitUtils.c +344 -0
- tpyc/_data/runtime/cpp/third_party/pcre2.sources.txt +54 -0
- tpyc/_data/runtime/cpp/third_party/pcre2.vendor.json +7 -0
- tpyc/build/__init__.py +7 -0
- tpyc/build/pcre2.py +122 -0
- tpyc/build/third_party.py +413 -0
- tpyc/cli.py +822 -0
- tpyc/codegen_cpp/__init__.py +18 -0
- tpyc/codegen_cpp/builtins.py +488 -0
- tpyc/codegen_cpp/context.py +2067 -0
- tpyc/codegen_cpp/expressions.py +5984 -0
- tpyc/codegen_cpp/functions.py +1901 -0
- tpyc/codegen_cpp/gen_async.py +3566 -0
- tpyc/codegen_cpp/gen_generators.py +888 -0
- tpyc/codegen_cpp/generator.py +2452 -0
- tpyc/codegen_cpp/match.py +2437 -0
- tpyc/codegen_cpp/param_const.py +184 -0
- tpyc/codegen_cpp/protocols.py +922 -0
- tpyc/codegen_cpp/records.py +1654 -0
- tpyc/codegen_cpp/resumable_cfg.py +1743 -0
- tpyc/codegen_cpp/statements.py +4993 -0
- tpyc/codegen_cpp/string_dispatch.py +76 -0
- tpyc/codegen_cpp/test_context.py +46 -0
- tpyc/codegen_cpp/test_param_const.py +113 -0
- tpyc/codegen_cpp/test_resumable_cfg.py +182 -0
- tpyc/codegen_cpp/type_resolution.py +53 -0
- tpyc/codegen_cpp/types.py +436 -0
- tpyc/codegen_cpp/variant_access.py +135 -0
- tpyc/coercions.py +749 -0
- tpyc/compilation_context.py +57 -0
- tpyc/compiler.py +3945 -0
- tpyc/cycle_detection.py +358 -0
- tpyc/diagnostics.py +135 -0
- tpyc/dump_types.py +353 -0
- tpyc/frontend_diagnostics.py +47 -0
- tpyc/frontend_ir/__init__.py +140 -0
- tpyc/frontend_ir/lower.py +1125 -0
- tpyc/frontend_ir/nodes.py +723 -0
- tpyc/frontend_ir/resolver_adapter.py +151 -0
- tpyc/frontend_plugin.py +209 -0
- tpyc/install_docs.py +81 -0
- tpyc/liveness.py +756 -0
- tpyc/macro_api.py +1939 -0
- tpyc/macro_loader.py +505 -0
- tpyc/module_names.py +64 -0
- tpyc/modules/__init__.py +31 -0
- tpyc/modules/defs.py +89 -0
- tpyc/modules/registry.py +36 -0
- tpyc/modules/resolver.py +192 -0
- tpyc/modules/type_resolution.py +629 -0
- tpyc/namespace.py +172 -0
- tpyc/parse/__init__.py +84 -0
- tpyc/parse/imports.py +490 -0
- tpyc/parse/nodes.py +1747 -0
- tpyc/parse/parser.py +4048 -0
- tpyc/parse/resolve_refs.py +466 -0
- tpyc/parse/type_resolver.py +1073 -0
- tpyc/prescan.py +254 -0
- tpyc/qnames.py +149 -0
- tpyc/repl.py +529 -0
- tpyc/repl_backends.py +848 -0
- tpyc/sema/__init__.py +21 -0
- tpyc/sema/analyzer.py +3748 -0
- tpyc/sema/bound_check.py +72 -0
- tpyc/sema/builder_trace.py +684 -0
- tpyc/sema/calls.py +5434 -0
- tpyc/sema/compatibility.py +2366 -0
- tpyc/sema/context.py +1291 -0
- tpyc/sema/expressions.py +3773 -0
- tpyc/sema/flow_facts.py +212 -0
- tpyc/sema/function_macros.py +58 -0
- tpyc/sema/init_tracker.py +165 -0
- tpyc/sema/list_literals.py +69 -0
- tpyc/sema/literal_utils.py +27 -0
- tpyc/sema/local_deduction.py +1109 -0
- tpyc/sema/macros.py +179 -0
- tpyc/sema/match.py +1439 -0
- tpyc/sema/method_expansion.py +347 -0
- tpyc/sema/methods.py +2204 -0
- tpyc/sema/mutation_propagation.py +258 -0
- tpyc/sema/narrowing.py +857 -0
- tpyc/sema/numeric_lattice.py +160 -0
- tpyc/sema/operators.py +402 -0
- tpyc/sema/overloads.py +841 -0
- tpyc/sema/protocols.py +1231 -0
- tpyc/sema/reach_analysis.py +202 -0
- tpyc/sema/registration.py +3159 -0
- tpyc/sema/scope_tracker.py +193 -0
- tpyc/sema/statements.py +4604 -0
- tpyc/sema/type_ops.py +1883 -0
- tpyc/sema/value_range.py +181 -0
- tpyc/symbol_binding.py +259 -0
- tpyc/test_c3_mro.py +208 -0
- tpyc/test_cli_argv.py +52 -0
- tpyc/test_compiler.py +559 -0
- tpyc/test_contains_type_param.py +101 -0
- tpyc/test_cycle_detection.py +221 -0
- tpyc/test_dump_types.py +225 -0
- tpyc/test_frontend_lower_macros.py +65 -0
- tpyc/test_install_docs.py +65 -0
- tpyc/test_local_cpp_form.py +135 -0
- tpyc/test_macro_api.py +50 -0
- tpyc/test_macro_loader.py +76 -0
- tpyc/test_method_expansion.py +254 -0
- tpyc/test_nominal_identity.py +182 -0
- tpyc/test_overloads.py +410 -0
- tpyc/test_parse.py +303 -0
- tpyc/test_parse_type_ref.py +506 -0
- tpyc/test_parse_version_info.py +58 -0
- tpyc/test_reach_analysis.py +72 -0
- tpyc/test_ref_type.py +216 -0
- tpyc/test_send_sync_substitution.py +276 -0
- tpyc/test_tuple_mutation_propagation.py +206 -0
- tpyc/test_type_def_registry.py +1755 -0
- tpyc/test_union_types.py +195 -0
- tpyc/type_def_registry.py +1019 -0
- tpyc/typesys.py +5195 -0
|
@@ -0,0 +1,194 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: tpy-lang
|
|
3
|
+
Version: 0.3.0
|
|
4
|
+
Summary: TurboPython compiler - translates restricted Python-syntax to C++ for ultra-low-latency applications
|
|
5
|
+
Project-URL: Homepage, https://tpy.dev
|
|
6
|
+
Classifier: Development Status :: 3 - Alpha
|
|
7
|
+
Classifier: Intended Audience :: Developers
|
|
8
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
9
|
+
Classifier: Topic :: Software Development :: Compilers
|
|
10
|
+
Requires-Python: >=3.12
|
|
11
|
+
Provides-Extra: bundled
|
|
12
|
+
Requires-Dist: ziglang>=0.13; extra == 'bundled'
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
|
|
15
|
+
# TurboPython (TPy)
|
|
16
|
+
|
|
17
|
+
A compiler that translates Python to C++.
|
|
18
|
+
|
|
19
|
+
**Goals:**
|
|
20
|
+
|
|
21
|
+
1. **Performance** — Low-latency compiled output with opt-in constraints for hot paths (e.g. `@noalloc`). If the goals below conflict, performance wins.
|
|
22
|
+
2. **Regular Python compatibility** — We aim to compile and run regular Python code whenever possible, with clear diagnostics when a feature is unsupported or when semantics differ from CPython.
|
|
23
|
+
3. **Constrained C++ interop** — Easy integration with existing C/C++ code, but only through explicitly supported interop shapes and rules (not arbitrary native types/signatures).
|
|
24
|
+
4. **Familiar syntax** — Keep the language readable for non-programmers and close to regular Python where possible.
|
|
25
|
+
5. **Semantic transparency** — Warn when TurboPython behavior differs from CPython so differences are explicit during development.
|
|
26
|
+
6. **Tooling-friendly** — Source files are valid Python, so existing IDEs, linters, type checkers, and LLMs work without special plugins.
|
|
27
|
+
7. **Thread safety** — Unlike CPython (GIL), TurboPython targets multi-threaded, high-performance environments. The compiler should be thread-safe by default where possible without sacrificing performance, and give the user explicit control where trade-offs exist.
|
|
28
|
+
|
|
29
|
+
## Example
|
|
30
|
+
|
|
31
|
+
Main differences from CPython:
|
|
32
|
+
|
|
33
|
+
- Type annotations required on functions (parameters + return) and class fields; local variables are inferred
|
|
34
|
+
- `Int32` for integer literals (overrideable), `Int32`/`Int64` for explicit fixed-width, `int` = `BigInt` for arbitrary precision
|
|
35
|
+
- Value types (`Int32`, `bool`, `str`, ...) are copied; reference types (classes, containers) are passed by reference to functions but stored inline in fields and containers. `Own[T]` transfers ownership (move) at function boundaries
|
|
36
|
+
- No GIL, no refcounting, no GC -- deterministic destruction via RAII
|
|
37
|
+
|
|
38
|
+
```python
|
|
39
|
+
from tpy import Int32
|
|
40
|
+
|
|
41
|
+
def fib(n: Int32) -> Int32:
|
|
42
|
+
if n <= 1:
|
|
43
|
+
return n
|
|
44
|
+
return fib(n - 1) + fib(n - 2)
|
|
45
|
+
|
|
46
|
+
for i in range(40):
|
|
47
|
+
print(fib(i))
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
```bash
|
|
51
|
+
$ tpy -O fib.py # compile to C++ and run (optimized)
|
|
52
|
+
$ tpy --dump-code fib.py # inspect generated C++
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
Reference types (classes, `list`, `dict`, ...) are passed by reference to functions, but stored
|
|
56
|
+
inline in class fields and containers. `Own[T]` marks ownership transfer -- the value is moved,
|
|
57
|
+
not referenced:
|
|
58
|
+
|
|
59
|
+
```python
|
|
60
|
+
from dataclasses import dataclass
|
|
61
|
+
from tpy import Own, Int32
|
|
62
|
+
|
|
63
|
+
@dataclass
|
|
64
|
+
class Event:
|
|
65
|
+
timestamp: Int32
|
|
66
|
+
code: Int32
|
|
67
|
+
|
|
68
|
+
def make_batch(n: Int32) -> Own[list[Event]]:
|
|
69
|
+
# list comprehension creates a new list; Own means it is moved out to the caller
|
|
70
|
+
return [Event(i, i * 2) for i in range(n)]
|
|
71
|
+
|
|
72
|
+
batch = make_batch(3) # batch owns the list (moved, not copied)
|
|
73
|
+
for e in batch:
|
|
74
|
+
print(e.timestamp, e.code)
|
|
75
|
+
```
|
|
76
|
+
|
|
77
|
+
Where TurboPython would silently copy what CPython shares by reference (e.g. storing a parameter into a field or container), the compiler warns and suggests an explicit `copy()` -- so dual-target code behaves identically under both runtimes.
|
|
78
|
+
|
|
79
|
+
Source files are valid Python -- your IDE, linter, and type checker work as-is.
|
|
80
|
+
|
|
81
|
+
## Installation
|
|
82
|
+
|
|
83
|
+
```bash
|
|
84
|
+
pip install tpy-lang
|
|
85
|
+
pip install "tpy-lang[bundled]" # also installs zig as a bundled C++ compiler
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
Or as an isolated tool with uv:
|
|
89
|
+
|
|
90
|
+
```bash
|
|
91
|
+
uv tool install tpy-lang
|
|
92
|
+
uv tool install "tpy-lang[bundled]"
|
|
93
|
+
```
|
|
94
|
+
|
|
95
|
+
Two commands are installed: `tpy` (runs programs, drops to a REPL with no args) and `tpyc` (compile-only; emits `.hpp`/`.cpp`).
|
|
96
|
+
|
|
97
|
+
### From source
|
|
98
|
+
|
|
99
|
+
```bash
|
|
100
|
+
uv sync # in a checkout of the source tree
|
|
101
|
+
uv run tpy examples/hello.py
|
|
102
|
+
```
|
|
103
|
+
|
|
104
|
+
## Quick Start
|
|
105
|
+
|
|
106
|
+
```bash
|
|
107
|
+
tpy # interactive REPL
|
|
108
|
+
tpy -c "print(1 + 2)" # run inline code
|
|
109
|
+
```
|
|
110
|
+
|
|
111
|
+
Create a `hello.py`:
|
|
112
|
+
|
|
113
|
+
```python
|
|
114
|
+
def main() -> None:
|
|
115
|
+
print("Hello from TurboPython!")
|
|
116
|
+
|
|
117
|
+
main()
|
|
118
|
+
```
|
|
119
|
+
|
|
120
|
+
Then:
|
|
121
|
+
|
|
122
|
+
```bash
|
|
123
|
+
tpy hello.py # compile and run a file
|
|
124
|
+
tpy -O hello.py # release build (optimized)
|
|
125
|
+
tpy --dump-code hello.py # inspect generated C++
|
|
126
|
+
tpy --cxx list # show available C++ compilers
|
|
127
|
+
tpy -j4 hello.py # parallel compilation (4 jobs)
|
|
128
|
+
tpy --install-agent-docs docs/ # install TPy agent docs into your project
|
|
129
|
+
|
|
130
|
+
tpyc hello.py # compile only -- emit .hpp/.cpp into __tpyc__/
|
|
131
|
+
tpyc -o out/ hello.py # compile only, custom output directory
|
|
132
|
+
```
|
|
133
|
+
|
|
134
|
+
A `sources.cmake` file is generated alongside the C++ output for easy CMake integration.
|
|
135
|
+
By default, the tpy runtime headers are bundled into the output directory so the
|
|
136
|
+
result is self-contained and can be committed or copied to another machine.
|
|
137
|
+
Use `--no-bundle-runtime` to skip the copy (e.g. during development on the runtime itself).
|
|
138
|
+
|
|
139
|
+
```cmake
|
|
140
|
+
include(path/to/__tpyc__/myapp.d/sources.cmake)
|
|
141
|
+
add_executable(myapp ${TPYC_SOURCES})
|
|
142
|
+
target_include_directories(myapp PRIVATE ${TPYC_INCLUDE_DIRS})
|
|
143
|
+
target_link_libraries(myapp PRIVATE ${TPYC_LIBRARIES})
|
|
144
|
+
set_target_properties(myapp PROPERTIES CXX_STANDARD ${TPYC_CXX_STANDARD})
|
|
145
|
+
```
|
|
146
|
+
|
|
147
|
+
## Coding with an AI agent (recommended)
|
|
148
|
+
|
|
149
|
+
TurboPython source is valid Python, so coding agents (Claude Code, Cursor,
|
|
150
|
+
Copilot, ...) and your existing tooling work out of the box. The fastest way to
|
|
151
|
+
be productive is to hand the agent TPy's rules and exact API surface up front:
|
|
152
|
+
|
|
153
|
+
```bash
|
|
154
|
+
tpy --install-agent-docs docs/ # writes TPY_*.md into ./docs and prints a
|
|
155
|
+
# snippet to add to your AGENTS.md / CLAUDE.md
|
|
156
|
+
```
|
|
157
|
+
|
|
158
|
+
This installs four reference files into your project:
|
|
159
|
+
|
|
160
|
+
- `TPY_FOR_AGENTS.md` -- concise Python-to-TPy bootstrap (the delta, ownership
|
|
161
|
+
rules, idiomatic patterns)
|
|
162
|
+
- `TPY_LANGUAGE_FEATURES.md` -- full language reference (only **Working**
|
|
163
|
+
sections are usable today)
|
|
164
|
+
- `TPY_STDLIB_ROADMAP.md` -- stdlib coverage (what's available vs missing)
|
|
165
|
+
- `TPY_API_REFERENCE.md` -- the exact callable API surface, generated from the
|
|
166
|
+
installed version
|
|
167
|
+
|
|
168
|
+
Append the printed snippet to your `AGENTS.md` / `CLAUDE.md` so the agent reads
|
|
169
|
+
them before writing TPy code. Re-run after upgrading `tpy-lang` to refresh.
|
|
170
|
+
|
|
171
|
+
## Dependencies
|
|
172
|
+
|
|
173
|
+
- Python 3.12+
|
|
174
|
+
- A C++23 compiler: g++ 14+, clang++ 18+, or zig (auto-detected)
|
|
175
|
+
|
|
176
|
+
No external C/C++ libraries are required by the runtime.
|
|
177
|
+
|
|
178
|
+
## Development
|
|
179
|
+
|
|
180
|
+
```bash
|
|
181
|
+
# Run all tests
|
|
182
|
+
uv run pytest
|
|
183
|
+
|
|
184
|
+
# Run tests for a specific case
|
|
185
|
+
uv run pytest -k hello
|
|
186
|
+
|
|
187
|
+
# View built-in type documentation
|
|
188
|
+
uv run tpy --print-types | glow -p
|
|
189
|
+
```
|
|
190
|
+
|
|
191
|
+
From a source checkout: see `docs/ARCHITECTURE.md` for the compiler
|
|
192
|
+
architecture, `docs/LANGUAGE_FEATURES.md` for the full language reference, and
|
|
193
|
+
`docs/TPY_FOR_AGENTS.md` for the agent-facing bootstrap (also installable into
|
|
194
|
+
your project via `tpy --install-agent-docs`).
|
|
@@ -0,0 +1,345 @@
|
|
|
1
|
+
tpyc/__init__.py,sha256=8lQEORkVXPw_GTmfmGH_FWn0q6a4_laIEgT_pxpcbgE,3292
|
|
2
|
+
tpyc/__main__.py,sha256=PJIil0xhs_XUWNLVEI_pZmcIXkdQRfpDSEWBWI-eEiA,131
|
|
3
|
+
tpyc/cli.py,sha256=N8lEMj1T8de9-477jW72bBgmr29lmymc7MSE5GaMNl0,34803
|
|
4
|
+
tpyc/coercions.py,sha256=KbbdEyhRKMw87YyxSKBL-oRmdv8mrJ7FlZER_0-__ZI,27913
|
|
5
|
+
tpyc/compilation_context.py,sha256=wml8woxHHEi5bSj-hdmuTKXxRXmEKtn9pR5j2AmbNgs,1906
|
|
6
|
+
tpyc/compiler.py,sha256=Wd9Dx1ePczXILkYiwCbtqaXMSfuLm_yonmCX_ri0adA,187251
|
|
7
|
+
tpyc/cycle_detection.py,sha256=7aqh9XWPLvStIi6VVHcZzRYwEgKpYznZe59XUcZxf7c,14359
|
|
8
|
+
tpyc/diagnostics.py,sha256=v1rIKdQMVA-KgiFVRmNf42ylYGCSCeR5QQPdMX31OkE,4615
|
|
9
|
+
tpyc/dump_types.py,sha256=pWXNU02Vf1PCZNn7PJZ5foNOcjKZ13mFqNvZwthONnY,12537
|
|
10
|
+
tpyc/frontend_diagnostics.py,sha256=gZi3DAqM9bM243dpM_fUEKKLdloxfERp2jSWgOc10mw,1695
|
|
11
|
+
tpyc/frontend_plugin.py,sha256=MpbZ8_C1oHLjGyHWQONF3pguMvDZEjIm8fGM_Tm2hKA,7919
|
|
12
|
+
tpyc/install_docs.py,sha256=offvMpTaMr6kQhK2FJIX_wTEw3SjSA4iaqUi8jtDYTQ,3125
|
|
13
|
+
tpyc/liveness.py,sha256=6mMvFEZRA1DiFMf4TixS52QibqEVqcEoqI7i5c-0aG4,30267
|
|
14
|
+
tpyc/macro_api.py,sha256=ikyyPZFtn_JGJtPhFG5dWs_QeE7TTxdI1cB8lNI_zzs,75681
|
|
15
|
+
tpyc/macro_loader.py,sha256=6mIoiakeudLIPEKB36sOZFelAi9EAbRqbb2gc_nflEk,18360
|
|
16
|
+
tpyc/module_names.py,sha256=E1KFDsLYmmrxyX8vpu0RLvfdlcs-SvNitmZVXJNi2Gg,2760
|
|
17
|
+
tpyc/namespace.py,sha256=G1njQ286rp5jT_DECqfI64PuXPs93Kz9Yw0BzmBjurU,6661
|
|
18
|
+
tpyc/prescan.py,sha256=zfSSW3ImP2DRfR9x5oolZnKJJ6ClS6olPMV20CJbODk,11055
|
|
19
|
+
tpyc/qnames.py,sha256=xqCLpVIsq02HqaTAyIa8dxXztHbruEncSMDZqti_kSg,4282
|
|
20
|
+
tpyc/repl.py,sha256=x2GhgvgY56hu7iZna1zklfAnhD5jOqGd_Ai4HAXonMg,21910
|
|
21
|
+
tpyc/repl_backends.py,sha256=ld0tLIcpAB2P0NI1tD1qal8cp5HM4bJgb4mnxhZICj0,31944
|
|
22
|
+
tpyc/symbol_binding.py,sha256=U4UicRCih8-ME9EFuuF1vTbD2jW7OcScnvBMwVdsYMg,8794
|
|
23
|
+
tpyc/test_c3_mro.py,sha256=XnebFZB-U8H6WtehIqzz7fSvu8t8Inh01M2ox6-5wQ4,7759
|
|
24
|
+
tpyc/test_cli_argv.py,sha256=P3bQz7Fk01T_ZBdVsF9hq3XhwN4vGjbE_LNgF2D8Au0,1735
|
|
25
|
+
tpyc/test_compiler.py,sha256=5uEuyQf2LxzT46bDVdvUicFXC7ZJZ82tuHyPuEph3YI,22358
|
|
26
|
+
tpyc/test_contains_type_param.py,sha256=3mTL_DV0eN72rS6SipOe5ZcPtZJvP5O08N-VAPv1c4s,3757
|
|
27
|
+
tpyc/test_cycle_detection.py,sha256=J2ZH4DbdquN60_ehtXz3PNnhezYxHMfSci9-ns5eBYk,8607
|
|
28
|
+
tpyc/test_dump_types.py,sha256=hvPHhPKnCspZdo5pRyP_3uKBy5rfo-fEQffAbbLiyfc,8577
|
|
29
|
+
tpyc/test_frontend_lower_macros.py,sha256=UlA7R2TcaVdhgh5ZHi5LAZQS_krTVleLGOiR1CLlqvU,2368
|
|
30
|
+
tpyc/test_install_docs.py,sha256=yvj1hjW-5dgC31GoyMsO7QB1EugFzgzICKjP-UWpUL8,1881
|
|
31
|
+
tpyc/test_local_cpp_form.py,sha256=pXBDkeOU9oXzWUtRhIi5v6jk-agTYy8q_nN56ku0pA0,5511
|
|
32
|
+
tpyc/test_macro_api.py,sha256=iB9jA2UJbKADhSe3EYQJfXZz8d9mOV4MtNefPVLSs7M,1794
|
|
33
|
+
tpyc/test_macro_loader.py,sha256=Yi3pDvDW8hRjoUfT4ogdBQQyF0-LOLry7k19oo0OzsA,2743
|
|
34
|
+
tpyc/test_method_expansion.py,sha256=f31ICeR48520K_RHtj04XF1ACjxdQeN4igAEy0uupd4,8668
|
|
35
|
+
tpyc/test_nominal_identity.py,sha256=Expdr8i_Gq6cLyGOhmD5d3sj-sLHubreWCZxSA7qpcs,7584
|
|
36
|
+
tpyc/test_overloads.py,sha256=3qeOL_jPPU9xiePhHqr34VgVF6E_sNtj3kthT9yKf1A,15742
|
|
37
|
+
tpyc/test_parse.py,sha256=B01kej2TFqgwK3b2KSvTW844a-IdmQY0f6pFqNhGdPI,13125
|
|
38
|
+
tpyc/test_parse_type_ref.py,sha256=lnLelgA62_oNq_jJbfGCVszsSG43bZK2KJoDyXc4jJk,18571
|
|
39
|
+
tpyc/test_parse_version_info.py,sha256=J-oLRUdf0wS4TPG2PI5selCyqiR3M3q72RdJFZjeO2c,2141
|
|
40
|
+
tpyc/test_reach_analysis.py,sha256=Z2FGoXTZUw_ytoU8nF_OimfA5yfTMPw4Omu_U8BL8uk,2252
|
|
41
|
+
tpyc/test_ref_type.py,sha256=T-twI19muSWtTNmr2wCxgrcZoYKMtQbw0MXpR0Skhjc,6847
|
|
42
|
+
tpyc/test_send_sync_substitution.py,sha256=vAlGlQPiO7e2tvECEBvkUmImdA9MZVtq423tLaMLsN0,10722
|
|
43
|
+
tpyc/test_tuple_mutation_propagation.py,sha256=5D_ARnQ6Qeu4ogXaGzJ9V4rPQiNgZZ4A29BYuvX2N7o,6050
|
|
44
|
+
tpyc/test_type_def_registry.py,sha256=qUZvtf4kSC6nbof2RoOVoz_FL94ufRUcXAJSZI2XmJ8,78337
|
|
45
|
+
tpyc/test_union_types.py,sha256=8oU749tCjoA9HonykKW1XQzju8irTjgjDdLCCzWi_dY,7065
|
|
46
|
+
tpyc/type_def_registry.py,sha256=Z5PmSYZ2acSHcQ0RMaSsRAKc3lEF6jMtoMFREK1Eed8,45451
|
|
47
|
+
tpyc/typesys.py,sha256=7OYr09M3rDnhg2BldasxzSFZ0hEG6vpGUP90IyjLuto,218348
|
|
48
|
+
tpyc/build/__init__.py,sha256=r32dtvYLOAwAGkB6rOwgKzB5KU0Ay4cO5Tm_P57SZgE,330
|
|
49
|
+
tpyc/build/pcre2.py,sha256=ditXCxCeMTnbdOeeTqK0VZojjCuXgNnfiqLXdFkLEQM,4732
|
|
50
|
+
tpyc/build/third_party.py,sha256=OO6KEHsnWES9McUZVDSMlwwne3eWEN0_WzpiXHGqPk0,17002
|
|
51
|
+
tpyc/codegen_cpp/__init__.py,sha256=Z19zcqcKovhvyMGHrIp7d-HpDvUEluSR_dnPjBzc8LE,417
|
|
52
|
+
tpyc/codegen_cpp/builtins.py,sha256=W9iiT2TIQ9bczBd16WKQpS_q515G_jBVUjQheXgFeIY,25534
|
|
53
|
+
tpyc/codegen_cpp/context.py,sha256=WPsaLLA7Ppld9hm3QW-NlrjCHyYcqM4r5HcEWH8TEHs,101554
|
|
54
|
+
tpyc/codegen_cpp/expressions.py,sha256=9RPHTlxBHFoxEFq8aTlK842VNpWAPMZ0k05jFNLdji0,328012
|
|
55
|
+
tpyc/codegen_cpp/functions.py,sha256=j_AxdZwMhkdRiE__ewIrbmqg5wAKBQ9lJT63v1S-9GE,96387
|
|
56
|
+
tpyc/codegen_cpp/gen_async.py,sha256=nCT0NNRKqYrY9yglQA3JR2rIeLE4WXJJh2vM_0VmxFw,185929
|
|
57
|
+
tpyc/codegen_cpp/gen_generators.py,sha256=B8dyEJ0YggokT61vqrCCkNxWtVt8zBfbL0bh_Iv-N44,45584
|
|
58
|
+
tpyc/codegen_cpp/generator.py,sha256=sbkDCMnIBnLThoSXfQa58c1mworU3lcsVgtKYH9rHaY,130665
|
|
59
|
+
tpyc/codegen_cpp/match.py,sha256=etafIMkcfQ7obCS4yTQendHndgXbZRrO7eKC_ycA4JM,123277
|
|
60
|
+
tpyc/codegen_cpp/param_const.py,sha256=CCi1azfkpbb-xB6vP5wf0DQjbKFeHONFWbL8xCotywY,7817
|
|
61
|
+
tpyc/codegen_cpp/protocols.py,sha256=6g6R7UFNiH6XawmFrLW2h5dufiZrmFBYIASY8jeqivw,47510
|
|
62
|
+
tpyc/codegen_cpp/records.py,sha256=-U_EWTesDDd3X8uNHRzi3lwwzNwzfXQRfDFlJyumKFY,85251
|
|
63
|
+
tpyc/codegen_cpp/resumable_cfg.py,sha256=yi-ZDZkKIrgx1yloy-3jNB3uqRiN8vEB5DtFUXLN6TE,76578
|
|
64
|
+
tpyc/codegen_cpp/statements.py,sha256=3GPVo_n2gKqxZSSlqvs6kxlf5b4hhOkMlc7UiciaCtc,264891
|
|
65
|
+
tpyc/codegen_cpp/string_dispatch.py,sha256=HmLaR2rfw59qyPmW-l8Lf4-hgrot0yD3BaNtJ3_GtvA,2403
|
|
66
|
+
tpyc/codegen_cpp/test_context.py,sha256=dAOdxP6BxXx67oHhBavEzr2j0aYgZfh3PSyVAgqzuRI,1663
|
|
67
|
+
tpyc/codegen_cpp/test_param_const.py,sha256=BaWex3QqXzFh3kfcQAKZYtt4TY-7bC0YCpEA4zHfdP4,3917
|
|
68
|
+
tpyc/codegen_cpp/test_resumable_cfg.py,sha256=eze9pCjV08aGL-fe406Jg-8ZCdTY6cXOfrwI0y9uhYA,6953
|
|
69
|
+
tpyc/codegen_cpp/type_resolution.py,sha256=W71CzXpTE9p_Q135kqhk10CfRbHRZUh5BuyvWIot09Y,1740
|
|
70
|
+
tpyc/codegen_cpp/types.py,sha256=JzL_QJK1tJt0pDXORmnGeljZ8y-iMpk4SIgbdPy75cg,22368
|
|
71
|
+
tpyc/codegen_cpp/variant_access.py,sha256=J6ZSIkT9MiL4PHaK4BmCx4YMCPvEK0jBPU8G5RpCTG0,6427
|
|
72
|
+
tpyc/frontend_ir/__init__.py,sha256=_HVcu59RWvsuvY4LsjqR5AX-I6o-ChkNCuMkLRTbjWQ,2273
|
|
73
|
+
tpyc/frontend_ir/lower.py,sha256=DSPBVwBJyUEjtutrHAy14dbwcwQSslCuy7u84VzVvBo,41754
|
|
74
|
+
tpyc/frontend_ir/nodes.py,sha256=gkRvZXhJK2NC8HZT_6sWds79rsTBUNYTPZOuSoOCTxc,21538
|
|
75
|
+
tpyc/frontend_ir/resolver_adapter.py,sha256=ySqDzvpLB0VnZlAdkrj_Y5gcQ6I1A_Ojrba_RME7uXM,6186
|
|
76
|
+
tpyc/modules/__init__.py,sha256=WG2BC0-aS-VP4qQ8gnlNh9mjoOEr2x7X-L2gffqsUO8,1074
|
|
77
|
+
tpyc/modules/defs.py,sha256=6CJkw4Fx5Lww4PT5aE4iVHzfTZEMYS5wM3TT7tsP57I,2948
|
|
78
|
+
tpyc/modules/registry.py,sha256=ISgiFR6Q0L8dpAetuVMGqp32Jt-mWvzs0-mPYgGYMM8,1167
|
|
79
|
+
tpyc/modules/resolver.py,sha256=vMxWp5VvYL2eJU59VusO74LyYAHaj-X-_mlyHgSMvxY,7065
|
|
80
|
+
tpyc/modules/type_resolution.py,sha256=nZZuPl5gW2pYp8ic_dh3S_OcjhBlKSL6P-LLDB7VMfA,26654
|
|
81
|
+
tpyc/parse/__init__.py,sha256=-eEF0vgjSgnlLv2BrF9HUjshbJyY_Ixo2n3vXNRYK2Q,3990
|
|
82
|
+
tpyc/parse/imports.py,sha256=jtneogw5ncTXhDbARda60NrCM9R7BKQRxBQ4G1V7DOI,22325
|
|
83
|
+
tpyc/parse/nodes.py,sha256=AvD3CEoZsg3b0thzzwZaXH7g_3VcqyxI9ZmBbyw4Ad0,69959
|
|
84
|
+
tpyc/parse/parser.py,sha256=RV_IKgy7kweHbuc_AZcHbtrVUgdC9kALFE2BfoAW8xg,198603
|
|
85
|
+
tpyc/parse/resolve_refs.py,sha256=SHqCyEy5gD7tCK-fPtbK8B3YVQ3Vk-88V41lZ1p3Wlk,21160
|
|
86
|
+
tpyc/parse/type_resolver.py,sha256=5kwPPuLv-xM_qUwTU0B1GJb76fYjG6vTWV3EM-sGWIg,51845
|
|
87
|
+
tpyc/sema/__init__.py,sha256=wkstAeneROvbBOCRAs6DgIO4H1Y0x_4mlf-3qS0xoKI,474
|
|
88
|
+
tpyc/sema/analyzer.py,sha256=iH1SNjAbo9Uzsy3ofwVh3A4Xue43erV8kR63FGhKerY,190851
|
|
89
|
+
tpyc/sema/bound_check.py,sha256=FCRqYVb30na4jDb_f2sEDEMvtLbpMLyQkW7B-GZjVWw,2879
|
|
90
|
+
tpyc/sema/builder_trace.py,sha256=eYc5H4U1Gps2Y7fSxoalmHvasHDt_MR9tHAx98lOczQ,28970
|
|
91
|
+
tpyc/sema/calls.py,sha256=sGl--tudRP-6NYGY8-HdwPUq7m_NL_mVTxqGqjjo_n0,273377
|
|
92
|
+
tpyc/sema/compatibility.py,sha256=kfwJmBrRyLUoaLKHf88AaqaXl9qj86U8kyre-6l2LJA,124611
|
|
93
|
+
tpyc/sema/context.py,sha256=xSvj_MyEOzvuxF2KJ0h1mAaRBcLfOVn-pRprzuVRfHM,61771
|
|
94
|
+
tpyc/sema/expressions.py,sha256=xAqbJOcsgvIwPq6Qw5ecYR_lYDWfM7B0u0Z2TbLOBP8,189286
|
|
95
|
+
tpyc/sema/flow_facts.py,sha256=T3Kf9w25yIXRRo0wMtF9icFgzlPwb064j7CyyF0buPE,8066
|
|
96
|
+
tpyc/sema/function_macros.py,sha256=T6ezDv2pYJyp408kx1qLhu4PldXfHLfYz532SupWELQ,2199
|
|
97
|
+
tpyc/sema/init_tracker.py,sha256=IpM-UkSwRZvbuR-K9lEwR8ICpRWyMZJZJMSVXyiEymE,8342
|
|
98
|
+
tpyc/sema/list_literals.py,sha256=1CsfHY3milsCoXUV6F4LwoWaRPG9lu92gnhwLNtVZdE,2682
|
|
99
|
+
tpyc/sema/literal_utils.py,sha256=dKfujeF6u0MdUlVTQY-glVrDz9yl3bKrwrk4InUPcOo,1200
|
|
100
|
+
tpyc/sema/local_deduction.py,sha256=jswi2EAqMw6ohsZIq1YNxsKtPK7lOI0YgIL-1b6q0lI,52361
|
|
101
|
+
tpyc/sema/macros.py,sha256=EfqKRreguc4alUUFhG0ZrQ4MJE3-3yt5-UpBEdz09nY,7989
|
|
102
|
+
tpyc/sema/match.py,sha256=A_y_VjyfFVlQP4rAwVli05SyMMnjvhxDbHQUT8EVGQU,66078
|
|
103
|
+
tpyc/sema/method_expansion.py,sha256=yaV-khEqrrqVHwlrPJR_NzOpXRFBN78r4OVsbgIrxcE,13303
|
|
104
|
+
tpyc/sema/methods.py,sha256=L1AdTOSLckazotEoES13bHd-ktq5sprcYSbk_bg_5mE,108678
|
|
105
|
+
tpyc/sema/mutation_propagation.py,sha256=emB4kSc5yuoT6UgyDUHU0hKgEnFSb7XrOXY_Ftr53j4,11665
|
|
106
|
+
tpyc/sema/narrowing.py,sha256=xz3nMMbNcS19seifQ-ocMCFk5SIulm0tMs6bgzbe4LI,38006
|
|
107
|
+
tpyc/sema/numeric_lattice.py,sha256=NQ7BWKRhtusUj30kgf8NEnxnlhemhipnH6CuhZwyXsw,5277
|
|
108
|
+
tpyc/sema/operators.py,sha256=YCNJOEJ_WreZ5ThcSHac5rFntyT3xZy0P60-R2Xdb0A,18298
|
|
109
|
+
tpyc/sema/overloads.py,sha256=LfbMyhtMiWlBejDzma3gbhfc8Tb60vFm2qo2zwvMMDY,39912
|
|
110
|
+
tpyc/sema/protocols.py,sha256=9lIWNAl5ssrrWeCX5EsKUCAgNOdgFWwVNxJKi9n4IIg,61415
|
|
111
|
+
tpyc/sema/reach_analysis.py,sha256=2a4206dyQ6hqfKy83gwUbbC7d7Y51bba3YtdUSjsH-w,6965
|
|
112
|
+
tpyc/sema/registration.py,sha256=rN3moyHAbXe2_kGO6rzraKlpHC8Y3owD1KPYvHCEKHg,161976
|
|
113
|
+
tpyc/sema/scope_tracker.py,sha256=Ddn2drlLbrVl2-xhr7W6N_AIAhqA-v3o_cxxD2tPQk8,8034
|
|
114
|
+
tpyc/sema/statements.py,sha256=DbLjQgCGfKg9GqtuU5F1RHFxHlR0L2QrXGhRDT_yBaw,249896
|
|
115
|
+
tpyc/sema/type_ops.py,sha256=U1jXERy2CtvtixoAANfnSJlJxTYHuIGuzzU9ia7cBlc,96483
|
|
116
|
+
tpyc/sema/value_range.py,sha256=GO6-sZJIcDiPqvcx_DfEyVoyUm4pJucyISXI2OuYYpM,5622
|
|
117
|
+
tpyc/_buildinfo.py,sha256=rzJB5Or56CEQXB2tFbkUUufS47bJ4wN0BcTy8v5lpOs,22
|
|
118
|
+
tpyc/_data/runtime/cpp/include/tpy/any.hpp,sha256=8ZviWgHLrNxO3DyibfQajyHpkeXb-9KX7KZexoY9FDs,16652
|
|
119
|
+
tpyc/_data/runtime/cpp/include/tpy/as_ostream.hpp,sha256=4vnG77JNig8edg1_07jqvYpQ7TQVHjKOu27kLkz585Y,3545
|
|
120
|
+
tpyc/_data/runtime/cpp/include/tpy/async.hpp,sha256=IEfyfmibIU_myQjLjgK6XCwA904g400ouoGiuKMOZyg,2926
|
|
121
|
+
tpyc/_data/runtime/cpp/include/tpy/bigint.hpp,sha256=pUzRsT8kc4UHHMbdIhWar3aXcnFj9djeC_D5dkoNXZE,42456
|
|
122
|
+
tpyc/_data/runtime/cpp/include/tpy/builtins.hpp,sha256=9pZZCB3XpT03JPzkOVQDenYHxLxgiBrmFkpmwBgqiOo,11543
|
|
123
|
+
tpyc/_data/runtime/cpp/include/tpy/bytes_ops.hpp,sha256=XM-TGN5qLBVavpvmdbij5smdmu9-zyu3cRTSYpw3k6g,15106
|
|
124
|
+
tpyc/_data/runtime/cpp/include/tpy/container_ops.hpp,sha256=XWiGP-niEHfVTrg66YcKnm-CqkMpPtjCcKqd2kdoHWI,16824
|
|
125
|
+
tpyc/_data/runtime/cpp/include/tpy/copy_iter.hpp,sha256=KlLR0NB8vr389Kf5zssz-Hg_-6QLBpaWHbv8qBs9PY4,2684
|
|
126
|
+
tpyc/_data/runtime/cpp/include/tpy/core.hpp,sha256=SwxXmpzrpig_d_BdBaeuh5zzDQDUZSAQJBdB1rSrbbc,21470
|
|
127
|
+
tpyc/_data/runtime/cpp/include/tpy/dict_ops.hpp,sha256=64ruZ4ZiActHtwpHzmQxk5-kzgFLJX1HP-tibqUkJ_E,9168
|
|
128
|
+
tpyc/_data/runtime/cpp/include/tpy/dunder.hpp,sha256=7dSO3sjo6YX8jAqAHTp-DAbv8X69aAkwUp7ykYNYTlI,26137
|
|
129
|
+
tpyc/_data/runtime/cpp/include/tpy/dynamic.hpp,sha256=4Ih4gMzT4XrsSHljfmlcwGMvOQ9skC2k0EB1qYdMaLE,3207
|
|
130
|
+
tpyc/_data/runtime/cpp/include/tpy/enum.hpp,sha256=jlhfN4IL86to16wDH2YdiLUvFiiBPuU-57rIj1Re3sc,1213
|
|
131
|
+
tpyc/_data/runtime/cpp/include/tpy/file.hpp,sha256=vQBtTIvHVh68qzPEPCvbkgmHY1zKN9ej5Qw9Uhm84Tk,8149
|
|
132
|
+
tpyc/_data/runtime/cpp/include/tpy/fixed_int.hpp,sha256=I-9mo23X5_yq3R_1nPhwd9G9rn4ph796Tk8NYKLspDs,11139
|
|
133
|
+
tpyc/_data/runtime/cpp/include/tpy/format.hpp,sha256=Xp4s7eXuhkG6Ix4P0MW3Lfo57bskVkcSw0SPQ6dfCXo,34120
|
|
134
|
+
tpyc/_data/runtime/cpp/include/tpy/frame_slot.hpp,sha256=6NSBko66ybpPp5e9BGM4or-GUaO-Hg9GdPp1hm3XRao,3719
|
|
135
|
+
tpyc/_data/runtime/cpp/include/tpy/generator.hpp,sha256=BZRL43RepVUn3YTjcqp7_0qAphyT8RBGpMx4cUuCJPQ,1308
|
|
136
|
+
tpyc/_data/runtime/cpp/include/tpy/iterable_ops.hpp,sha256=MNIVYrQZfhY45gcEA5WKbgs3mzk1NVDfd9ygljEyrcA,3989
|
|
137
|
+
tpyc/_data/runtime/cpp/include/tpy/itertools.hpp,sha256=WyooSVfuMuBaVZIh9kPAqePg-Q4nvw9E-Ek6AjVmIlI,27802
|
|
138
|
+
tpyc/_data/runtime/cpp/include/tpy/next_iter.hpp,sha256=1WnhYkLTtxE5YEx1hw43wdLK6TkN-dlsqaoasV-20Ng,2366
|
|
139
|
+
tpyc/_data/runtime/cpp/include/tpy/ordered_map.hpp,sha256=CGiLD7QP8wq9P_63l0L3aHuGJcHUEiPmSuXNRkfX6zc,17979
|
|
140
|
+
tpyc/_data/runtime/cpp/include/tpy/ordered_set.hpp,sha256=caL0lhajuZJfgoZYQDBNQ2YiYRDqlXmI29lRea2qbKM,10036
|
|
141
|
+
tpyc/_data/runtime/cpp/include/tpy/own_iter.hpp,sha256=-IgP9um3i1UargyeknUGb9AwvOu6ca6Ydb050k7W4z4,1582
|
|
142
|
+
tpyc/_data/runtime/cpp/include/tpy/pascal_graph_sdl.hpp,sha256=a41yF157oelFUj6fHOxXjz8xSmyadNYHSHrrEtd4bmo,6720
|
|
143
|
+
tpyc/_data/runtime/cpp/include/tpy/printing.hpp,sha256=ATpE-RXFX-025tK6sB8SOfek0gGtBMGML-j-MEKlyto,9839
|
|
144
|
+
tpyc/_data/runtime/cpp/include/tpy/protocols.hpp,sha256=qjh5Ju04ZLjf6ZRgByaZg5Lo4HCz08WCauvZHqnmxtU,1889
|
|
145
|
+
tpyc/_data/runtime/cpp/include/tpy/range.hpp,sha256=6snoCk85pT4K7cvLSm4WabH_1aGUqtLST0WCXOnchWU,4555
|
|
146
|
+
tpyc/_data/runtime/cpp/include/tpy/ranges.hpp,sha256=SfX9ZgTL5VmwcLnenDWqoBLqDBKbdyetDp4sD2QvAU4,7205
|
|
147
|
+
tpyc/_data/runtime/cpp/include/tpy/set_ops.hpp,sha256=GXMSrz49hsYMPSu22LX8JOE_Q0FHpOSZ8LpE9AJy74U,6944
|
|
148
|
+
tpyc/_data/runtime/cpp/include/tpy/slice.hpp,sha256=wG_Dj5bA_eBZwGxeIFK2iu2DGTqmY302nKj_-8-eG0U,1349
|
|
149
|
+
tpyc/_data/runtime/cpp/include/tpy/span_iter.hpp,sha256=Z1EvxAFbwzVIiF4qKLHozL3J81aTRLW_xDA8jbu9coQ,1144
|
|
150
|
+
tpyc/_data/runtime/cpp/include/tpy/system.hpp,sha256=jKiuqkPA0LbdScpgrS-4BWoDwSeiSVTHgiixlIvVebk,3321
|
|
151
|
+
tpyc/_data/runtime/cpp/include/tpy/throwable.hpp,sha256=-C-9UxtRIEcLbuEtEn4dQ0YpCiTV58m5LG2_xks24cY,2259
|
|
152
|
+
tpyc/_data/runtime/cpp/include/tpy/tpy.hpp,sha256=O0Re2t6KW4NdJPeNP4hbyNvlq0bGvotx8dwqa_whX2M,4853
|
|
153
|
+
tpyc/_data/runtime/cpp/include/tpy/type_name.hpp,sha256=mp8XQl56LYXICrLLMt09i1CEugCWh0FUrKH6-WBHJ4Y,2526
|
|
154
|
+
tpyc/_data/runtime/cpp/include/tpy/type_traits.hpp,sha256=qCuEvRe8yZO4BbSBfgiVPEg0iFzPWQ1p0Agn0OKe8Js,10554
|
|
155
|
+
tpyc/_data/runtime/cpp/include/tpy/uninit_array_storage.hpp,sha256=NLqKpc6ZxgiF2G2lC6UVHt7V9rHNubmb0wI6azVdO40,7101
|
|
156
|
+
tpyc/_data/runtime/cpp/include/tpy/uninit_heap_storage.hpp,sha256=8F5Ax3RcFl4UanSUHcD4eWNHI5LTXQIHIlultT1ZgRk,7919
|
|
157
|
+
tpyc/_data/runtime/cpp/include/tpy/varargs.hpp,sha256=ulNr1h-CXfQIvRJPuacQCG4dN7JLXDBjSaWXw9cBpdk,7363
|
|
158
|
+
tpyc/_data/runtime/cpp/include/tpy/variant_ref.hpp,sha256=uiUzMsPdzTdsMySrGSaietAoc_SY6jTAb37FNER8yGI,4134
|
|
159
|
+
tpyc/_data/runtime/cpp/include/tpy/stdlib/math.hpp,sha256=z-QFEusuEvA8egmWB9C75W6cLDDWoGN5_H9uDSPu1kg,1413
|
|
160
|
+
tpyc/_data/runtime/cpp/include/tpy/stdlib/pcre2_h.hpp,sha256=QfNfZgCk2cPhLe--vLCJ0jW7deHZaZqSbkPvrRbLkjE,4365
|
|
161
|
+
tpyc/_data/runtime/cpp/include/tpy/stdlib/random.hpp,sha256=yzfJpQNjQTjPbQbyIFp88JD-0w0LgFiCpJPXboJyuww,933
|
|
162
|
+
tpyc/_data/runtime/cpp/include/tpy/stdlib/socket_h.hpp,sha256=10gMXmiOgp18pvx5my9OfTtdi8_mqR5axddrnQD7ThU,6870
|
|
163
|
+
tpyc/_data/runtime/cpp/include/tpy/stdlib/time.hpp,sha256=EGoq3fLBvRKVcojRBWNqHkODYRj-PpLfehOUh4lLL-c,1991
|
|
164
|
+
tpyc/_data/runtime/cpp/src/stdlib/socket_impl.cpp,sha256=fNuG8zS2AQKhDR2XJ7LGamX01DDjs7iA3PwwcUPGaIw,3702
|
|
165
|
+
tpyc/_data/runtime/cpp/third_party/README.md,sha256=2ng-9YGWiiideizEKrTfxoeq8n3h3_VgPe4RwTxGZpE,2751
|
|
166
|
+
tpyc/_data/runtime/cpp/third_party/pcre2.sources.txt,sha256=r13UxDG2FXDa-hlaQln_wH-WZIlYv5zfuI59xRXC2xo,1747
|
|
167
|
+
tpyc/_data/runtime/cpp/third_party/pcre2.vendor.json,sha256=5XVAoR3G78VsLPWezWSCSRfb6VOsRBMJRl6Q7wFMHlU,269
|
|
168
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/AUTHORS,sha256=RmqPjjCxlehFJHF0W5RCWJAbeLbAcfVT_9ctmSSSsGw,749
|
|
169
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/CMakeLists.txt,sha256=lpe3auZYx9t30FR0_NFcCPyLe2MQJnM0ZTfr2TgINVs,48441
|
|
170
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/COPYING,sha256=mScsVfPc-geop-FaXBozCW5HJ950JB1l-gSfzP3VlQc,97
|
|
171
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/ChangeLog,sha256=H1csZZJDfH2v64D5H5_1Nlb0UJinbxziOy3D_OvI5xE,144201
|
|
172
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/HACKING,sha256=ojZBHoWFS92ZKPYTxTBHw8ENenBfE06OsjAUO5cHdGQ,39914
|
|
173
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/INSTALL,sha256=7evEbH0HJYogFwBQ2Vlc5OYw9dWEpOsAIgu5DImXoxs,15766
|
|
174
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/LICENCE,sha256=AwCH4ujdfBvdJgV9JdTe2PRbvwGtRY1oZlrQS4sPvt8,3477
|
|
175
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/NEWS,sha256=nlZfqmuXIz4nCSR6TYuSvSyYlbjnW3K7iyxDZDGFfS8,18265
|
|
176
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/NON-AUTOTOOLS-BUILD,sha256=mfyVhaf_vadRQ5bo3eZk_c1wHL_wA6dmGymb3BuZ61o,19534
|
|
177
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/README,sha256=k8NCy8TJOXSwg3zWpqWRgkW4SKkFBqKO4ZBqDcWugHI,45578
|
|
178
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/config-cmake.h.in,sha256=zV4KvXvKWLaoDN3gMkHcuJyAVo-FK7BnXUf6RyAPq7w,1694
|
|
179
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/libpcre2-16.pc.in,sha256=k9PelYxi9RhchHTjpVcr-H1ktmoW-FxpC_QtGJyyyE0,406
|
|
180
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/libpcre2-32.pc.in,sha256=DROirWZ7sqmKeaGJUlKlP-Kvv2g72YP5HfVmsIcqhTo,406
|
|
181
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/libpcre2-8.pc.in,sha256=BgrFEq66cHkVeBWp5vww44NWC1RENv2JsX6BG639FD4,403
|
|
182
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/libpcre2-posix.pc.in,sha256=Rb51hgTjPF3jXz28XnJjPkYWWtKt6aecCmh16zLOdk8,340
|
|
183
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/pcre2-config.in,sha256=kaW0tuWWkKSN2j_MEkgomHQgS2mR40YIzq0hszwq5Sw,2344
|
|
184
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/cmake/COPYING-CMAKE-SCRIPTS,sha256=Rs3n3BHmTHjWULSFG4j2cEtGZf9g8iocr2jOsV4hfls,1327
|
|
185
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/cmake/FindEditline.cmake,sha256=VnqwjlsW10B9j2yJtJO2xqbDNLJGHDMd1FOz6bh1lpQ,556
|
|
186
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/cmake/FindPackageHandleStandardArgs.cmake,sha256=qj7x8ch0LaVIE6qwrFjHHt0eWM07axV7hWv9UlrcLl0,2410
|
|
187
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/cmake/FindReadline.cmake,sha256=BV4d-L0p5oN9jruMFd1dyyjIjiOqvahTi3aiSd_4KbA,1287
|
|
188
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/cmake/pcre2-config-version.cmake.in,sha256=SJMvupqF2KUMIirFgl4vMdOOU1oeZGf8tcN0zEO655E,542
|
|
189
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/cmake/pcre2-config.cmake.in,sha256=jL8E1szMXcacMQVSmxPPwTOFVhJstOeqnu168BxurVA,5187
|
|
190
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/config.h,sha256=nCfs1XbRpAb2p-DX_FrX7cmjGxz8hcvg2kGO8t-eOOs,18255
|
|
191
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/config.h.generic,sha256=E5Ia8ZhmNWXRLCoD7FOURh39rdcEiUFyPYZbhmSW4qg,18264
|
|
192
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/config.h.in,sha256=YunzKt_90_tKXmJP7LOpZEQ-PmnhHtIxkdGLEP45HcU,17157
|
|
193
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2.h,sha256=DQjbiKb66bOY-szrqvPGtADegmQljVjJTB7d7gIKBL8,48423
|
|
194
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2.h.generic,sha256=DQjbiKb66bOY-szrqvPGtADegmQljVjJTB7d7gIKBL8,48423
|
|
195
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2.h.in,sha256=nAlzUnzdr4v8n_RDrHwngJqj4UpaUU-N5NkJ8n4GNvU,48465
|
|
196
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_auto_possess.c,sha256=cZrUaNCO61hzrJHVoCk4ngQENWJIWVYcjD-OmkDOq5c,40585
|
|
197
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_chartables.c,sha256=c6Udni3ulBnmKFy-iu_tfAbaU64pbJSkMwwkNHAo9ms,7752
|
|
198
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_chartables.c.dist,sha256=c6Udni3ulBnmKFy-iu_tfAbaU64pbJSkMwwkNHAo9ms,7752
|
|
199
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_chkdint.c,sha256=6tIoFkAx1snOMe7SJx0xkOr8vlaBrYr4csJI9MmFP2w,3207
|
|
200
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_compile.c,sha256=0Ewl2yST8_BtjkTgbqMTzI_b7b3jRLgrkSVzoMkWmzQ,367181
|
|
201
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_config.c,sha256=6gK4MKOVHHPLpA3GJ3fnJJ8gsue47V4wL7K6xGf9YRo,7740
|
|
202
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_context.c,sha256=0goh7ht0EZUhHM_Qrt-cmITAKi_FBDx1cqUG55lVGVw,15861
|
|
203
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_convert.c,sha256=sPjqYq9uWokgCgckO7ao-eNcmZocYXawAblB6GnYwQI,31004
|
|
204
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_dfa_match.c,sha256=7bX8gGS_0tIg1gcOSDsRO_gZ5QZbSmXNYckdaWFPO18,143371
|
|
205
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_dftables.c,sha256=MJ_3hQETojI5VNunCj1gqZiHI5rNUVeHBfPfl8BbBQg,9344
|
|
206
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_error.c,sha256=KOvvmFh1imAv_YcFIGAx2-pqr5Tb86pSzwXmXEz5DFs,13546
|
|
207
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_extuni.c,sha256=n1aCbr8ZVTuOvgm1bJjIXf5mcRN1qDlEqWcSMXNCHcw,5427
|
|
208
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_find_bracket.c,sha256=zQkULTDcYYNzDxTzLA71Q1adZ9lA9xwgGWN9UBD3f-M,6860
|
|
209
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_fuzzsupport.c,sha256=1btEpxqZPDbtZwbj9MKwKkNRAXH6HzhUIicv6-YAoss,25002
|
|
210
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_internal.h,sha256=sOEg0SBIahLvCwoOGlVRrJ15-QnxzSCLUzEkEzvg1UE,95472
|
|
211
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_intmodedep.h,sha256=gGmlmkWxxNCnJKuPoDkEIjR2Ejy2vH7b61-Betx44cs,38078
|
|
212
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_jit_compile.c,sha256=P10-CjxAWYi_NOAIOkSftLaO9JMCwRTKXH00Yz1R2MY,460402
|
|
213
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_jit_match.c,sha256=Rk4CW4J66qOedcC-bAyCUVMnt_jXBxlFLSNymzMEink,6867
|
|
214
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_jit_misc.c,sha256=AqfU4-JhaTi7do4xwCi6IFJ1GzT0tOhJExR-V_lQhIE,7081
|
|
215
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_jit_neon_inc.h,sha256=Qna7EkU2AEVIA6zby7nnGZRO4HSeu1lOp2ZYl0zrOSU,8663
|
|
216
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_jit_simd_inc.h,sha256=9d7_geP_5ujLGr7D7jyXY6HzHsm8dl4fhf4DX2SK51Q,73972
|
|
217
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_jit_test.c,sha256=OjOoxYXt_OCr0SOfuHlMDg9RcS6S_PjHtr55fc-SYQk,109577
|
|
218
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_maketables.c,sha256=K52L8mfJZmnIpglCc-VaA2vn_r-nBXI4kPebta_4C0g,6599
|
|
219
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_match.c,sha256=5GQHl--MnD3tdeDXXD7XCuYnBVCJtFVEddvgmsyYEO0,236270
|
|
220
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_match_data.c,sha256=Nu-KCevJMFka5hvt4puIOvxJ-j4Ga7ZnXzMoq9EtJVg,6084
|
|
221
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_newline.c,sha256=6A4sjI16RiAlwSgJkwZyHXZb8ZIo1is4FdigvhX4bmo,6356
|
|
222
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_ord2utf.c,sha256=bqCCOMxHdh6dCHpUaF-rJ5_r_7LA5USFmDyx8HkKnl0,3741
|
|
223
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_pattern_info.c,sha256=-MD1JxUJgmfgGu1GFRbQ73unHqTqIuXUB6kXQZGE5G8,11738
|
|
224
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_printint.c,sha256=PNrAiwTxSkxeQyJXLzkEz9bnYX5x86pZhopDodNYf8U,24522
|
|
225
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_script_run.c,sha256=pqQYMjtUjox0qF5I9nyZaFfbd2oj7_oveLCfhGB0KHw,11928
|
|
226
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_serialize.c,sha256=48NsytHLxtW0-4DE-MnfB0XkjPyLCfAwJjkiTQyV6bg,10048
|
|
227
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_string_utils.c,sha256=ZfwNjtnzUXcCMds4IzugLqN7L8l5EPNZ74JUMONkVLw,6166
|
|
228
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_study.c,sha256=W_ybfAS8GwxWUBupKMCnAPp2-hpKVa2jgjbQOJ81cA0,56009
|
|
229
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_substitute.c,sha256=TtD8Wmio5zcMD2njT008_fQRaNvKYYMrPYuA1jMWU1E,30176
|
|
230
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_substring.c,sha256=_D9017hKalaDlL2p5AWwpr0BCsfCvahw4dGCys-HYBw,18438
|
|
231
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_tables.c,sha256=H--TJzlAsCZL9iVJzY3pWCKfBS3DsTBm42bGAGW-PO0,9702
|
|
232
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_ucd.c,sha256=eYguVWgwuQ2qSCl9ITbyKua-JxtsBVeQBabJ1sBOc1s,335209
|
|
233
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_ucp.h,sha256=ZiIwUMlnKcX1Hrd5z1Mm664EnBm4qN4P5-jFRG3JMjI,10244
|
|
234
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_ucptables.c,sha256=0Ywoq1lTqWJ3TBZvSPhog8_bs4ZiK-Fko9HIZ0YoGps,61105
|
|
235
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_valid_utf.c,sha256=GYexUt4IXnAJ51JWEnRpGazupJDgO7PUbjW61qHhMvk,13099
|
|
236
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2_xclass.c,sha256=gtF9E9-erTsaqqKkU7ag5qhmhuy90VevOb1Izw_U86w,9495
|
|
237
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2demo.c,sha256=DI3Y8q9dmQluHP-vehN2Qd9K6TfOsbEaysqjPeYIh3M,20174
|
|
238
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2grep.c,sha256=SBBaWDGb7n_wmJ4bBV0NkldESmD4Tkx6VEeoltLzzKQ,132963
|
|
239
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2posix.c,sha256=WslEMBrpOauF_nIizQU88I9nfeDxquvO4pJUyGSseeY,14384
|
|
240
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2posix.h,sha256=ue1-0KzotmHTwroQ_DNUyHtzfFJMqU4yEArvswO94aI,7355
|
|
241
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2posix_test.c,sha256=8fZjXU35eWri5UTfCHHipIPnkjedAvr7ZyAl1Y0CM4g,5555
|
|
242
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/pcre2test.c,sha256=CISt7cCbLRToWBrQR-gezfm4-WcHruFNGa0uA7HpEjY,320379
|
|
243
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/sljit/sljitConfig.h,sha256=aUvKSdCkg_yGeYIggosox0YSPg5v245Qm_95Rhs1rxI,5265
|
|
244
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/sljit/sljitConfigCPU.h,sha256=E2k_eaJWmbPhWRl-CR7cs8LzBbBTFPW7LxFMs0wbbLI,8166
|
|
245
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/sljit/sljitConfigInternal.h,sha256=LyaF8nh-KhrtmM72dBOXgil4izHDfpmfOR303ecAyxY,32452
|
|
246
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/sljit/sljitLir.c,sha256=3ghrLfwfUUoIIRNw8oq0hRYaoKWkDOXLO8YHfXW3Dhs,117244
|
|
247
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/sljit/sljitLir.h,sha256=cEEabFeOQXPjvX1rkbG--K8fOoTUkhY6rjce_A8bQp8,109361
|
|
248
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/sljit/sljitNativeARM_32.c,sha256=JTNqwEE5Yj1MBtRFhocSAvgaYJ3x8p0eYBmkFO2XxpM,136189
|
|
249
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/sljit/sljitNativeARM_64.c,sha256=SwI6HMOBqTOQZuM2xkC13ln2ALuA59DglrMwlBVH_8w,103056
|
|
250
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/sljit/sljitNativeARM_T2_32.c,sha256=u6s1CMDduaxbvMU9W89Pg4rLPJJHZoFIAC4zwsE5ON4,131280
|
|
251
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/sljit/sljitNativeLOONGARCH_64.c,sha256=sEayZM6z97NuUrA0UJSNcc7_RyIkIYOguaAQezxkG9E,119278
|
|
252
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/sljit/sljitNativeMIPS_32.c,sha256=16wRssqz_bKgF2Agbqa70lYVgKx1abndYiPfm998Yqo,15359
|
|
253
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/sljit/sljitNativeMIPS_64.c,sha256=XgncAU4ea-8IlTuTUGTZKRG0VxznZELXo9sBgx0HxfE,12519
|
|
254
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/sljit/sljitNativeMIPS_common.c,sha256=3o6ccTuh-QF9iHoyQmoUIA069VlL6BzzrxObEhFblNc,146882
|
|
255
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/sljit/sljitNativePPC_32.c,sha256=dFyWzs6TVfh97Bt4Ze2ZNrSXsPmF6tWuPdev3v37dIA,17455
|
|
256
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/sljit/sljitNativePPC_64.c,sha256=eW5iy3mnaqv_9FO8xRbX5_Brc71928bZ0pIYVRZU0LM,24461
|
|
257
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/sljit/sljitNativePPC_common.c,sha256=Lt6k7gxJ11Gr8DtfvYOaWH0FeCqsN5ekUAT53r7LMAY,100479
|
|
258
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/sljit/sljitNativeRISCV_32.c,sha256=7d-y8fZ_J6ve8cv2ZYup4msyRWb-V3F_CoKel5uaF1c,5164
|
|
259
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/sljit/sljitNativeRISCV_64.c,sha256=UasfPqQUwMNPBA5PYYT4qfgA9vdKy-LFyv5WuMRnvck,7186
|
|
260
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/sljit/sljitNativeRISCV_common.c,sha256=7iN07E8ZTiM7j9YWMfAwVbReF2fUp232E9qRHyBSIIw,102021
|
|
261
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/sljit/sljitNativeS390X.c,sha256=IgubFXnu3-JWQdo7IzZtxnBf1zDpwps2tutexy7vNSY,133682
|
|
262
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/sljit/sljitNativeX86_32.c,sha256=wgvui0Wffm5ywQHdqbMgaksOaYOAMeWBtMm9fVTOKuo,46526
|
|
263
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/sljit/sljitNativeX86_64.c,sha256=_7sqCB6dsfU0bd8WdbHtKRPZ57qZ43mbIVw0ouEaqTc,38310
|
|
264
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/sljit/sljitNativeX86_common.c,sha256=hoBsCLS6MmGtRMq3oNEsrb6vmjmXrWZKqBg-e8eBKUQ,150250
|
|
265
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/sljit/sljitSerialize.c,sha256=lAb_zevo2ozlEEIQvQjnSgKeITZtEfQUdW4ZRWEGub4,17078
|
|
266
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/sljit/sljitUtils.c,sha256=pvhI4755ObouK1MEITSXg3trZ9xDOmO6ipaUf2qwbFA,10430
|
|
267
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/sljit/allocator_src/sljitExecAllocatorApple.c,sha256=2_jpWtfbm2kcaNYiX1T2A_nvG79B0a_ulr2LEmlDIic,4002
|
|
268
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/sljit/allocator_src/sljitExecAllocatorCore.c,sha256=sGg0Kp6fPU7xqLr46O6qgp2nUcqcOZafLi8DAQ4ngXw,11146
|
|
269
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/sljit/allocator_src/sljitExecAllocatorFreeBSD.c,sha256=i_RO8DFJVMnk3rQBDbOnSxIwh0X3FMofqdQD42sDPRY,2729
|
|
270
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/sljit/allocator_src/sljitExecAllocatorPosix.c,sha256=TKOufXPArlp2We3eViYhdBpeaKgd6oSAVPv_IgYqpqY,2105
|
|
271
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/sljit/allocator_src/sljitExecAllocatorWindows.c,sha256=doj5RQJg6XVDmmr8riuCA5klj89-2IPl7iR3Y_6IYWg,1808
|
|
272
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/sljit/allocator_src/sljitProtExecAllocatorNetBSD.c,sha256=e6ZIGetf91rI-fmNMJLsshMvCa4diC3WKbrciET0E1U,2598
|
|
273
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/sljit/allocator_src/sljitProtExecAllocatorPosix.c,sha256=HyCBsBX0n-0SDZLI2ncN57zajKrIy8Msv6T-_fNHzAE,4397
|
|
274
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/sljit/allocator_src/sljitWXExecAllocatorPosix.c,sha256=Ymd7_ik9ceoy8r6NoZnkHpAMNN3ZPX1sUi_-GYjBxaY,4791
|
|
275
|
+
tpyc/_data/runtime/cpp/third_party/pcre2/src/sljit/allocator_src/sljitWXExecAllocatorWindows.c,sha256=7YQFp1niVK0y_lb43StrXAHrreGcXkt4mShQuw2fjz0,3795
|
|
276
|
+
tpyc/_data/docs/LANGUAGE_FEATURES.md,sha256=phkN1MsclAX88Qqs5KdiKRtcM14ozRspbCPaBB_OiT4,397932
|
|
277
|
+
tpyc/_data/docs/STDLIB_ROADMAP.md,sha256=7bfNYWGHqCpkvZEjl6O-rixSwO4IKIFIkb1AKgmLnoo,88037
|
|
278
|
+
tpyc/_data/docs/TPY_FOR_AGENTS.md,sha256=5x4I2gvWjwGrZMnvbaQjFXURPnYZ5DSB43akRA4LNDk,21829
|
|
279
|
+
tpyc/_data/lib/tpy/_functools_macros.py,sha256=wgSn8HI8zmEEmVMWivcRxi9FmTOVey4U067H5eUAkgE,3300
|
|
280
|
+
tpyc/_data/lib/tpy/_macro_helpers.py,sha256=ArMI6N_JeuviDOVUoRPodqN0DlqnvIcMa3EB--nS2g4,5429
|
|
281
|
+
tpyc/_data/lib/tpy/argparse.py,sha256=FV2EUwCS01QmE9CyXo0v9eh-ffUjvu2B9npxRiwIbCw,84800
|
|
282
|
+
tpyc/_data/lib/tpy/base64.py,sha256=i_DAQ3POfVVxufOIHy-vb8M-gf6ZiMvRSMHwGAWX7ZE,15265
|
|
283
|
+
tpyc/_data/lib/tpy/bisect.py,sha256=PpAT6XdqmeZH_FDKu0DrJrQNLrrLIGvm3pF9I1bIwNE,1037
|
|
284
|
+
tpyc/_data/lib/tpy/builtins.py,sha256=S3enLc2jHObgNlHWJwVqOlY--PeXirKxroRNoDX3zRM,1957
|
|
285
|
+
tpyc/_data/lib/tpy/dataclasses.py,sha256=eyo-oZW77bSSn_3L7dhOtmp9n5kB_YS-phC7Py9Hqsw,14283
|
|
286
|
+
tpyc/_data/lib/tpy/enum.py,sha256=KeO3UeVL59lPOWjtHs6XPnwOpWkdou9teAJmvko2wp0,533
|
|
287
|
+
tpyc/_data/lib/tpy/functools.py,sha256=C5I9Au15V3cuiv41yhgD6JtLBflp5E3Ui-xhj4mimH0,1055
|
|
288
|
+
tpyc/_data/lib/tpy/hashlib.py,sha256=gynhqu11hlBmOIiPn01GyuHNPsdKFF0qA5AM9jqCB9I,8458
|
|
289
|
+
tpyc/_data/lib/tpy/heapq.py,sha256=AIDxWsLlciMwUg3hIhBACmAaqMfTxT8NVnJvqZ2IKSk,4410
|
|
290
|
+
tpyc/_data/lib/tpy/io.py,sha256=Ras7ryjQjpKUg1H5GpNn6Jz83i-95yWPPpD-AzQBKYg,12531
|
|
291
|
+
tpyc/_data/lib/tpy/json.py,sha256=ROubQMNiGreSZuVM2DIPJ87s-iW9fChEk8szg5zAt8M,7651
|
|
292
|
+
tpyc/_data/lib/tpy/math.py,sha256=u4lrGZnZZ7X3FUXdG_VMdUFfUPa-Hb6U8aIinAO0skA,11616
|
|
293
|
+
tpyc/_data/lib/tpy/random.py,sha256=FiXDJftnxxEk2mHb7p8qeEDQzH0N2GggoW7fTqtEvAg,24236
|
|
294
|
+
tpyc/_data/lib/tpy/re.py,sha256=hvi-jbbkmPXbdvpl7iE2mr01gAggh4faOPH1MJfLkDI,20348
|
|
295
|
+
tpyc/_data/lib/tpy/socket.py,sha256=NkmbqhyTfgnKqcB7FIPb6eq8oqVGcWEXbAy8a5ubZZ0,15459
|
|
296
|
+
tpyc/_data/lib/tpy/struct.py,sha256=_9alTFoPPxYyOvkJZIS4kxkMfKB070bq5_RUthmGRMU,5569
|
|
297
|
+
tpyc/_data/lib/tpy/sys.py,sha256=2XSo1WaN8RQI6tiNuPb7RQv5mW-LXd6DsNAuWoXpg14,971
|
|
298
|
+
tpyc/_data/lib/tpy/time.py,sha256=4tXEPEMe2ZJVJooq7q6XOMo5E8Kh4ir23s-AtRugbCs,1159
|
|
299
|
+
tpyc/_data/lib/tpy/typing.py,sha256=GosX1wd-z3Od8lKRL4V649E3uFnH3CcSJliuKGAapkM,495
|
|
300
|
+
tpyc/_data/lib/tpy/_bindings/__init__.py,sha256=RQ7escgy7v7l9Ft6sTdQrBgrX5QvRz-MeWCNnTOwpp0,256
|
|
301
|
+
tpyc/_data/lib/tpy/_bindings/pcre2.py,sha256=UJII77r4DRGZP-rhPRj-f5zLb17CGiOw8YYBef_NvU0,7152
|
|
302
|
+
tpyc/_data/lib/tpy/_bindings/posix_socket.py,sha256=00yMohQ41zb6XNfOvn9B9Yq8m9Tj8mBSEnEbpLMiiNY,6362
|
|
303
|
+
tpyc/_data/lib/tpy/asyncio/__init__.py,sha256=5MEYeopd8vfwXo8h_Smh7sl7ZF7vzCpmHWs_Z4AXJ7g,29541
|
|
304
|
+
tpyc/_data/lib/tpy/asyncio/_executor.py,sha256=DB1B72ETkRdFLDjzzW--cNuYuD1_9Ow9Jhh1esaxmPI,18905
|
|
305
|
+
tpyc/_data/lib/tpy/tplib/__init__.py,sha256=vPiQI-waG0ycqcBWfclZ7GQ1fqug1EhJwwYzh-wNXec,487
|
|
306
|
+
tpyc/_data/lib/tpy/tplib/array_list.py,sha256=d0Ya8MtwvGyKGvX8hdXylvGMaaXLX6t0YKFGswepXBw,6708
|
|
307
|
+
tpyc/_data/lib/tpy/tplib/box.py,sha256=gppdI1YeeFw36KEf8f6s8VEuYFZH-GPPhshVTXw76KY,2007
|
|
308
|
+
tpyc/_data/lib/tpy/tplib/fix_str.py,sha256=tp9qeQBbCrbARR1Gu2Ftj6USMuxuxPjef_pjivhu85A,2427
|
|
309
|
+
tpyc/_data/lib/tpy/tplib/rc.py,sha256=JIi71TlIL5vdLt-GBpudYSmqW_URajEOOFAn3RydlH4,7794
|
|
310
|
+
tpyc/_data/lib/tpy/tplib/json/__init__.py,sha256=j2wn6ipKBuZCPKXou1M29Yo8E7yFOs6hJEZIz9Mce7E,152
|
|
311
|
+
tpyc/_data/lib/tpy/tplib/json/model.py,sha256=RFI0BrHCRq2UFwoaecsAVgCPoRoGRizg4QAYlIfeBi4,31177
|
|
312
|
+
tpyc/_data/lib/tpy/tplib/json/parser.py,sha256=jzATrS0lJw_SaHmsCqbH4gfRhtDm3TQl2lnbXGiYXPw,15333
|
|
313
|
+
tpyc/_data/lib/tpy/tplib/json/writer.py,sha256=IQRdqs6WMgrGT_2HeTotmpGkh1H5W50Mt4o-bsosXM4,5760
|
|
314
|
+
tpyc/_data/lib/tpy/tpy/__init__.py,sha256=41xkcfLRwRqQlNxDjKu6fOAc0lrjNp43Q2Fe2H7A0Bw,3308
|
|
315
|
+
tpyc/_data/lib/tpy/tpy/_version.py,sha256=4DMXuS84H0KnHTqePacrXbp6OxQN28IJOiKBfv42mdA,812
|
|
316
|
+
tpyc/_data/lib/tpy/tpy/bits.py,sha256=2j2QNUeIQIPaEG57Q9eHq77oBIAPwaiWQxMMIME-7vw,1022
|
|
317
|
+
tpyc/_data/lib/tpy/tpy/extern.py,sha256=_nMc9WVWcf7GRZyRUsl1L7xxWoPupu05mQuCzvTTxb0,259
|
|
318
|
+
tpyc/_data/lib/tpy/tpy/mem.py,sha256=bwG3fSnjhxZ4Q7wVTpbJAFBYMMc6Rx4NaeJRnPIfOFQ,1873
|
|
319
|
+
tpyc/_data/lib/tpy/tpy/unsafe.py,sha256=KBFXl-KmpoCohZ50L7dzuMXggGm7vMExrldMn5UpzU8,8019
|
|
320
|
+
tpyc/_data/lib/tpy/tpy/version.py,sha256=8TJSgmIx-vkYF-3t6YqgbzPyPxVlHX1hlnOjfxu0xRU,868
|
|
321
|
+
tpyc/_data/lib/tpy/tpy/_bootstrap/__init__.py,sha256=rU83kRo2oWnkPw2eIbybY1c3KavXGfX1PJPiFoR962U,266
|
|
322
|
+
tpyc/_data/lib/tpy/tpy/_bootstrap/_decorators.py,sha256=LhdeSO2kZtA7BgzdaQm4MglFXO7w9A4HYiya5MJLTzw,1103
|
|
323
|
+
tpyc/_data/lib/tpy/tpy/_bootstrap/_extern.py,sha256=h2ENTuDlvbEIa1ctf1z2LRzc2CxHLB_sB3Ty_Z9etF0,2808
|
|
324
|
+
tpyc/_data/lib/tpy/tpy/_builtins/__init__.py,sha256=A3yAO7csfa62LFZLIgZf2-EhiRqmLBauoxATG-Sq4GQ,887
|
|
325
|
+
tpyc/_data/lib/tpy/tpy/_builtins/_bytes.py,sha256=89kaGOhwmlXLxC_JXFDPEPWG0WP61lHUyEM22aG5aU4,10427
|
|
326
|
+
tpyc/_data/lib/tpy/tpy/_builtins/_dict.py,sha256=zAhJshmjCweLQZX8rKL196YM6MEJwcCaTQFJVdExp-c,3972
|
|
327
|
+
tpyc/_data/lib/tpy/tpy/_builtins/_exceptions.py,sha256=H06a781sZNeeep456SOhA6LJ5QwavGFO8HB5r7lfXDg,4742
|
|
328
|
+
tpyc/_data/lib/tpy/tpy/_builtins/_funcs.py,sha256=nzk5EMsDQ0sz_TwebHfEoscqpX5zP5a5j-8M26nmJI0,14364
|
|
329
|
+
tpyc/_data/lib/tpy/tpy/_builtins/_io.py,sha256=1mfzWX4p09Ef3oQx17_p9alSKD4lVAzuit0T0FvPHng,2272
|
|
330
|
+
tpyc/_data/lib/tpy/tpy/_builtins/_list.py,sha256=mpPJy2WcnEjF4g134Yap9mDTV_4jSw92y2arknr-F5w,3753
|
|
331
|
+
tpyc/_data/lib/tpy/tpy/_builtins/_range.py,sha256=F6wDqFnW-dNSJuokxnPhwPSneUFeQeImp0gnrEBgfjs,1536
|
|
332
|
+
tpyc/_data/lib/tpy/tpy/_builtins/_set.py,sha256=QuflEy7-GdPdBZwHGBMS9wJ2uM_kCP-59OlZsfsQgFQ,3993
|
|
333
|
+
tpyc/_data/lib/tpy/tpy/_builtins/_super.py,sha256=C0rGUpkImmwSds4F9rsM7KlDWMzBTw7EclZ3qgCWA4w,482
|
|
334
|
+
tpyc/_data/lib/tpy/tpy/_builtins/_types.py,sha256=5lC7jqoUefIhHcNcOSiHLWv96x5jYWwKGkZGPCZaNPs,21241
|
|
335
|
+
tpyc/_data/lib/tpy/tpy/_core/__init__.py,sha256=iOjMiu9oV0t3u4lqraLfU_hTUjGxVJ8Gvj6TaXWp69U,1089
|
|
336
|
+
tpyc/_data/lib/tpy/tpy/_core/_bytes_view.py,sha256=e9g3yv6erNy9GwKD-XGOfo2hH2OUInwclD9vyHyTxJU,3312
|
|
337
|
+
tpyc/_data/lib/tpy/tpy/_core/_containers.py,sha256=bPMdUq2jutz0pwNvBxmn1lD8q2Pl7FH3uVm0eopENEM,5002
|
|
338
|
+
tpyc/_data/lib/tpy/tpy/_core/_functions.py,sha256=0ke8u0_chQS6O_RCaUFHYY6f0VGLBnLSqgC31M8BVuE,1001
|
|
339
|
+
tpyc/_data/lib/tpy/tpy/_core/_types.py,sha256=HZKfXL4ue5YFWh2jaGoTyxQ07msoQc2Xy63KE81lXzo,75269
|
|
340
|
+
tpyc/_data/lib/tpy/tpy/_typing/__init__.py,sha256=Hohk7Qj_awxt2Td8AP9V9RY-6BF_6gmO6ZtgTHAJUAw,1824
|
|
341
|
+
tpyc/_data/lib/tpy/tpy/coro/__init__.py,sha256=kj1-KdNAtrztPzIhF5vo5zmnMtyiKU9rupmx0aZ3ltg,4904
|
|
342
|
+
tpy_lang-0.3.0.dist-info/METADATA,sha256=nZXvJH0eSzxga9qX875ayrynMYV2WE7-HZgY4m7v3mU,7228
|
|
343
|
+
tpy_lang-0.3.0.dist-info/WHEEL,sha256=mffPy8wBnZQn2VnJUU5jE99KsxaSfiyMHV9Yt0aLVxs,87
|
|
344
|
+
tpy_lang-0.3.0.dist-info/entry_points.txt,sha256=zuX9hv-TAkFnIFx1YppNUXRVEATOpHW3osSTV1jmhjY,68
|
|
345
|
+
tpy_lang-0.3.0.dist-info/RECORD,,
|