pyrefly 0.9.0__tar.gz → 0.10.0__tar.gz
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.
- {pyrefly-0.9.0 → pyrefly-0.10.0}/PKG-INFO +1 -1
- {pyrefly-0.9.0 → pyrefly-0.10.0}/pyproject.toml +1 -1
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/Cargo.lock +73 -31
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/Cargo.toml +4 -3
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/bin/main.rs +28 -27
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/alt/answers.rs +44 -16
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/alt/attr.rs +41 -25
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/alt/call.rs +15 -5
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/alt/callable.rs +179 -79
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/alt/class/class_field.rs +19 -21
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/alt/class/class_metadata.rs +64 -30
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/alt/class/classdef.rs +44 -31
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/alt/class/dataclass.rs +3 -3
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/alt/class/named_tuple.rs +3 -3
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/alt/class/new_type.rs +3 -3
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/alt/expr.rs +323 -194
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/alt/function.rs +13 -15
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/alt/narrow.rs +61 -46
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/alt/operators.rs +106 -62
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/alt/solve.rs +539 -293
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/alt/special_calls.rs +6 -2
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/alt/specials.rs +23 -7
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/alt/traits.rs +11 -9
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/alt/types/class_metadata.rs +1 -1
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/alt/types/legacy_lookup.rs +1 -1
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/binding/binding.rs +41 -10
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/binding/bindings.rs +60 -20
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/binding/function.rs +2 -2
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/binding/narrow.rs +53 -20
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/binding/pattern.rs +3 -12
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/binding/stmt.rs +36 -8
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/commands/check.rs +59 -19
- pyrefly-0.10.0/pyrefly/lib/commands/config_migration.rs +199 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/commands/lsp.rs +148 -85
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/commands/mod.rs +2 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/commands/run.rs +14 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/config.rs +298 -57
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/dunder.rs +15 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/error/collector.rs +42 -12
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/error/kind.rs +4 -2
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/export/exports.rs +1 -1
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/lib.rs +1 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/metadata.rs +36 -0
- pyrefly-0.10.0/pyrefly/lib/module/ignore.rs +74 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/module/module_info.rs +9 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/module/source_db.rs +3 -1
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/playground.rs +1 -1
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/solver/solver.rs +27 -15
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/solver/subset.rs +53 -26
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/solver/type_order.rs +1 -1
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/state/loader.rs +11 -6
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/state/lsp.rs +1 -1
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/state/state.rs +6 -3
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/test/attributes.rs +30 -5
- pyrefly-0.10.0/pyrefly/lib/test/calls.rs +38 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/test/class_subtyping.rs +40 -2
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/test/constructors.rs +73 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/test/contextual.rs +11 -0
- pyrefly-0.10.0/pyrefly/lib/test/generic_restrictions.rs +190 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/test/imports.rs +42 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/test/legacy_generic.rs +1 -15
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/test/lsp/lsp_interaction.rs +40 -13
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/test/metadata.rs +27 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/test/mod.rs +2 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/test/narrow.rs +23 -1
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/test/new_type.rs +5 -6
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/test/operators.rs +43 -4
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/test/paramspec.rs +7 -8
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/test/simple.rs +10 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/test/tuple.rs +12 -1
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/test/type_var_tuple.rs +6 -8
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/test/typing_self.rs +30 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/test/util.rs +4 -2
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/types/class.rs +22 -30
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/types/display.rs +48 -42
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/types/equality.rs +11 -5
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/types/literal.rs +2 -2
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/types/mod.rs +1 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/types/param_spec.rs +7 -1
- pyrefly-0.10.0/pyrefly/lib/types/quantified.rs +202 -0
- pyrefly-0.10.0/pyrefly/lib/types/stdlib.rs +372 -0
- pyrefly-0.10.0/pyrefly/lib/types/type_info.rs +363 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/types/type_var.rs +10 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/types/type_var_tuple.rs +7 -1
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/types/types.rs +34 -25
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/util/globs.rs +3 -2
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/util/task_heap.rs +8 -5
- {pyrefly-0.9.0 → pyrefly-0.10.0}/pyrefly_derive/src/visit.rs +2 -2
- pyrefly-0.9.0/pyre2/lib/module/ignore.rs +0 -66
- pyrefly-0.9.0/pyre2/lib/types/quantified.rs +0 -109
- pyrefly-0.9.0/pyre2/lib/types/stdlib.rs +0 -336
- pyrefly-0.9.0/pyre2/version.bzl +0 -16
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/.cargo/config.toml +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/.gitignore +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/build.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/alt/class/enums.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/alt/class/mod.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/alt/class/typed_dict.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/alt/mod.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/alt/types/decorated_function.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/alt/types/mod.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/alt/types/yields.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/alt/unwrap.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/binding/class.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/binding/expr.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/binding/mod.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/binding/scope.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/binding/table.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/binding/target.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/commands/buck_check.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/commands/suppress.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/commands/util.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/error/context.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/error/display.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/error/error.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/error/expectation.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/error/legacy.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/error/mod.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/error/style.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/error/summarise.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/export/definitions.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/export/mod.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/export/special.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/graph/calculation.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/graph/index.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/graph/index_map.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/graph/mod.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/module/bundled.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/module/display.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/module/finder.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/module/mod.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/module/module_name.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/module/module_path.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/module/short_identifier.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/report/binding_memory.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/report/debug_info.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/report/mod.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/report/trace.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/ruff/ast.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/ruff/mod.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/ruff/visitors.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/solver/mod.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/state/dirty.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/state/epoch.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/state/handle.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/state/load.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/state/mod.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/state/require.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/state/steps.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/state/subscriber.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/test/assign.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/test/callable.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/test/class_keywords.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/test/class_overrides.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/test/class_super.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/test/dataclasses.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/test/decorators.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/test/descriptors.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/test/enums.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/test/flow.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/test/literal.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/test/lsp/completion.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/test/lsp/definition.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/test/lsp/hover.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/test/lsp/inlay_hint.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/test/lsp/mod.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/test/lsp/test_files/bar.py +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/test/lsp/test_files/foo.py +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/test/mro.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/test/named_tuple.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/test/overload.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/test/perf.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/test/protocol.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/test/returns.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/test/scope.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/test/state.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/test/suppression.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/test/type_alias.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/test/typed_dict.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/test/variance_inference.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/test/with.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/test/yields.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/types/alias.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/types/annotation.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/types/callable.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/types/lit_int.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/types/module.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/types/qname.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/types/simplify.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/types/special_form.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/types/tuple.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/types/typed_dict.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/util/arc_id.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/util/args.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/util/assert_size.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/util/display.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/util/exclusive_lock.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/util/forgetter.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/util/fs_anyhow.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/util/fs_upward_search.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/util/listing.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/util/lock.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/util/locked_map.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/util/memory.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/util/mod.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/util/no_hash.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/util/notify_watcher.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/util/prelude.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/util/recurser.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/util/thread_pool.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/util/trace.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/util/uniques.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/util/upgrade_lock.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/util/visit.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/util/watcher.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/lib/util/with_hash.rs +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/rust-toolchain +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/__future__.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/__main__.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/_ast.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/_asyncio.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/_bisect.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/_blake2.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/_bootlocale.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/_bz2.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/_codecs.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/_collections_abc.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/_compat_pickle.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/_compression.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/_contextvars.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/_csv.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/_ctypes.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/_curses.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/_curses_panel.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/_dbm.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/_decimal.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/_dummy_thread.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/_dummy_threading.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/_frozen_importlib.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/_frozen_importlib_external.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/_gdbm.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/_hashlib.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/_heapq.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/_imp.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/_interpchannels.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/_interpqueues.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/_interpreters.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/_io.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/_json.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/_locale.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/_lsprof.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/_lzma.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/_markupbase.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/_msi.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/_multibytecodec.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/_operator.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/_osx_support.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/_pickle.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/_posixsubprocess.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/_py_abc.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/_pydecimal.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/_queue.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/_random.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/_sitebuiltins.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/_socket.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/_sqlite3.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/_ssl.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/_stat.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/_struct.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/_thread.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/_threading_local.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/_tkinter.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/_tracemalloc.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/_typeshed/__init__.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/_typeshed/dbapi.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/_typeshed/importlib.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/_typeshed/wsgi.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/_typeshed/xml.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/_warnings.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/_weakref.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/_weakrefset.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/_winapi.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/abc.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/aifc.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/antigravity.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/argparse.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/array.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/ast.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/asynchat.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/asyncio/__init__.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/asyncio/base_events.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/asyncio/base_futures.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/asyncio/base_subprocess.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/asyncio/base_tasks.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/asyncio/constants.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/asyncio/coroutines.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/asyncio/events.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/asyncio/exceptions.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/asyncio/format_helpers.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/asyncio/futures.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/asyncio/locks.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/asyncio/log.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/asyncio/mixins.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/asyncio/proactor_events.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/asyncio/protocols.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/asyncio/queues.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/asyncio/runners.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/asyncio/selector_events.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/asyncio/sslproto.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/asyncio/staggered.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/asyncio/streams.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/asyncio/subprocess.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/asyncio/taskgroups.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/asyncio/tasks.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/asyncio/threads.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/asyncio/timeouts.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/asyncio/transports.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/asyncio/trsock.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/asyncio/unix_events.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/asyncio/windows_events.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/asyncio/windows_utils.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/asyncore.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/atexit.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/audioop.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/base64.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/bdb.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/binascii.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/binhex.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/bisect.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/builtins.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/bz2.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/cProfile.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/calendar.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/cgi.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/cgitb.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/chunk.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/cmath.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/cmd.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/code.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/codecs.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/codeop.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/collections/__init__.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/collections/abc.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/colorsys.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/compileall.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/concurrent/__init__.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/concurrent/futures/__init__.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/concurrent/futures/_base.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/concurrent/futures/process.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/concurrent/futures/thread.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/configparser.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/contextlib.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/contextvars.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/copy.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/copyreg.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/crypt.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/csv.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/ctypes/__init__.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/ctypes/_endian.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/ctypes/macholib/__init__.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/ctypes/macholib/dyld.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/ctypes/macholib/dylib.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/ctypes/macholib/framework.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/ctypes/util.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/ctypes/wintypes.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/curses/__init__.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/curses/ascii.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/curses/has_key.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/curses/panel.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/curses/textpad.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/dataclasses.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/datetime.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/dbm/__init__.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/dbm/dumb.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/dbm/gnu.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/dbm/ndbm.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/dbm/sqlite3.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/decimal.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/difflib.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/dis.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/distutils/__init__.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/distutils/_msvccompiler.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/distutils/archive_util.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/distutils/bcppcompiler.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/distutils/ccompiler.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/distutils/cmd.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/distutils/command/__init__.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/distutils/command/bdist.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/distutils/command/bdist_dumb.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/distutils/command/bdist_msi.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/distutils/command/bdist_packager.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/distutils/command/bdist_rpm.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/distutils/command/bdist_wininst.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/distutils/command/build.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/distutils/command/build_clib.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/distutils/command/build_ext.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/distutils/command/build_py.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/distutils/command/build_scripts.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/distutils/command/check.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/distutils/command/clean.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/distutils/command/config.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/distutils/command/install.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/distutils/command/install_data.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/distutils/command/install_egg_info.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/distutils/command/install_headers.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/distutils/command/install_lib.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/distutils/command/install_scripts.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/distutils/command/register.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/distutils/command/sdist.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/distutils/command/upload.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/distutils/config.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/distutils/core.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/distutils/cygwinccompiler.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/distutils/debug.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/distutils/dep_util.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/distutils/dir_util.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/distutils/dist.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/distutils/errors.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/distutils/extension.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/distutils/fancy_getopt.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/distutils/file_util.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/distutils/filelist.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/distutils/log.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/distutils/msvccompiler.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/distutils/spawn.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/distutils/sysconfig.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/distutils/text_file.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/distutils/unixccompiler.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/distutils/util.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/distutils/version.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/doctest.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/dummy_threading.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/email/__init__.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/email/_header_value_parser.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/email/_policybase.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/email/base64mime.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/email/charset.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/email/contentmanager.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/email/encoders.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/email/errors.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/email/feedparser.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/email/generator.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/email/header.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/email/headerregistry.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/email/iterators.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/email/message.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/email/mime/__init__.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/email/mime/application.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/email/mime/audio.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/email/mime/base.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/email/mime/image.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/email/mime/message.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/email/mime/multipart.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/email/mime/nonmultipart.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/email/mime/text.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/email/parser.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/email/policy.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/email/quoprimime.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/email/utils.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/__init__.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/aliases.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/ascii.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/base64_codec.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/big5.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/big5hkscs.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/bz2_codec.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/charmap.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/cp037.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/cp1006.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/cp1026.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/cp1125.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/cp1140.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/cp1250.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/cp1251.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/cp1252.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/cp1253.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/cp1254.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/cp1255.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/cp1256.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/cp1257.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/cp1258.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/cp273.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/cp424.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/cp437.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/cp500.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/cp720.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/cp737.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/cp775.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/cp850.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/cp852.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/cp855.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/cp856.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/cp857.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/cp858.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/cp860.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/cp861.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/cp862.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/cp863.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/cp864.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/cp865.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/cp866.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/cp869.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/cp874.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/cp875.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/cp932.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/cp949.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/cp950.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/euc_jis_2004.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/euc_jisx0213.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/euc_jp.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/euc_kr.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/gb18030.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/gb2312.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/gbk.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/hex_codec.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/hp_roman8.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/hz.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/idna.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/iso2022_jp.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/iso2022_jp_1.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/iso2022_jp_2.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/iso2022_jp_2004.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/iso2022_jp_3.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/iso2022_jp_ext.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/iso2022_kr.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/iso8859_1.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/iso8859_10.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/iso8859_11.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/iso8859_13.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/iso8859_14.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/iso8859_15.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/iso8859_16.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/iso8859_2.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/iso8859_3.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/iso8859_4.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/iso8859_5.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/iso8859_6.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/iso8859_7.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/iso8859_8.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/iso8859_9.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/johab.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/koi8_r.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/koi8_t.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/koi8_u.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/kz1048.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/latin_1.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/mac_arabic.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/mac_centeuro.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/mac_croatian.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/mac_cyrillic.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/mac_farsi.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/mac_greek.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/mac_iceland.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/mac_latin2.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/mac_roman.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/mac_romanian.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/mac_turkish.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/mbcs.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/oem.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/palmos.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/ptcp154.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/punycode.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/quopri_codec.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/raw_unicode_escape.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/rot_13.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/shift_jis.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/shift_jis_2004.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/shift_jisx0213.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/tis_620.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/undefined.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/unicode_escape.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/utf_16.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/utf_16_be.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/utf_16_le.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/utf_32.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/utf_32_be.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/utf_32_le.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/utf_7.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/utf_8.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/utf_8_sig.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/uu_codec.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/encodings/zlib_codec.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/ensurepip/__init__.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/enum.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/errno.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/faulthandler.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/fcntl.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/filecmp.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/fileinput.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/fnmatch.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/formatter.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/fractions.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/ftplib.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/functools.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/gc.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/genericpath.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/getopt.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/getpass.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/gettext.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/glob.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/graphlib.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/grp.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/gzip.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/hashlib.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/heapq.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/hmac.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/html/__init__.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/html/entities.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/html/parser.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/http/__init__.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/http/client.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/http/cookiejar.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/http/cookies.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/http/server.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/imaplib.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/imghdr.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/imp.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/importlib/__init__.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/importlib/_abc.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/importlib/_bootstrap.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/importlib/_bootstrap_external.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/importlib/abc.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/importlib/machinery.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/importlib/metadata/__init__.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/importlib/metadata/_meta.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/importlib/metadata/diagnose.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/importlib/readers.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/importlib/resources/__init__.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/importlib/resources/_common.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/importlib/resources/_functional.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/importlib/resources/abc.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/importlib/resources/readers.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/importlib/resources/simple.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/importlib/simple.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/importlib/util.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/inspect.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/io.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/ipaddress.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/itertools.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/json/__init__.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/json/decoder.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/json/encoder.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/json/scanner.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/json/tool.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/keyword.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lib2to3/__init__.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lib2to3/btm_matcher.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lib2to3/fixer_base.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lib2to3/fixes/__init__.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lib2to3/fixes/fix_apply.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lib2to3/fixes/fix_asserts.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lib2to3/fixes/fix_basestring.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lib2to3/fixes/fix_buffer.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lib2to3/fixes/fix_dict.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lib2to3/fixes/fix_except.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lib2to3/fixes/fix_exec.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lib2to3/fixes/fix_execfile.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lib2to3/fixes/fix_exitfunc.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lib2to3/fixes/fix_filter.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lib2to3/fixes/fix_funcattrs.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lib2to3/fixes/fix_future.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lib2to3/fixes/fix_getcwdu.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lib2to3/fixes/fix_has_key.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lib2to3/fixes/fix_idioms.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lib2to3/fixes/fix_import.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lib2to3/fixes/fix_imports.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lib2to3/fixes/fix_imports2.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lib2to3/fixes/fix_input.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lib2to3/fixes/fix_intern.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lib2to3/fixes/fix_isinstance.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lib2to3/fixes/fix_itertools.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lib2to3/fixes/fix_itertools_imports.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lib2to3/fixes/fix_long.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lib2to3/fixes/fix_map.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lib2to3/fixes/fix_metaclass.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lib2to3/fixes/fix_methodattrs.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lib2to3/fixes/fix_ne.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lib2to3/fixes/fix_next.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lib2to3/fixes/fix_nonzero.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lib2to3/fixes/fix_numliterals.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lib2to3/fixes/fix_operator.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lib2to3/fixes/fix_paren.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lib2to3/fixes/fix_print.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lib2to3/fixes/fix_raise.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lib2to3/fixes/fix_raw_input.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lib2to3/fixes/fix_reduce.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lib2to3/fixes/fix_reload.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lib2to3/fixes/fix_renames.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lib2to3/fixes/fix_repr.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lib2to3/fixes/fix_set_literal.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lib2to3/fixes/fix_standarderror.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lib2to3/fixes/fix_sys_exc.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lib2to3/fixes/fix_throw.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lib2to3/fixes/fix_tuple_params.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lib2to3/fixes/fix_types.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lib2to3/fixes/fix_unicode.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lib2to3/fixes/fix_urllib.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lib2to3/fixes/fix_ws_comma.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lib2to3/fixes/fix_xrange.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lib2to3/fixes/fix_xreadlines.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lib2to3/fixes/fix_zip.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lib2to3/main.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lib2to3/pgen2/__init__.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lib2to3/pgen2/driver.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lib2to3/pgen2/grammar.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lib2to3/pgen2/literals.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lib2to3/pgen2/parse.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lib2to3/pgen2/pgen.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lib2to3/pgen2/token.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lib2to3/pgen2/tokenize.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lib2to3/pygram.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lib2to3/pytree.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lib2to3/refactor.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/linecache.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/locale.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/logging/__init__.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/logging/config.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/logging/handlers.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/lzma.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/mailbox.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/mailcap.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/marshal.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/math.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/mimetypes.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/mmap.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/modulefinder.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/msilib/__init__.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/msilib/schema.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/msilib/sequence.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/msilib/text.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/msvcrt.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/multiprocessing/__init__.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/multiprocessing/connection.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/multiprocessing/context.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/multiprocessing/dummy/__init__.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/multiprocessing/dummy/connection.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/multiprocessing/forkserver.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/multiprocessing/heap.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/multiprocessing/managers.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/multiprocessing/pool.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/multiprocessing/popen_fork.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/multiprocessing/popen_forkserver.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/multiprocessing/popen_spawn_posix.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/multiprocessing/popen_spawn_win32.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/multiprocessing/process.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/multiprocessing/queues.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/multiprocessing/reduction.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/multiprocessing/resource_sharer.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/multiprocessing/resource_tracker.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/multiprocessing/shared_memory.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/multiprocessing/sharedctypes.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/multiprocessing/spawn.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/multiprocessing/synchronize.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/multiprocessing/util.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/netrc.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/nis.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/nntplib.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/nt.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/ntpath.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/nturl2path.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/numbers.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/opcode.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/operator.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/optparse.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/os/__init__.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/os/path.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/ossaudiodev.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/parser.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/pathlib.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/pdb.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/pickle.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/pickletools.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/pipes.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/pkgutil.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/platform.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/plistlib.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/poplib.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/posix.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/posixpath.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/pprint.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/profile.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/pstats.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/pty.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/pwd.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/py_compile.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/pyclbr.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/pydoc.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/pydoc_data/__init__.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/pydoc_data/topics.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/pyexpat/__init__.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/pyexpat/errors.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/pyexpat/model.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/queue.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/quopri.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/random.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/re.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/readline.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/reprlib.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/resource.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/rlcompleter.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/runpy.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/sched.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/secrets.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/select.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/selectors.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/shelve.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/shlex.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/shutil.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/signal.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/site.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/smtpd.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/smtplib.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/sndhdr.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/socket.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/socketserver.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/spwd.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/sqlite3/__init__.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/sqlite3/dbapi2.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/sqlite3/dump.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/sre_compile.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/sre_constants.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/sre_parse.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/ssl.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/stat.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/statistics.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/string.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/stringprep.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/struct.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/subprocess.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/sunau.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/symbol.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/symtable.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/sys/__init__.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/sys/_monitoring.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/sysconfig.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/syslog.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/tabnanny.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/tarfile.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/telnetlib.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/tempfile.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/termios.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/textwrap.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/this.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/threading.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/time.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/timeit.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/tkinter/__init__.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/tkinter/colorchooser.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/tkinter/commondialog.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/tkinter/constants.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/tkinter/dialog.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/tkinter/dnd.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/tkinter/filedialog.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/tkinter/font.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/tkinter/messagebox.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/tkinter/scrolledtext.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/tkinter/simpledialog.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/tkinter/tix.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/tkinter/ttk.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/token.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/tokenize.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/tomllib.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/trace.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/traceback.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/tracemalloc.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/tty.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/turtle.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/types.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/typing.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/typing_extensions.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/unicodedata.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/unittest/__init__.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/unittest/_log.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/unittest/async_case.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/unittest/case.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/unittest/loader.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/unittest/main.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/unittest/mock.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/unittest/result.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/unittest/runner.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/unittest/signals.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/unittest/suite.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/unittest/util.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/urllib/__init__.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/urllib/error.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/urllib/parse.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/urllib/request.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/urllib/response.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/urllib/robotparser.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/uu.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/uuid.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/warnings.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/wave.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/weakref.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/webbrowser.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/winreg.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/winsound.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/wsgiref/__init__.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/wsgiref/handlers.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/wsgiref/headers.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/wsgiref/simple_server.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/wsgiref/types.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/wsgiref/util.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/wsgiref/validate.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/xdrlib.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/xml/__init__.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/xml/dom/NodeFilter.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/xml/dom/__init__.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/xml/dom/domreg.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/xml/dom/expatbuilder.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/xml/dom/minicompat.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/xml/dom/minidom.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/xml/dom/pulldom.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/xml/dom/xmlbuilder.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/xml/etree/ElementInclude.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/xml/etree/ElementPath.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/xml/etree/ElementTree.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/xml/etree/__init__.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/xml/etree/cElementTree.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/xml/parsers/__init__.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/xml/parsers/expat/__init__.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/xml/parsers/expat/errors.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/xml/parsers/expat/model.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/xml/sax/__init__.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/xml/sax/_exceptions.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/xml/sax/expatreader.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/xml/sax/handler.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/xml/sax/saxutils.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/xml/sax/xmlreader.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/xmlrpc/__init__.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/xmlrpc/client.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/xmlrpc/server.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/xxlimited.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/zipapp.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/zipfile/__init__.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/zipfile/_path/__init__.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/zipfile/_path/glob.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/zipimport.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/zlib.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/zoneinfo/__init__.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/zoneinfo/_common.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed/zoneinfo/_tzpath.pyi +0 -0
- {pyrefly-0.9.0/pyre2 → pyrefly-0.10.0/pyrefly}/third_party/typeshed_metadata.json +0 -0
- {pyrefly-0.9.0 → pyrefly-0.10.0}/pyrefly_derive/Cargo.toml +0 -0
- {pyrefly-0.9.0 → pyrefly-0.10.0}/pyrefly_derive/src/lib.rs +0 -0
- {pyrefly-0.9.0 → pyrefly-0.10.0}/pyrefly_derive/src/type_eq.rs +0 -0
- {pyrefly-0.9.0 → pyrefly-0.10.0}/rust-toolchain +0 -0
@@ -261,9 +261,9 @@ dependencies = [
|
|
261
261
|
|
262
262
|
[[package]]
|
263
263
|
name = "cc"
|
264
|
-
version = "1.2.
|
264
|
+
version = "1.2.18"
|
265
265
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
266
|
-
checksum = "
|
266
|
+
checksum = "525046617d8376e3db1deffb079e91cef90a89fc3ca5c185bbf8c9ecdd15cd5c"
|
267
267
|
dependencies = [
|
268
268
|
"jobserver",
|
269
269
|
"libc",
|
@@ -290,9 +290,9 @@ dependencies = [
|
|
290
290
|
|
291
291
|
[[package]]
|
292
292
|
name = "clap"
|
293
|
-
version = "4.5.
|
293
|
+
version = "4.5.35"
|
294
294
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
295
|
-
checksum = "
|
295
|
+
checksum = "d8aa86934b44c19c50f87cc2790e19f54f7a67aedb64101c2e1a2e5ecfb73944"
|
296
296
|
dependencies = [
|
297
297
|
"clap_builder",
|
298
298
|
"clap_derive",
|
@@ -300,9 +300,9 @@ dependencies = [
|
|
300
300
|
|
301
301
|
[[package]]
|
302
302
|
name = "clap_builder"
|
303
|
-
version = "4.5.
|
303
|
+
version = "4.5.35"
|
304
304
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
305
|
-
checksum = "
|
305
|
+
checksum = "2414dbb2dd0695280da6ea9261e327479e9d37b0630f6b53ba2a11c60c679fd9"
|
306
306
|
dependencies = [
|
307
307
|
"anstream",
|
308
308
|
"anstyle",
|
@@ -458,9 +458,9 @@ dependencies = [
|
|
458
458
|
|
459
459
|
[[package]]
|
460
460
|
name = "deranged"
|
461
|
-
version = "0.4.
|
461
|
+
version = "0.4.0"
|
462
462
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
463
|
-
checksum = "
|
463
|
+
checksum = "9c9e6a11ca8224451684bc0d7d5a7adbf8f2fd6887261a1cfc3c0432f9d4068e"
|
464
464
|
dependencies = [
|
465
465
|
"powerfmt",
|
466
466
|
]
|
@@ -552,9 +552,9 @@ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
552
552
|
|
553
553
|
[[package]]
|
554
554
|
name = "errno"
|
555
|
-
version = "0.3.
|
555
|
+
version = "0.3.11"
|
556
556
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
557
|
-
checksum = "
|
557
|
+
checksum = "976dd42dc7e85965fe702eb8164f21f450704bdde31faefd6471dba214cb594e"
|
558
558
|
dependencies = [
|
559
559
|
"libc",
|
560
560
|
"windows-sys 0.59.0",
|
@@ -769,6 +769,15 @@ version = "0.5.0"
|
|
769
769
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
770
770
|
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
771
771
|
|
772
|
+
[[package]]
|
773
|
+
name = "home"
|
774
|
+
version = "0.5.11"
|
775
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
776
|
+
checksum = "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf"
|
777
|
+
dependencies = [
|
778
|
+
"windows-sys 0.59.0",
|
779
|
+
]
|
780
|
+
|
772
781
|
[[package]]
|
773
782
|
name = "human_bytes"
|
774
783
|
version = "0.4.3"
|
@@ -940,9 +949,9 @@ dependencies = [
|
|
940
949
|
|
941
950
|
[[package]]
|
942
951
|
name = "indexmap"
|
943
|
-
version = "2.
|
952
|
+
version = "2.9.0"
|
944
953
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
945
|
-
checksum = "
|
954
|
+
checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
|
946
955
|
dependencies = [
|
947
956
|
"equivalent",
|
948
957
|
"hashbrown 0.15.2",
|
@@ -1047,10 +1056,11 @@ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
|
1047
1056
|
|
1048
1057
|
[[package]]
|
1049
1058
|
name = "jobserver"
|
1050
|
-
version = "0.1.
|
1059
|
+
version = "0.1.33"
|
1051
1060
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1052
|
-
checksum = "
|
1061
|
+
checksum = "38f262f097c174adebe41eb73d66ae9c06b2844fb0da69969647bbddd9b0538a"
|
1053
1062
|
dependencies = [
|
1063
|
+
"getrandom 0.3.2",
|
1054
1064
|
"libc",
|
1055
1065
|
]
|
1056
1066
|
|
@@ -1104,9 +1114,15 @@ checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
|
|
1104
1114
|
dependencies = [
|
1105
1115
|
"bitflags 2.9.0",
|
1106
1116
|
"libc",
|
1107
|
-
"redox_syscall 0.5.
|
1117
|
+
"redox_syscall 0.5.11",
|
1108
1118
|
]
|
1109
1119
|
|
1120
|
+
[[package]]
|
1121
|
+
name = "linux-raw-sys"
|
1122
|
+
version = "0.4.15"
|
1123
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1124
|
+
checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
|
1125
|
+
|
1110
1126
|
[[package]]
|
1111
1127
|
name = "linux-raw-sys"
|
1112
1128
|
version = "0.9.3"
|
@@ -1199,9 +1215,9 @@ dependencies = [
|
|
1199
1215
|
|
1200
1216
|
[[package]]
|
1201
1217
|
name = "miniz_oxide"
|
1202
|
-
version = "0.8.
|
1218
|
+
version = "0.8.7"
|
1203
1219
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1204
|
-
checksum = "
|
1220
|
+
checksum = "ff70ce3e48ae43fa075863cef62e8b43b71a4f2382229920e0df362592919430"
|
1205
1221
|
dependencies = [
|
1206
1222
|
"adler2",
|
1207
1223
|
]
|
@@ -1369,7 +1385,7 @@ checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
|
|
1369
1385
|
dependencies = [
|
1370
1386
|
"cfg-if",
|
1371
1387
|
"libc",
|
1372
|
-
"redox_syscall 0.5.
|
1388
|
+
"redox_syscall 0.5.11",
|
1373
1389
|
"smallvec",
|
1374
1390
|
"windows-targets 0.52.6",
|
1375
1391
|
]
|
@@ -1560,7 +1576,7 @@ dependencies = [
|
|
1560
1576
|
|
1561
1577
|
[[package]]
|
1562
1578
|
name = "pyrefly"
|
1563
|
-
version = "0.
|
1579
|
+
version = "0.10.0"
|
1564
1580
|
dependencies = [
|
1565
1581
|
"anyhow",
|
1566
1582
|
"append-only-vec",
|
@@ -1608,6 +1624,7 @@ dependencies = [
|
|
1608
1624
|
"tracing",
|
1609
1625
|
"tracing-subscriber",
|
1610
1626
|
"vec1",
|
1627
|
+
"which",
|
1611
1628
|
"zstd",
|
1612
1629
|
]
|
1613
1630
|
|
@@ -1707,9 +1724,9 @@ dependencies = [
|
|
1707
1724
|
|
1708
1725
|
[[package]]
|
1709
1726
|
name = "redox_syscall"
|
1710
|
-
version = "0.5.
|
1727
|
+
version = "0.5.11"
|
1711
1728
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1712
|
-
checksum = "
|
1729
|
+
checksum = "d2f103c6d277498fbceb16e84d317e2a400f160f46904d5f5410848c829511a3"
|
1713
1730
|
dependencies = [
|
1714
1731
|
"bitflags 2.9.0",
|
1715
1732
|
]
|
@@ -1845,14 +1862,27 @@ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
|
|
1845
1862
|
|
1846
1863
|
[[package]]
|
1847
1864
|
name = "rustix"
|
1848
|
-
version = "
|
1865
|
+
version = "0.38.44"
|
1849
1866
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1850
|
-
checksum = "
|
1867
|
+
checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
|
1851
1868
|
dependencies = [
|
1852
1869
|
"bitflags 2.9.0",
|
1853
1870
|
"errno",
|
1854
1871
|
"libc",
|
1855
|
-
"linux-raw-sys",
|
1872
|
+
"linux-raw-sys 0.4.15",
|
1873
|
+
"windows-sys 0.59.0",
|
1874
|
+
]
|
1875
|
+
|
1876
|
+
[[package]]
|
1877
|
+
name = "rustix"
|
1878
|
+
version = "1.0.5"
|
1879
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1880
|
+
checksum = "d97817398dd4bb2e6da002002db259209759911da105da92bec29ccb12cf58bf"
|
1881
|
+
dependencies = [
|
1882
|
+
"bitflags 2.9.0",
|
1883
|
+
"errno",
|
1884
|
+
"libc",
|
1885
|
+
"linux-raw-sys 0.9.3",
|
1856
1886
|
"windows-sys 0.59.0",
|
1857
1887
|
]
|
1858
1888
|
|
@@ -1967,9 +1997,9 @@ dependencies = [
|
|
1967
1997
|
|
1968
1998
|
[[package]]
|
1969
1999
|
name = "smallvec"
|
1970
|
-
version = "1.
|
2000
|
+
version = "1.15.0"
|
1971
2001
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1972
|
-
checksum = "
|
2002
|
+
checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9"
|
1973
2003
|
|
1974
2004
|
[[package]]
|
1975
2005
|
name = "sorted_vector_map"
|
@@ -2101,7 +2131,7 @@ dependencies = [
|
|
2101
2131
|
"fastrand",
|
2102
2132
|
"getrandom 0.3.2",
|
2103
2133
|
"once_cell",
|
2104
|
-
"rustix",
|
2134
|
+
"rustix 1.0.5",
|
2105
2135
|
"windows-sys 0.59.0",
|
2106
2136
|
]
|
2107
2137
|
|
@@ -2111,7 +2141,7 @@ version = "0.4.2"
|
|
2111
2141
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2112
2142
|
checksum = "45c6481c4829e4cc63825e62c49186a34538b7b2750b73b266581ffb612fb5ed"
|
2113
2143
|
dependencies = [
|
2114
|
-
"rustix",
|
2144
|
+
"rustix 1.0.5",
|
2115
2145
|
"windows-sys 0.59.0",
|
2116
2146
|
]
|
2117
2147
|
|
@@ -2205,9 +2235,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
2205
2235
|
|
2206
2236
|
[[package]]
|
2207
2237
|
name = "tokio"
|
2208
|
-
version = "1.44.
|
2238
|
+
version = "1.44.2"
|
2209
2239
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2210
|
-
checksum = "
|
2240
|
+
checksum = "e6b88822cbe49de4185e3a4cbf8321dd487cf5fe0c5c65695fef6346371e9c48"
|
2211
2241
|
dependencies = [
|
2212
2242
|
"backtrace",
|
2213
2243
|
"bytes",
|
@@ -2552,6 +2582,18 @@ dependencies = [
|
|
2552
2582
|
"wasm-bindgen",
|
2553
2583
|
]
|
2554
2584
|
|
2585
|
+
[[package]]
|
2586
|
+
name = "which"
|
2587
|
+
version = "4.4.2"
|
2588
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2589
|
+
checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7"
|
2590
|
+
dependencies = [
|
2591
|
+
"either",
|
2592
|
+
"home",
|
2593
|
+
"once_cell",
|
2594
|
+
"rustix 0.38.44",
|
2595
|
+
]
|
2596
|
+
|
2555
2597
|
[[package]]
|
2556
2598
|
name = "winapi"
|
2557
2599
|
version = "0.3.9"
|
@@ -2893,7 +2935,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2893
2935
|
checksum = "0d65cbf2f12c15564212d48f4e3dfb87923d25d611f2aed18f4cb23f0413d89e"
|
2894
2936
|
dependencies = [
|
2895
2937
|
"libc",
|
2896
|
-
"rustix",
|
2938
|
+
"rustix 1.0.5",
|
2897
2939
|
]
|
2898
2940
|
|
2899
2941
|
[[package]]
|
@@ -1,8 +1,8 @@
|
|
1
|
-
# @generated by autocargo from //tools/pyre/pyre2/
|
1
|
+
# @generated by autocargo from //tools/pyre/pyre2/pyrefly:[pyrefly,pyrefly_library]
|
2
2
|
|
3
3
|
[package]
|
4
4
|
name = "pyrefly"
|
5
|
-
version = "0.
|
5
|
+
version = "0.10.0"
|
6
6
|
authors = ["Meta"]
|
7
7
|
edition = "2021"
|
8
8
|
repository = "https://github.com/facebook/pyre-check/tree/main/pyre2"
|
@@ -10,7 +10,6 @@ license = "MIT"
|
|
10
10
|
build = "build.rs"
|
11
11
|
|
12
12
|
[lib]
|
13
|
-
name = "pyre2"
|
14
13
|
path = "lib/lib.rs"
|
15
14
|
|
16
15
|
[[bin]]
|
@@ -72,9 +71,11 @@ tar = "0.4.44"
|
|
72
71
|
zstd = { version = "0.13", features = ["experimental", "zstdmt"] }
|
73
72
|
|
74
73
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
74
|
+
which = "4.2.4"
|
75
75
|
zstd = { version = "0.13", features = ["experimental", "zstdmt"] }
|
76
76
|
|
77
77
|
[target.'cfg(not(target_arch = "wasm32"))'.build-dependencies]
|
78
|
+
which = "4.2.4"
|
78
79
|
zstd = { version = "0.13", features = ["experimental", "zstdmt"] }
|
79
80
|
|
80
81
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
@@ -16,29 +16,25 @@ use anyhow::Context as _;
|
|
16
16
|
use clap::Parser;
|
17
17
|
use clap::Subcommand;
|
18
18
|
use path_absolutize::Absolutize;
|
19
|
-
use
|
20
|
-
use
|
21
|
-
use
|
22
|
-
use
|
23
|
-
use
|
24
|
-
use
|
25
|
-
use
|
26
|
-
use
|
27
|
-
use
|
28
|
-
use
|
29
|
-
use
|
30
|
-
use
|
31
|
-
use
|
32
|
-
use pyre2::NotifyWatcher;
|
19
|
+
use pyrefly::clap_env;
|
20
|
+
use pyrefly::fs_upward_search::first_match;
|
21
|
+
use pyrefly::get_args_expanded;
|
22
|
+
use pyrefly::globs::FilteredGlobs;
|
23
|
+
use pyrefly::globs::Globs;
|
24
|
+
use pyrefly::run::BuckCheckArgs;
|
25
|
+
use pyrefly::run::CheckArgs;
|
26
|
+
use pyrefly::run::CommandExitStatus;
|
27
|
+
use pyrefly::run::CommonGlobalArgs;
|
28
|
+
use pyrefly::run::ConfigMigrationArgs;
|
29
|
+
use pyrefly::run::LspArgs;
|
30
|
+
use pyrefly::ConfigFile;
|
31
|
+
use pyrefly::NotifyWatcher;
|
33
32
|
|
34
33
|
#[derive(Debug, Parser)]
|
35
|
-
#[command(name = "
|
34
|
+
#[command(name = "pyrefly")]
|
36
35
|
#[command(about = "Next generation of Pyre type checker", long_about = None)]
|
36
|
+
#[command(version)]
|
37
37
|
struct Args {
|
38
|
-
/// Enable verbose logging.
|
39
|
-
#[clap(long = "verbose", short = 'v', global = true, env = clap_env("VERBOSE"))]
|
40
|
-
verbose: bool,
|
41
|
-
|
42
38
|
/// Set this to true to run profiling of fast jobs.
|
43
39
|
/// Will run the command repeatedly.
|
44
40
|
#[clap(long = "profiling", global = true, hide = true, env = clap_env("PROFILING"))]
|
@@ -71,8 +67,8 @@ enum Command {
|
|
71
67
|
/// Explicitly set the Pyre configuration to use when type checking or starting a language server.
|
72
68
|
/// It is an error to pass this flag in "single-file checking mode".
|
73
69
|
/// When not set, Pyre will perform an upward-filesystem-walk approach to find the nearest
|
74
|
-
///
|
75
|
-
/// If both a
|
70
|
+
/// pyrefly.toml or 'pyproject.toml with `tool.pyre` section'. If no config is found, Pyre exits with error.
|
71
|
+
/// If both a pyrefly.toml and valid pyproject.toml are found, pyrefly.toml takes precedence.
|
76
72
|
#[clap(long, short, env = clap_env("CONFIG"))]
|
77
73
|
config: Option<std::path::PathBuf>,
|
78
74
|
|
@@ -85,6 +81,10 @@ enum Command {
|
|
85
81
|
|
86
82
|
/// Start an LSP server
|
87
83
|
Lsp(LspArgs),
|
84
|
+
|
85
|
+
/// Migrate a mypy or pyright configuration to a pyrefly configuration.
|
86
|
+
/// The main argument is the path to the configuration file to migrate.
|
87
|
+
ConfigMigration(ConfigMigrationArgs),
|
88
88
|
}
|
89
89
|
|
90
90
|
fn exit_on_panic() {
|
@@ -103,7 +103,7 @@ fn get_open_source_config(file: &Path) -> anyhow::Result<ConfigFile> {
|
|
103
103
|
}
|
104
104
|
|
105
105
|
fn get_implicit_config_path_from(path: &Path) -> anyhow::Result<PathBuf> {
|
106
|
-
if let Some(search_result) = first_match(path, &
|
106
|
+
if let Some(search_result) = first_match(path, &ConfigFile::CONFIG_FILE_NAMES) {
|
107
107
|
Ok(search_result.to_path_buf())
|
108
108
|
} else {
|
109
109
|
Err(anyhow!(
|
@@ -123,7 +123,7 @@ fn to_exit_code(status: CommandExitStatus) -> ExitCode {
|
|
123
123
|
}
|
124
124
|
|
125
125
|
async fn run_check(
|
126
|
-
args:
|
126
|
+
args: pyrefly::run::CheckArgs,
|
127
127
|
watch: bool,
|
128
128
|
files_to_check: FilteredGlobs,
|
129
129
|
config_finder: &impl Fn(&Path) -> ConfigFile,
|
@@ -158,7 +158,7 @@ async fn run_check_on_project(
|
|
158
158
|
watch: bool,
|
159
159
|
config: Option<PathBuf>,
|
160
160
|
project_excludes: Option<Vec<String>>,
|
161
|
-
args:
|
161
|
+
args: pyrefly::run::CheckArgs,
|
162
162
|
allow_forget: bool,
|
163
163
|
) -> anyhow::Result<CommandExitStatus> {
|
164
164
|
let config = if let Some(explicit_config_path) = config {
|
@@ -202,11 +202,12 @@ async fn run_check_on_files(
|
|
202
202
|
files_to_check: Globs,
|
203
203
|
project_excludes: Option<Vec<String>>,
|
204
204
|
watch: bool,
|
205
|
-
args:
|
205
|
+
args: pyrefly::run::CheckArgs,
|
206
206
|
allow_forget: bool,
|
207
207
|
) -> anyhow::Result<CommandExitStatus> {
|
208
208
|
let project_excludes =
|
209
209
|
project_excludes.map_or_else(ConfigFile::default_project_excludes, Globs::new);
|
210
|
+
let files_to_check = files_to_check.from_root(PathBuf::new().absolutize()?.as_ref());
|
210
211
|
run_check(
|
211
212
|
args,
|
212
213
|
watch,
|
@@ -244,19 +245,19 @@ async fn run_command(command: Command, allow_forget: bool) -> anyhow::Result<Com
|
|
244
245
|
}
|
245
246
|
Command::BuckCheck(args) => args.run(),
|
246
247
|
Command::Lsp(args) => args.run(Vec::new()),
|
248
|
+
Command::ConfigMigration(args) => args.run(),
|
247
249
|
}
|
248
250
|
}
|
249
251
|
|
250
252
|
/// Run based on the command line arguments.
|
251
253
|
async fn run() -> anyhow::Result<ExitCode> {
|
252
254
|
let args = Args::parse_from(get_args_expanded(args_os())?);
|
255
|
+
args.common.init();
|
253
256
|
if args.profiling {
|
254
257
|
loop {
|
255
258
|
let _ = run_command(args.command.clone(), false).await;
|
256
259
|
}
|
257
260
|
} else {
|
258
|
-
init_tracing(args.verbose, false);
|
259
|
-
init_thread_pool(args.common.threads);
|
260
261
|
run_command(args.command, true).await.map(to_exit_code)
|
261
262
|
}
|
262
263
|
}
|
@@ -48,6 +48,7 @@ use crate::types::class::Class;
|
|
48
48
|
use crate::types::equality::TypeEq;
|
49
49
|
use crate::types::equality::TypeEqCtx;
|
50
50
|
use crate::types::stdlib::Stdlib;
|
51
|
+
use crate::types::type_info::TypeInfo;
|
51
52
|
use crate::types::types::AnyStyle;
|
52
53
|
use crate::types::types::NeverStyle;
|
53
54
|
use crate::types::types::Type;
|
@@ -590,7 +591,7 @@ impl<'a, Ans: LookupAnswer> AnswersSolver<'a, Ans> {
|
|
590
591
|
let t = if let Binding::Phi(_, Some(default)) = binding {
|
591
592
|
self.get_calculation(*default)
|
592
593
|
.get()
|
593
|
-
.map(|t| t.
|
594
|
+
.map(|t| t.arc_clone_ty().promote_literals(self.stdlib))
|
594
595
|
} else {
|
595
596
|
None
|
596
597
|
};
|
@@ -600,17 +601,12 @@ impl<'a, Ans: LookupAnswer> AnswersSolver<'a, Ans> {
|
|
600
601
|
pub fn record_recursive(
|
601
602
|
&self,
|
602
603
|
loc: TextRange,
|
603
|
-
answer:
|
604
|
+
answer: Type,
|
604
605
|
recursive: Var,
|
605
606
|
errors: &ErrorCollector,
|
606
607
|
) {
|
607
|
-
self.solver()
|
608
|
-
recursive,
|
609
|
-
(**answer).clone(),
|
610
|
-
self.type_order(),
|
611
|
-
errors,
|
612
|
-
loc,
|
613
|
-
);
|
608
|
+
self.solver()
|
609
|
+
.record_recursive(recursive, answer, self.type_order(), errors, loc);
|
614
610
|
}
|
615
611
|
|
616
612
|
pub fn record_type_trace(&self, loc: TextRange, ty: &Type) {
|
@@ -619,6 +615,39 @@ impl<'a, Ans: LookupAnswer> AnswersSolver<'a, Ans> {
|
|
619
615
|
}
|
620
616
|
}
|
621
617
|
|
618
|
+
/// Check if `want` matches `got` returning `want` if the check fails.
|
619
|
+
pub fn check_and_return_type_info(
|
620
|
+
&self,
|
621
|
+
want: &Type,
|
622
|
+
got: TypeInfo,
|
623
|
+
loc: TextRange,
|
624
|
+
errors: &ErrorCollector,
|
625
|
+
tcc: &dyn Fn() -> TypeCheckContext,
|
626
|
+
) -> TypeInfo {
|
627
|
+
if self.check_type(want, got.ty(), loc, errors, tcc) {
|
628
|
+
got
|
629
|
+
} else {
|
630
|
+
got.with_ty(want.clone())
|
631
|
+
}
|
632
|
+
}
|
633
|
+
|
634
|
+
/// Check if `want` matches `got` returning `want` if the check fails.
|
635
|
+
pub fn check_and_return_type(
|
636
|
+
&self,
|
637
|
+
want: &Type,
|
638
|
+
got: Type,
|
639
|
+
loc: TextRange,
|
640
|
+
errors: &ErrorCollector,
|
641
|
+
tcc: &dyn Fn() -> TypeCheckContext,
|
642
|
+
) -> Type {
|
643
|
+
if self.check_type(want, &got, loc, errors, tcc) {
|
644
|
+
got
|
645
|
+
} else {
|
646
|
+
want.clone()
|
647
|
+
}
|
648
|
+
}
|
649
|
+
|
650
|
+
/// Check if `want` matches `got`, returning `true` on success and `false` on failure.
|
622
651
|
pub fn check_type(
|
623
652
|
&self,
|
624
653
|
want: &Type,
|
@@ -626,15 +655,14 @@ impl<'a, Ans: LookupAnswer> AnswersSolver<'a, Ans> {
|
|
626
655
|
loc: TextRange,
|
627
656
|
errors: &ErrorCollector,
|
628
657
|
tcc: &dyn Fn() -> TypeCheckContext,
|
629
|
-
) ->
|
630
|
-
if matches!(got, Type::Any(AnyStyle::Error))
|
631
|
-
|
632
|
-
|
633
|
-
|
634
|
-
got.clone()
|
658
|
+
) -> bool {
|
659
|
+
if matches!(got, Type::Any(AnyStyle::Error))
|
660
|
+
|| self.solver().is_subset_eq(got, want, self.type_order())
|
661
|
+
{
|
662
|
+
true
|
635
663
|
} else {
|
636
664
|
self.solver().error(want, got, errors, loc, tcc);
|
637
|
-
|
665
|
+
false
|
638
666
|
}
|
639
667
|
}
|
640
668
|
|