rtest 1.0.2__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.
- rtest-1.0.2/.github/workflows/ci.yml +110 -0
- rtest-1.0.2/.github/workflows/release.yml +178 -0
- rtest-1.0.2/.github/workflows/test-release.yml +62 -0
- rtest-1.0.2/.gitignore +31 -0
- rtest-1.0.2/.gitmodules +3 -0
- rtest-1.0.2/CHANGELOG.md +19 -0
- rtest-1.0.2/CONTRIBUTING.rst +197 -0
- rtest-1.0.2/Cargo.lock +1059 -0
- rtest-1.0.2/Cargo.toml +23 -0
- rtest-1.0.2/LICENSE +21 -0
- rtest-1.0.2/PKG-INFO +135 -0
- rtest-1.0.2/README.md +110 -0
- rtest-1.0.2/benchmark.sh +85 -0
- rtest-1.0.2/pyproject.toml +103 -0
- rtest-1.0.2/python/rtest/__init__.py +17 -0
- rtest-1.0.2/python/rtest/_rtest.pyi +11 -0
- rtest-1.0.2/python/rtest/py.typed +0 -0
- rtest-1.0.2/rtest-core/Cargo.toml +16 -0
- rtest-1.0.2/rtest-core/src/cli.rs +150 -0
- rtest-1.0.2/rtest-core/src/collection.rs +488 -0
- rtest-1.0.2/rtest-core/src/collection_integration.rs +135 -0
- rtest-1.0.2/rtest-core/src/lib.rs +19 -0
- rtest-1.0.2/rtest-core/src/pytest_executor.rs +29 -0
- rtest-1.0.2/rtest-core/src/python_discovery/discovery.rs +171 -0
- rtest-1.0.2/rtest-core/src/python_discovery/mod.rs +12 -0
- rtest-1.0.2/rtest-core/src/python_discovery/pattern.rs +31 -0
- rtest-1.0.2/rtest-core/src/python_discovery/visitor.rs +98 -0
- rtest-1.0.2/rtest-core/src/runner.rs +49 -0
- rtest-1.0.2/rtest-core/src/scheduler.rs +199 -0
- rtest-1.0.2/rtest-core/src/utils.rs +98 -0
- rtest-1.0.2/rtest-core/src/worker.rs +294 -0
- rtest-1.0.2/ruff/Cargo.toml +287 -0
- rtest-1.0.2/ruff/crates/ruff_python_ast/Cargo.toml +51 -0
- rtest-1.0.2/ruff/crates/ruff_python_ast/ast.toml +600 -0
- rtest-1.0.2/ruff/crates/ruff_python_ast/generate.py +1103 -0
- rtest-1.0.2/ruff/crates/ruff_python_ast/src/comparable.rs +1990 -0
- rtest-1.0.2/ruff/crates/ruff_python_ast/src/docstrings.rs +22 -0
- rtest-1.0.2/ruff/crates/ruff_python_ast/src/expression.rs +398 -0
- rtest-1.0.2/ruff/crates/ruff_python_ast/src/generated.rs +10587 -0
- rtest-1.0.2/ruff/crates/ruff_python_ast/src/helpers.rs +1938 -0
- rtest-1.0.2/ruff/crates/ruff_python_ast/src/identifier.rs +258 -0
- rtest-1.0.2/ruff/crates/ruff_python_ast/src/int.rs +235 -0
- rtest-1.0.2/ruff/crates/ruff_python_ast/src/lib.rs +138 -0
- rtest-1.0.2/ruff/crates/ruff_python_ast/src/name.rs +1024 -0
- rtest-1.0.2/ruff/crates/ruff_python_ast/src/node.rs +960 -0
- rtest-1.0.2/ruff/crates/ruff_python_ast/src/node_index.rs +99 -0
- rtest-1.0.2/ruff/crates/ruff_python_ast/src/nodes.rs +3707 -0
- rtest-1.0.2/ruff/crates/ruff_python_ast/src/operator_precedence.rs +195 -0
- rtest-1.0.2/ruff/crates/ruff_python_ast/src/parenthesize.rs +67 -0
- rtest-1.0.2/ruff/crates/ruff_python_ast/src/python_version.rs +230 -0
- rtest-1.0.2/ruff/crates/ruff_python_ast/src/relocate.rs +128 -0
- rtest-1.0.2/ruff/crates/ruff_python_ast/src/script.rs +149 -0
- rtest-1.0.2/ruff/crates/ruff_python_ast/src/statement_visitor.rs +105 -0
- rtest-1.0.2/ruff/crates/ruff_python_ast/src/stmt_if.rs +51 -0
- rtest-1.0.2/ruff/crates/ruff_python_ast/src/str.rs +300 -0
- rtest-1.0.2/ruff/crates/ruff_python_ast/src/str_prefix.rs +241 -0
- rtest-1.0.2/ruff/crates/ruff_python_ast/src/traversal.rs +81 -0
- rtest-1.0.2/ruff/crates/ruff_python_ast/src/types.rs +7 -0
- rtest-1.0.2/ruff/crates/ruff_python_ast/src/visitor/source_order.rs +622 -0
- rtest-1.0.2/ruff/crates/ruff_python_ast/src/visitor/transformer.rs +883 -0
- rtest-1.0.2/ruff/crates/ruff_python_ast/src/visitor.rs +879 -0
- rtest-1.0.2/ruff/crates/ruff_python_ast/src/whitespace.rs +44 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/CONTRIBUTING.md +95 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/Cargo.toml +44 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/README.md +22 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/.editorconfig +6 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/ann_assign_stmt_invalid_annotation.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/ann_assign_stmt_invalid_target.py +10 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/ann_assign_stmt_invalid_value.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/ann_assign_stmt_missing_rhs.py +1 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/ann_assign_stmt_type_alias_annotation.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/args_unparenthesized_generator.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/assert_empty_msg.py +1 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/assert_empty_test.py +1 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/assert_invalid_msg_expr.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/assert_invalid_test_expr.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/assign_stmt_invalid_target.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/assign_stmt_invalid_value_expr.py +5 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/assign_stmt_keyword_target.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/assign_stmt_missing_rhs.py +6 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/assign_stmt_starred_expr_value.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/async_unexpected_token.py +6 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/aug_assign_stmt_invalid_target.py +6 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/aug_assign_stmt_invalid_value.py +5 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/aug_assign_stmt_missing_rhs.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/case_expect_indented_block.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/class_def_empty_body.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/class_def_missing_name.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/class_def_unclosed_type_param_list.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/class_type_params_py311.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/clause_expect_indented_block.py +6 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/clause_expect_single_statement.py +1 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/comma_separated_missing_comma.py +1 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/comma_separated_missing_comma_between_elements.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/comma_separated_missing_element_between_commas.py +1 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/comma_separated_missing_first_element.py +1 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/comprehension_missing_for_after_async.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/debug_shadow_class.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/debug_shadow_function.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/debug_shadow_import.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/debug_shadow_match.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/debug_shadow_try.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/debug_shadow_type_alias.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/debug_shadow_with.py +1 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/decorator_await_expression_py38.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/decorator_dict_literal_py38.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/decorator_expression_py38.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/decorator_float_literal_py38.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/decorator_invalid_expression.py +6 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/decorator_missing_expression.py +5 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/decorator_missing_newline.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/decorator_named_expression_py37.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/decorator_non_toplevel_call_expression_py38.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/decorator_unexpected_token.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/del_debug_py39.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/del_incomplete_target.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/del_stmt_empty.py +1 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/dotted_name_multiple_dots.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/duplicate_match_class_attr.py +6 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/duplicate_match_key.py +22 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/duplicate_type_parameter_names.py +7 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/except_star_py310.py +5 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/except_stmt_invalid_expression.py +8 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/except_stmt_missing_as_name.py +6 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/except_stmt_missing_exception.py +13 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/except_stmt_missing_exception_and_as_name.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/except_stmt_unparenthesized_tuple_as.py +8 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/except_stmt_unparenthesized_tuple_no_as_py313.py +9 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/f_string_conversion_follows_exclamation.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/f_string_empty_expression.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/f_string_invalid_conversion_flag_name_tok.py +1 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/f_string_invalid_conversion_flag_other_tok.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/f_string_invalid_starred_expr.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/f_string_lambda_without_parentheses.py +1 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/f_string_unclosed_lbrace.py +5 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/f_string_unclosed_lbrace_in_format_spec.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/for_iter_unpack_py38.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/for_stmt_invalid_iter_expr.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/for_stmt_invalid_target.py +7 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/for_stmt_invalid_target_binary_expr.py +6 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/for_stmt_invalid_target_in_keyword.py +6 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/for_stmt_missing_in_keyword.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/for_stmt_missing_iter.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/for_stmt_missing_target.py +1 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/from_import_dotted_names.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/from_import_empty_names.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/from_import_missing_module.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/from_import_missing_rpar.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/from_import_star_with_other_names.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/from_import_unparenthesized_trailing_comma.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/function_def_empty_body.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/function_def_invalid_return_expr.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/function_def_missing_identifier.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/function_def_missing_return_type.py +1 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/function_def_unclosed_parameter_list.py +5 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/function_def_unclosed_type_param_list.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/function_def_unparenthesized_return_types.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/function_type_params_py311.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/global_stmt_empty.py +1 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/global_stmt_expression.py +1 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/global_stmt_trailing_comma.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/if_stmt_elif_missing_colon.py +6 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/if_stmt_empty_body.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/if_stmt_invalid_elif_test_expr.py +6 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/if_stmt_invalid_test_expr.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/if_stmt_missing_colon.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/if_stmt_missing_test.py +1 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/if_stmt_misspelled_elif.py +6 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/implicitly_concatenated_unterminated_string.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/implicitly_concatenated_unterminated_string_multiline.py +11 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/import_alias_missing_asname.py +1 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/import_stmt_empty.py +1 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/import_stmt_parenthesized_names.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/import_stmt_star_import.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/import_stmt_trailing_comma.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/invalid_annotation_class.py +7 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/invalid_annotation_function.py +20 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/invalid_annotation_function_py314.py +11 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/invalid_annotation_py314.py +7 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/invalid_annotation_type_alias.py +8 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/invalid_byte_literal.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/invalid_del_target.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/invalid_fstring_literal_element.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/invalid_string_literal.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/irrefutable_case_pattern.py +12 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/iter_unpack_return_py37.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/iter_unpack_yield_py37.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/lambda_body_with_starred_expr.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/lambda_body_with_yield_expr.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/match_before_py310.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/match_classify_as_keyword.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/match_classify_as_keyword_or_identifier.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/match_expected_colon.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/match_stmt_expect_indented_block.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/match_stmt_expected_case_block.py +5 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/match_stmt_invalid_guard_expr.py +6 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/match_stmt_invalid_subject_expr.py +7 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/match_stmt_missing_guard_expr.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/match_stmt_missing_pattern.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/match_stmt_no_newline_before_case.py +1 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/match_stmt_single_starred_subject.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/mixed_bytes_and_non_bytes_literals.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/multiple_assignment_in_case_pattern.py +10 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/multiple_clauses_on_same_line.py +6 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/named_expr_slice.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/named_expr_slice_parse_error.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/nested_async_comprehension_py310.py +6 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/node_range_with_gaps.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/nonlocal_declaration_at_module_level.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/nonlocal_stmt_empty.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/nonlocal_stmt_expression.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/nonlocal_stmt_trailing_comma.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/param_missing_annotation.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/param_missing_default.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/param_with_invalid_annotation.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/param_with_invalid_default.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/param_with_invalid_star_annotation.py +5 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/param_with_star_annotation_py310.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/params_duplicate_names.py +1 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/params_expected_after_star_separator.py +5 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/params_kwarg_after_star_separator.py +1 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/params_multiple_kwargs.py +1 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/params_multiple_slash_separator.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/params_multiple_star_separator.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/params_multiple_varargs.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/params_no_arg_before_slash.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/params_non_default_after_default.py +1 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/params_star_after_slash.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/params_star_separator_after_star_param.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/params_var_keyword_with_default.py +1 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/params_var_positional_with_default.py +1 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/parenthesized_context_manager_py38.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/parenthesized_kwarg_py38.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/pep701_f_string_py311.py +12 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/pos_only_py37.py +5 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/raise_stmt_from_without_exc.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/raise_stmt_invalid_cause.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/raise_stmt_invalid_exc.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/raise_stmt_unparenthesized_tuple_cause.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/raise_stmt_unparenthesized_tuple_exc.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/rebound_comprehension_variable.py +9 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/return_stmt_invalid_expr.py +5 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/simple_and_compound_stmt_on_same_line.py +1 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/simple_and_compound_stmt_on_same_line_in_block.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/simple_stmts_on_same_line.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/simple_stmts_on_same_line_in_block.py +1 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/single_star_for.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/single_star_return.py +1 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/single_star_yield.py +1 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/single_starred_assignment_target.py +1 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/star_index_py310.py +7 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/star_slices.py +1 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/t_string_empty_expression.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/t_string_invalid_conversion_flag_name_tok.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/t_string_invalid_conversion_flag_other_tok.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/t_string_invalid_starred_expr.py +5 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/t_string_lambda_without_parentheses.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/t_string_unclosed_lbrace.py +6 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/t_string_unclosed_lbrace_in_format_spec.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/template_strings_py313.py +6 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/try_stmt_invalid_order.py +6 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/try_stmt_missing_except_finally.py +6 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/try_stmt_misspelled_except.py +14 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/try_stmt_mixed_except_kind.py +22 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/tuple_context_manager_py38.py +13 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/type_alias_incomplete_stmt.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/type_alias_invalid_value_expr.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/type_param_default_py312.py +5 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/type_param_invalid_bound_expr.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/type_param_missing_bound.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/type_param_param_spec_bound.py +1 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/type_param_param_spec_invalid_default_expr.py +5 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/type_param_param_spec_missing_default.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/type_param_type_var_invalid_default_expr.py +6 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/type_param_type_var_missing_default.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/type_param_type_var_tuple_bound.py +1 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/type_param_type_var_tuple_invalid_default_expr.py +5 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/type_param_type_var_tuple_missing_default.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/type_params_empty.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/type_stmt_py311.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/unparenthesized_named_expr_index_py38.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/unparenthesized_named_expr_set_comp_py38.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/unparenthesized_named_expr_set_literal_py38.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/unterminated_fstring_newline_recovery.py +8 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/walrus_py37.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/while_stmt_invalid_test_expr.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/while_stmt_missing_colon.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/while_stmt_missing_test.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/with_items_parenthesized_missing_colon.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/with_items_parenthesized_missing_comma.py +5 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/err/write_to_debug_expr.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/all_async_comprehension_py310.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/ambiguous_lpar_with_items_binary_expr.py +10 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/ambiguous_lpar_with_items_if_expr.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/ann_assign_stmt_simple_target.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/args_unparenthesized_generator.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/assign_stmt_starred_expr_value.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/assign_targets_terminator.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/async_for_statement.py +1 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/async_function_definition.py +1 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/async_with_statement.py +1 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/class_def_arguments.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/class_keyword_in_case_pattern.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/class_type_params_py312.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/comma_separated_regular_list_terminator.py +7 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/debug_rename_import.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/decorator_async_function.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/decorator_await_expression_py39.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/decorator_expression_dotted_ident_py38.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/decorator_expression_eval_hack_py38.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/decorator_expression_identity_hack_py38.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/decorator_expression_py39.py +5 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/del_debug_py38.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/del_targets_terminator.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/dotted_name_normalized_spaces.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/duplicate_match_key_attr.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/except_star_py311.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/except_stmt_as_name_soft_keyword.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/except_stmt_unparenthesized_tuple_no_as_py314.py +9 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/for_in_target_valid_expr.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/for_iter_unpack_py38.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/for_iter_unpack_py39.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/from_import_no_space.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/from_import_soft_keyword_module_name.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/from_import_stmt_terminator.py +5 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/fstring_format_spec_terminator.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/function_def_parameter_range.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/function_def_parenthesized_return_types.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/function_def_valid_return_expr.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/function_type_params_py312.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/global_stmt.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/import_as_name_soft_keyword.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/import_stmt_terminator.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/irrefutable_case_pattern_at_end.py +9 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/iter_unpack_return_py37.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/iter_unpack_return_py38.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/iter_unpack_yield_py37.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/iter_unpack_yield_py38.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/lambda_with_no_parameters.py +1 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/lambda_with_valid_body.py +6 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/match_after_py310.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/match_as_pattern.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/match_as_pattern_soft_keyword.py +6 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/match_attr_pattern_soft_keyword.py +5 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/match_classify_as_identifier_1.py +1 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/match_classify_as_identifier_2.py +13 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/match_classify_as_keyword_1.py +24 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/match_classify_as_keyword_2.py +12 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/match_classify_as_keyword_or_identifier.py +10 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/match_sequence_pattern_parentheses_terminator.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/match_sequence_pattern_terminator.py +5 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/match_stmt_subject_expr.py +9 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/match_stmt_valid_guard_expr.py +8 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/multiple_assignment_in_case_pattern.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/nested_async_comprehension_py310.py +7 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/nested_async_comprehension_py311.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/non_duplicate_type_parameter_names.py +5 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/non_rebound_comprehension_variable.py +1 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/nonlocal_declaration_at_module_level.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/nonlocal_stmt.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/param_with_annotation.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/param_with_default.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/param_with_star_annotation.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/param_with_star_annotation_py310.py +9 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/param_with_star_annotation_py311.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/params_non_default_after_star.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/params_seen_keyword_only_param_after_star.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/parenthesized_context_manager_py39.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/parenthesized_kwarg_py37.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/parenthesized_named_expr_index_py38.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/parenthesized_named_expr_py38.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/parenthesized_star_index_py310.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/pep701_f_string_py311.py +7 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/pep701_f_string_py312.py +10 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/pep750_t_string_py314.py +10 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/pos_only_py38.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/read_from_debug.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/simple_stmts_in_block.py +5 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/simple_stmts_with_semicolons.py +1 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/single_star_in_tuple.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/single_starred_assignment_target.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/star_index_py311.py +7 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/template_strings_py314.py +6 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/tuple_context_manager_py38.py +6 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/type_param_default_py313.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/type_param_param_spec.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/type_param_type_var.py +5 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/type_param_type_var_tuple.py +5 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/type_stmt_py312.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/unparenthesized_named_expr_index_py39.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/unparenthesized_named_expr_py39.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/valid_annotation_class.py +6 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/valid_annotation_function_py313.py +11 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/valid_annotation_py313.py +7 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/inline/ok/walrus_py38.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/arguments/double_starred.py +5 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/arguments/duplicate_keyword_arguments.py +1 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/arguments/invalid_expression.py +5 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/arguments/invalid_keyword_expression.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/arguments/invalid_order.py +5 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/arguments/missing_argument.py +1 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/arguments/missing_comma.py +1 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/arguments/missing_expression.py +5 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/arguments/starred.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/arguments/unclosed_0.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/arguments/unclosed_1.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/arguments/unclosed_2.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/attribute/invalid_member.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/attribute/multiple_dots.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/attribute/no_member.py +6 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/await/no_expression_0.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/await/no_expression_1.py +5 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/await/recover.py +17 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/bin_op/invalid_rhs_expression.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/bin_op/missing_lhs.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/bin_op/missing_rhs_0.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/bin_op/missing_rhs_1.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/bin_op/multiple_ops.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/bin_op/named_expression.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/bin_op/starred_expression.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/bool_op/invalid_rhs_expression.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/bool_op/missing_lhs.py +1 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/bool_op/missing_rhs.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/bool_op/named_expression.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/bool_op/starred_expression.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/compare/invalid_order.py +7 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/compare/invalid_rhs_expression.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/compare/missing_lhs.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/compare/missing_rhs_0.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/compare/missing_rhs_1.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/compare/missing_rhs_2.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/compare/multiple_equals.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/compare/named_expression.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/compare/starred_expression.py +5 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/dict/comprehension.py +17 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/dict/double_star.py +12 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/dict/double_star_comprehension.py +9 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/dict/missing_closing_brace_0.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/dict/missing_closing_brace_1.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/dict/missing_closing_brace_2.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/dict/named_expression_0.py +5 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/dict/named_expression_1.py +5 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/dict/recover.py +24 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/emoji_identifiers.py +7 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/emoji_statement.py +1 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/if/missing_orelse_expr_0.py +5 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/if/missing_orelse_expr_1.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/if/missing_test_expr_0.py +5 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/if/missing_test_expr_1.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/if/recover.py +10 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/lambda_default_parameters.py +1 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/lambda_duplicate_parameters.py +9 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/list/comprehension.py +20 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/list/missing_closing_bracket_0.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/list/missing_closing_bracket_1.py +6 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/list/missing_closing_bracket_2.py +6 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/list/missing_closing_bracket_3.py +7 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/list/recover.py +20 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/list/star_expression_precedence.py +10 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/named/invalid_target.py +6 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/named/missing_expression_0.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/named/missing_expression_1.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/named/missing_expression_2.py +6 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/named/missing_expression_3.py +6 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/named/missing_expression_4.py +5 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/parenthesized/generator.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/parenthesized/missing_closing_paren_0.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/parenthesized/missing_closing_paren_1.py +6 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/parenthesized/missing_closing_paren_2.py +6 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/parenthesized/missing_closing_paren_3.py +7 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/parenthesized/parenthesized.py +5 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/parenthesized/tuple.py +21 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/parenthesized/tuple_starred_expr.py +20 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/set/comprehension.py +20 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/set/missing_closing_curly_brace_0.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/set/missing_closing_curly_brace_1.py +6 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/set/missing_closing_curly_brace_2.py +6 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/set/missing_closing_curly_brace_3.py +7 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/set/recover.py +22 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/set/star_expression_precedence.py +10 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/subscript/invalid_slice_element.py +12 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/subscript/unclosed_slice_0.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/subscript/unclosed_slice_1.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/unary/named_expression.py +2 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/unary/no_expression_0.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/unary/no_expression_1.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/unary.py +1 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/yield/named_expression.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/yield/star_expression.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/yield_from/starred_expression.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/expressions/yield_from/unparenthesized.py +9 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/re_lex_logical_token.py +57 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/re_lex_logical_token_mac_eol.py +1 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/re_lex_logical_token_windows_eol.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/re_lexing/fstring_format_spec_1.py +12 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/re_lexing/line_continuation_1.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/re_lexing/line_continuation_windows_eol.py +4 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/re_lexing/triple_quoted_fstring_1.py +6 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/re_lexing/triple_quoted_fstring_2.py +6 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/re_lexing/triple_quoted_fstring_3.py +7 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/statements/function_type_parameters.py +19 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/statements/if_extra_closing_parentheses.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/statements/if_extra_indent.py +8 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/statements/invalid_assignment_targets.py +42 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/statements/invalid_augmented_assignment_target.py +34 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/statements/match/as_pattern_0.py +8 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/statements/match/as_pattern_1.py +8 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/statements/match/as_pattern_2.py +5 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/statements/match/as_pattern_3.py +5 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/statements/match/as_pattern_4.py +5 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/statements/match/invalid_class_pattern.py +17 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/statements/match/invalid_lhs_or_rhs_pattern.py +41 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/statements/match/invalid_mapping_pattern.py +23 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/statements/match/star_pattern_usage.py +24 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/statements/match/unary_add_usage.py +12 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/statements/with/ambiguous_lpar_with_items.py +32 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/statements/with/empty_with_items.py +6 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/statements/with/unclosed_ambiguous_lpar.py +3 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/statements/with/unclosed_ambiguous_lpar_eof.py +1 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/invalid/statements/with/unparenthesized_with_items.py +9 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/valid/expressions/arguments.py +50 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/valid/expressions/attribute.py +6 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/valid/expressions/await.py +15 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/valid/expressions/bin_op.py +33 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/valid/expressions/bool_op.py +9 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/valid/expressions/call.py +21 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/valid/expressions/compare.py +30 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/valid/expressions/dictionary.py +41 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/valid/expressions/dictionary_comprehension.py +16 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/valid/expressions/f_string.py +64 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/valid/expressions/generator.py +20 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/valid/expressions/if.py +21 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/valid/expressions/lambda.py +24 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/valid/expressions/list.py +34 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/valid/expressions/list_comprehension.py +25 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/valid/expressions/name.py +11 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/valid/expressions/named.py +8 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/valid/expressions/number_literal.py +40 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/valid/expressions/parenthesized.py +9 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/valid/expressions/set.py +33 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/valid/expressions/set_comprehension.py +14 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/valid/expressions/slice.py +21 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/valid/expressions/starred.py +8 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/valid/expressions/string.py +17 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/valid/expressions/subscript.py +17 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/valid/expressions/t_string.py +74 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/valid/expressions/tuple.py +27 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/valid/expressions/unary_op.py +22 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/valid/expressions/yield.py +14 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/valid/expressions/yield_from.py +11 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/valid/other/atom.py +6 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/valid/other/decorator.py +50 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/valid/statement/ambiguous_lpar_with_items.py +105 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/valid/statement/annotated_assignment.py +6 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/valid/statement/assert.py +11 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/valid/statement/assignment.py +43 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/valid/statement/augmented_assignment.py +21 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/valid/statement/class.py +67 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/valid/statement/delete.py +13 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/valid/statement/for.py +37 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/valid/statement/from_import.py +9 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/valid/statement/function.py +162 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/valid/statement/if.py +37 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/valid/statement/import.py +5 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/valid/statement/match.py +340 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/valid/statement/raise.py +18 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/valid/statement/return.py +12 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/valid/statement/simple.py +13 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/valid/statement/try.py +99 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/valid/statement/type.py +84 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/valid/statement/while.py +28 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/resources/valid/statement/with.py +14 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/error.rs +1075 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/lexer/cursor.rs +178 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/lexer/indentation.rs +157 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/lexer/interpolated_string.rs +157 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/lexer.rs +2771 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/lib.rs +1107 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/parser/expression.rs +3023 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/parser/helpers.rs +104 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/parser/mod.rs +1464 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/parser/options.rs +59 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/parser/pattern.rs +792 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/parser/progress.rs +46 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/parser/recovery.rs +206 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/parser/snapshots/ruff_python_parser__parser__tests__expr_mode_invalid_syntax1.snap +9 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/parser/snapshots/ruff_python_parser__parser__tests__expr_mode_invalid_syntax2.snap +9 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/parser/snapshots/ruff_python_parser__parser__tests__expr_mode_invalid_syntax3.snap +9 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/parser/snapshots/ruff_python_parser__parser__tests__expr_mode_valid_syntax.snap +12 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/parser/snapshots/ruff_python_parser__parser__tests__ipython_escape_commands.snap +457 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/parser/snapshots/ruff_python_parser__parser__tests__unicode_aliases.snap +42 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/parser/statement.rs +4022 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/parser/tests.rs +136 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/semantic_errors.rs +1802 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__assignment.snap +50 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__bom.snap +30 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__bom_with_offset.snap +30 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__bom_with_offset_edge.snap +20 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__comment_until_mac_eol.snap +34 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__comment_until_unix_eol.snap +34 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__comment_until_windows_eol.snap +34 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__dedent_after_whitespace.snap +80 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__double_dedent_with_mac_eol.snap +92 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__double_dedent_with_tabs_mac_eol.snap +92 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__double_dedent_with_tabs_unix_eol.snap +92 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__double_dedent_with_tabs_windows_eol.snap +92 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__double_dedent_with_unix_eol.snap +92 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__double_dedent_with_windows_eol.snap +92 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__emoji_identifier.snap +25 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__empty_fstrings.snap +99 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__empty_ipython_escape_command.snap +109 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__empty_tstrings.snap +98 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__escape_unicode_name.snap +23 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring.snap +105 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_comments.snap +71 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_conversion.snap +133 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_escape.snap +86 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_escape_braces.snap +133 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_escape_raw.snap +86 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_expression_multiline.snap +85 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_multiline.snap +136 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_named_unicode.snap +36 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_named_unicode_raw.snap +59 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_nested.snap +216 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_newline_format_spec.snap +168 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_parentheses.snap +209 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_prefix.snap +154 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_single_quote_escape_mac_eol.snap +36 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_single_quote_escape_unix_eol.snap +36 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_single_quote_escape_windows_eol.snap +36 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_with_format_spec.snap +289 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_with_ipy_escape_command.snap +63 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_with_lambda_expression.snap +126 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_with_multiline_format_spec.snap +143 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_with_named_expression.snap +187 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_with_nul_char.snap +36 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__indentation_with_mac_eol.snap +62 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__indentation_with_unix_eol.snap +62 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__indentation_with_windows_eol.snap +62 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__invalid_leading_zero_big.snap +29 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__invalid_leading_zero_small.snap +29 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__ipython_escape_command.snap +131 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__ipython_escape_command_assignment.snap +94 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__ipython_escape_command_indentation.snap +45 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__ipython_escape_command_line_continuation_mac_eol.snap +21 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__ipython_escape_command_line_continuation_unix_eol.snap +21 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__ipython_escape_command_line_continuation_windows_eol.snap +21 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__ipython_escape_command_line_continuation_with_mac_eol_and_eof.snap +21 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__ipython_escape_command_line_continuation_with_unix_eol_and_eof.snap +21 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__ipython_escape_command_line_continuation_with_windows_eol_and_eof.snap +21 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__ipython_help_end_escape_command.snap +186 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__line_comment_empty.snap +24 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__line_comment_long.snap +24 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__line_comment_single_whitespace.snap +24 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__line_comment_whitespace.snap +24 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__line_continuation_at_eof_after_newline_mac_eol.snap +22 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__line_continuation_at_eof_after_newline_unix_eol.snap +22 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__line_continuation_at_eof_after_newline_windows_eol.snap +22 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__line_continuation_at_eof_mac_eol.snap +36 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__line_continuation_at_eof_unix_eol.snap +36 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__line_continuation_at_eof_windows_eol.snap +36 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__logical_newline_line_comment.snap +26 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__match_softkeyword_in_notebook.snap +70 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__nested_t_and_fstring.snap +226 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__newline_in_brackets_mac_eol.snap +146 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__newline_in_brackets_unix_eol.snap +146 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__newline_in_brackets_windows_eol.snap +146 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__non_logical_newline_in_string_continuation.snap +66 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__numbers.snap +100 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__operators.snap +34 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__string.snap +77 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__string_continuation_with_mac_eol.snap +23 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__string_continuation_with_unix_eol.snap +23 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__string_continuation_with_windows_eol.snap +23 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__tet_too_low_dedent.snap +59 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__triple_quoted_mac_eol.snap +23 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__triple_quoted_unix_eol.snap +23 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__triple_quoted_windows_eol.snap +23 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__tstring.snap +105 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__tstring_comments.snap +71 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__tstring_conversion.snap +133 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__tstring_escape.snap +86 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__tstring_escape_braces.snap +133 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__tstring_escape_raw.snap +86 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__tstring_expression_multiline.snap +85 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__tstring_multiline.snap +136 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__tstring_named_unicode.snap +36 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__tstring_named_unicode_raw.snap +59 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__tstring_nested.snap +216 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__tstring_newline_format_spec.snap +168 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__tstring_parentheses.snap +209 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__tstring_prefix.snap +153 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__tstring_single_quote_escape_mac_eol.snap +36 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__tstring_single_quote_escape_unix_eol.snap +36 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__tstring_single_quote_escape_windows_eol.snap +36 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__tstring_with_format_spec.snap +289 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__tstring_with_ipy_escape_command.snap +63 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__tstring_with_lambda_expression.snap +125 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__tstring_with_multiline_format_spec.snap +143 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__tstring_with_named_expression.snap +187 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__tstring_with_nul_char.snap +36 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__backspace_alias.snap +32 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__bell_alias.snap +32 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__carriage_return_alias.snap +32 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__character_tabulation_with_justification_alias.snap +32 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__delete_alias.snap +32 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__dont_panic_on_8_in_octal_escape.snap +42 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__double_quoted_byte.snap +289 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__escape_alias.snap +32 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__escape_char_in_byte_literal.snap +43 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__escape_octet.snap +38 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__form_feed_alias.snap +32 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__fstring_constant_range.snap +90 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__fstring_escaped_character.snap +59 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__fstring_escaped_newline.snap +59 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__fstring_line_continuation.snap +61 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__fstring_parse_self_documenting_base.snap +57 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__fstring_parse_self_documenting_base_more.snap +93 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__fstring_parse_self_documenting_format.snap +71 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__fstring_unescaped_newline.snap +59 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__hts_alias.snap +32 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__invalid_byte_literal_error.snap +11 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__invalid_unicode_literal.snap +11 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__invalid_unicode_name_error.snap +11 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__missing_unicode_lbrace_error.snap +11 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__missing_unicode_rbrace_error.snap +11 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_empty_fstring.snap +34 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_empty_tstring.snap +34 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_f_string_concat_1.snap +56 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_f_string_concat_2.snap +56 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_f_string_concat_3.snap +85 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_f_string_concat_4.snap +97 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_f_t_string_concat_1.snap +64 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_f_t_string_concat_2.snap +76 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_fstring.snap +76 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_fstring_equals.snap +73 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_fstring_nested_concatenation_string_spec.snap +103 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_fstring_nested_spec.snap +76 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_fstring_nested_string_spec.snap +88 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_fstring_not_equals.snap +73 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_fstring_not_nested_spec.snap +66 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_fstring_self_doc_prec_space.snap +57 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_fstring_self_doc_trailing_space.snap +57 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_fstring_yield_expr.snap +51 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_string_concat.snap +47 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_string_triple_quotes_with_kind.snap +32 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_t_string_concat_1.snap +56 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_t_string_concat_2.snap +56 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_t_string_concat_3.snap +85 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_t_string_concat_4.snap +97 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_tstring.snap +76 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_tstring_equals.snap +73 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_tstring_nested_concatenation_string_spec.snap +103 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_tstring_nested_spec.snap +76 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_tstring_nested_string_spec.snap +88 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_tstring_not_equals.snap +73 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_tstring_not_nested_spec.snap +66 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_tstring_self_doc_prec_space.snap +57 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_tstring_self_doc_trailing_space.snap +57 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_tstring_yield_expr.snap +51 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_u_f_string_concat_1.snap +56 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_u_f_string_concat_2.snap +68 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_u_string_concat_1.snap +47 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_u_string_concat_2.snap +47 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_u_t_string_concat_1.snap +56 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_u_t_string_concat_2.snap +68 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__raw_byte_literal_1.snap +39 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__raw_byte_literal_2.snap +37 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__raw_fstring.snap +54 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__raw_tstring.snap +54 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__single_quoted_byte.snap +289 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__string_parser_escaped_mac_eol.snap +32 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__string_parser_escaped_unix_eol.snap +32 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__string_parser_escaped_windows_eol.snap +32 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__triple_quoted_raw_fstring.snap +54 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__triple_quoted_raw_tstring.snap +54 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__tstring_constant_range.snap +90 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__tstring_escaped_character.snap +59 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__tstring_escaped_newline.snap +59 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__tstring_line_continuation.snap +61 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__tstring_parse_self_documenting_base.snap +57 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__tstring_parse_self_documenting_base_more.snap +93 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__tstring_parse_self_documenting_format.snap +71 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__tstring_unescaped_newline.snap +59 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/string.rs +1156 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/token.rs +873 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/token_set.rs +52 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/token_source.rs +217 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/src/typing.rs +92 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/fixtures.rs +650 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/generate_inline_tests.rs +303 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@ann_assign_stmt_invalid_annotation.py.snap +242 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@ann_assign_stmt_invalid_target.py.snap +563 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@ann_assign_stmt_invalid_value.py.snap +249 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@ann_assign_stmt_missing_rhs.py.snap +46 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@ann_assign_stmt_type_alias_annotation.py.snap +123 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@args_unparenthesized_generator.py.snap +340 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@assert_empty_msg.py.snap +37 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@assert_empty_test.py.snap +37 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@assert_invalid_msg_expr.py.snap +178 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@assert_invalid_test_expr.py.snap +163 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@assign_stmt_invalid_target.py.snap +283 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@assign_stmt_invalid_value_expr.py.snap +347 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@assign_stmt_keyword_target.py.snap +163 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@assign_stmt_missing_rhs.py.snap +226 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@assign_stmt_starred_expr_value.py.snap +220 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@async_unexpected_token.py.snap +227 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@aug_assign_stmt_invalid_target.py.snap +256 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@aug_assign_stmt_invalid_value.py.snap +284 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@aug_assign_stmt_missing_rhs.py.snap +151 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@case_expect_indented_block.py.snap +95 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@class_def_empty_body.py.snap +94 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@class_def_missing_name.py.snap +158 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@class_def_unclosed_type_param_list.py.snap +127 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@class_type_params_py311.py.snap +197 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@clause_expect_indented_block.py.snap +70 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@clause_expect_single_statement.py.snap +59 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@comma_separated_missing_comma.py.snap +78 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@comma_separated_missing_comma_between_elements.py.snap +65 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@comma_separated_missing_element_between_commas.py.snap +64 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@comma_separated_missing_first_element.py.snap +58 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@comprehension_missing_for_after_async.py.snap +89 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@debug_shadow_class.py.snap +106 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@debug_shadow_function.py.snap +196 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@debug_shadow_import.py.snap +150 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@debug_shadow_match.py.snap +72 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@debug_shadow_try.py.snap +85 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@debug_shadow_type_alias.py.snap +111 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@debug_shadow_with.py.snap +100 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@decorator_await_expression_py38.py.snap +112 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@decorator_dict_literal_py38.py.snap +99 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@decorator_expression_py38.py.snap +117 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@decorator_float_literal_py38.py.snap +78 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@decorator_invalid_expression.py.snap +198 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@decorator_missing_expression.py.snap +215 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@decorator_missing_newline.py.snap +187 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@decorator_named_expression_py37.py.snap +155 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@decorator_non_toplevel_call_expression_py38.py.snap +113 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@decorator_unexpected_token.py.snap +94 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@del_debug_py39.py.snap +39 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@del_incomplete_target.py.snap +140 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@del_stmt_empty.py.snap +29 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@dotted_name_multiple_dots.py.snap +99 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@duplicate_match_class_attr.py.snap +825 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@duplicate_match_key.py.snap +1651 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@duplicate_type_parameter_names.py.snap +682 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@except_star_py310.py.snap +161 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@except_stmt_invalid_expression.py.snap +138 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@except_stmt_missing_as_name.py.snap +104 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@except_stmt_missing_exception.py.snap +170 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@except_stmt_missing_exception_and_as_name.py.snap +69 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@except_stmt_unparenthesized_tuple_as.py.snap +171 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@except_stmt_unparenthesized_tuple_no_as_py313.py.snap +159 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__arguments__double_starred.py.snap +250 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__arguments__duplicate_keyword_arguments.py.snap +155 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__arguments__invalid_expression.py.snap +226 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__arguments__invalid_keyword_expression.py.snap +262 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__arguments__invalid_order.py.snap +346 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__arguments__missing_argument.py.snap +65 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__arguments__missing_comma.py.snap +65 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__arguments__missing_expression.py.snap +188 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__arguments__starred.py.snap +211 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__arguments__unclosed_0.py.snap +85 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__arguments__unclosed_1.py.snap +94 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__arguments__unclosed_2.py.snap +94 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__attribute__invalid_member.py.snap +163 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__attribute__multiple_dots.py.snap +174 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__attribute__no_member.py.snap +99 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__await__no_expression_0.py.snap +74 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__await__no_expression_1.py.snap +80 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__await__recover.py.snap +370 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__bin_op__invalid_rhs_expression.py.snap +133 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__bin_op__missing_lhs.py.snap +69 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__bin_op__missing_rhs_0.py.snap +85 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__bin_op__missing_rhs_1.py.snap +117 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__bin_op__multiple_ops.py.snap +168 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__bin_op__named_expression.py.snap +137 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__bin_op__starred_expression.py.snap +102 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__bool_op__invalid_rhs_expression.py.snap +137 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__bool_op__missing_lhs.py.snap +36 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__bool_op__missing_rhs.py.snap +86 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__bool_op__named_expression.py.snap +120 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__bool_op__starred_expression.py.snap +106 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__compare__invalid_order.py.snap +186 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__compare__invalid_rhs_expression.py.snap +141 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__compare__missing_lhs.py.snap +69 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__compare__missing_rhs_0.py.snap +88 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__compare__missing_rhs_1.py.snap +100 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__compare__missing_rhs_2.py.snap +88 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__compare__multiple_equals.py.snap +134 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__compare__named_expression.py.snap +145 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__compare__starred_expression.py.snap +208 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__dict__comprehension.py.snap +941 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__dict__double_star.py.snap +638 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__dict__double_star_comprehension.py.snap +170 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__dict__missing_closing_brace_0.py.snap +114 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__dict__missing_closing_brace_1.py.snap +75 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__dict__missing_closing_brace_2.py.snap +94 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__dict__named_expression_0.py.snap +155 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__dict__named_expression_1.py.snap +181 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__dict__recover.py.snap +569 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__emoji_identifiers.py.snap +148 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__emoji_statement.py.snap +21 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__if__missing_orelse_expr_0.py.snap +96 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__if__missing_orelse_expr_1.py.snap +92 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__if__missing_test_expr_0.py.snap +96 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__if__missing_test_expr_1.py.snap +92 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__if__recover.py.snap +409 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__lambda_default_parameters.py.snap +112 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__lambda_duplicate_parameters.py.snap +400 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__list__comprehension.py.snap +905 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__list__missing_closing_bracket_0.py.snap +47 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__list__missing_closing_bracket_1.py.snap +62 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__list__missing_closing_bracket_2.py.snap +71 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__list__missing_closing_bracket_3.py.snap +94 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__list__recover.py.snap +347 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__list__star_expression_precedence.py.snap +527 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__named__invalid_target.py.snap +237 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__named__missing_expression_0.py.snap +46 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__named__missing_expression_1.py.snap +52 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__named__missing_expression_2.py.snap +112 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__named__missing_expression_3.py.snap +67 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__named__missing_expression_4.py.snap +83 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__parenthesized__generator.py.snap +160 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__parenthesized__missing_closing_paren_0.py.snap +38 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__parenthesized__missing_closing_paren_1.py.snap +53 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__parenthesized__missing_closing_paren_2.py.snap +72 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__parenthesized__missing_closing_paren_3.py.snap +95 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__parenthesized__parenthesized.py.snap +82 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__parenthesized__tuple.py.snap +424 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__parenthesized__tuple_starred_expr.py.snap +1554 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__set__comprehension.py.snap +905 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__set__missing_closing_curly_brace_0.py.snap +46 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__set__missing_closing_curly_brace_1.py.snap +61 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__set__missing_closing_curly_brace_2.py.snap +70 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__set__missing_closing_curly_brace_3.py.snap +93 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__set__recover.py.snap +335 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__set__star_expression_precedence.py.snap +519 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__subscript__invalid_slice_element.py.snap +340 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__subscript__unclosed_slice_0.py.snap +78 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__subscript__unclosed_slice_1.py.snap +123 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__unary.py.snap +58 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__unary__named_expression.py.snap +102 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__unary__no_expression_0.py.snap +74 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__unary__no_expression_1.py.snap +74 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__yield__named_expression.py.snap +129 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__yield__star_expression.py.snap +137 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__yield_from__starred_expression.py.snap +104 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__yield_from__unparenthesized.py.snap +177 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@f_string_conversion_follows_exclamation.py.snap +186 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@f_string_empty_expression.py.snap +122 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@f_string_invalid_conversion_flag_name_tok.py.snap +68 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@f_string_invalid_conversion_flag_other_tok.py.snap +122 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@f_string_invalid_starred_expr.py.snap +226 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@f_string_lambda_without_parentheses.py.snap +128 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@f_string_unclosed_lbrace.py.snap +376 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@f_string_unclosed_lbrace_in_format_spec.py.snap +156 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@for_iter_unpack_py38.py.snap +246 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@for_stmt_invalid_iter_expr.py.snap +214 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@for_stmt_invalid_target.py.snap +539 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@for_stmt_invalid_target_binary_expr.py.snap +382 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@for_stmt_invalid_target_in_keyword.py.snap +496 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@for_stmt_missing_in_keyword.py.snap +106 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@for_stmt_missing_iter.py.snap +74 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@for_stmt_missing_target.py.snap +66 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@from_import_dotted_names.py.snap +196 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@from_import_empty_names.py.snap +101 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@from_import_missing_module.py.snap +59 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@from_import_missing_rpar.py.snap +168 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@from_import_star_with_other_names.py.snap +220 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@from_import_unparenthesized_trailing_comma.py.snap +134 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@function_def_empty_body.py.snap +120 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@function_def_invalid_return_expr.py.snap +219 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@function_def_missing_identifier.py.snap +119 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@function_def_missing_return_type.py.snap +62 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@function_def_unclosed_parameter_list.py.snap +271 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@function_def_unclosed_type_param_list.py.snap +171 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@function_def_unparenthesized_return_types.py.snap +156 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@function_type_params_py311.py.snap +148 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@global_stmt_empty.py.snap +29 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@global_stmt_expression.py.snap +57 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@global_stmt_trailing_comma.py.snap +86 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@if_stmt_elif_missing_colon.py.snap +86 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@if_stmt_empty_body.py.snap +69 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@if_stmt_invalid_elif_test_expr.py.snap +118 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@if_stmt_invalid_test_expr.py.snap +148 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@if_stmt_missing_colon.py.snap +107 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@if_stmt_missing_test.py.snap +51 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@if_stmt_misspelled_elif.py.snap +137 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@implicitly_concatenated_unterminated_string.py.snap +197 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@implicitly_concatenated_unterminated_string_multiline.py.snap +266 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@import_alias_missing_asname.py.snap +40 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@import_stmt_empty.py.snap +29 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@import_stmt_parenthesized_names.py.snap +90 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@import_stmt_star_import.py.snap +136 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@import_stmt_trailing_comma.py.snap +72 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@invalid_annotation_class.py.snap +575 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@invalid_annotation_function.py.snap +1848 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@invalid_annotation_function_py314.py.snap +680 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@invalid_annotation_py314.py.snap +243 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@invalid_annotation_type_alias.py.snap +491 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@invalid_byte_literal.py.snap +120 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@invalid_del_target.py.snap +293 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@invalid_fstring_literal_element.py.snap +102 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@invalid_string_literal.py.snap +82 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@irrefutable_case_pattern.py.snap +429 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@iter_unpack_return_py37.py.snap +165 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@iter_unpack_yield_py37.py.snap +292 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@lambda_body_with_starred_expr.py.snap +319 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@lambda_body_with_yield_expr.py.snap +142 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@match_before_py310.py.snap +70 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@match_classify_as_keyword.py.snap +74 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@match_classify_as_keyword_or_identifier.py.snap +73 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@match_expected_colon.py.snap +85 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@match_stmt_expect_indented_block.py.snap +73 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@match_stmt_expected_case_block.py.snap +149 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@match_stmt_invalid_guard_expr.py.snap +239 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@match_stmt_invalid_subject_expr.py.snap +229 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@match_stmt_missing_guard_expr.py.snap +72 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@match_stmt_missing_pattern.py.snap +72 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@match_stmt_no_newline_before_case.py.snap +71 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@match_stmt_single_starred_subject.py.snap +73 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@mixed_bytes_and_non_bytes_literals.py.snap +193 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@multiple_assignment_in_case_pattern.py.snap +822 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@multiple_clauses_on_same_line.py.snap +429 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@named_expr_slice.py.snap +285 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@named_expr_slice_parse_error.py.snap +95 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@nested_async_comprehension_py310.py.snap +948 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@node_range_with_gaps.py.snap +141 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@nonlocal_declaration_at_module_level.py.snap +61 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@nonlocal_stmt_empty.py.snap +58 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@nonlocal_stmt_expression.py.snap +86 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@nonlocal_stmt_trailing_comma.py.snap +117 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@param_missing_annotation.py.snap +142 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@param_missing_default.py.snap +151 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@param_with_invalid_annotation.py.snap +275 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@param_with_invalid_default.py.snap +257 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@param_with_invalid_star_annotation.py.snap +371 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@param_with_star_annotation_py310.py.snap +90 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@params_duplicate_names.py.snap +189 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@params_expected_after_star_separator.py.snap +303 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@params_kwarg_after_star_separator.py.snap +73 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@params_multiple_kwargs.py.snap +89 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@params_multiple_slash_separator.py.snap +189 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@params_multiple_star_separator.py.snap +189 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@params_multiple_varargs.py.snap +305 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@params_no_arg_before_slash.py.snap +126 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@params_non_default_after_default.py.snap +133 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@params_star_after_slash.py.snap +358 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@params_star_separator_after_star_param.py.snap +211 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@params_var_keyword_with_default.py.snap +187 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@params_var_positional_with_default.py.snap +141 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@parenthesized_context_manager_py38.py.snap +225 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@parenthesized_kwarg_py38.py.snap +183 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@pep701_f_string_py311.py.snap +1024 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@pos_only_py37.py.snap +340 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@raise_stmt_from_without_exc.py.snap +62 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@raise_stmt_invalid_cause.py.snap +148 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@raise_stmt_invalid_exc.py.snap +121 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@raise_stmt_unparenthesized_tuple_cause.py.snap +110 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@raise_stmt_unparenthesized_tuple_exc.py.snap +146 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@re_lex_logical_token.py.snap +952 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@re_lex_logical_token_mac_eol.py.snap +119 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@re_lex_logical_token_windows_eol.py.snap +121 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@re_lexing__fstring_format_spec_1.py.snap +465 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@re_lexing__line_continuation_1.py.snap +118 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@re_lexing__line_continuation_windows_eol.py.snap +102 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@re_lexing__triple_quoted_fstring_1.py.snap +103 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@re_lexing__triple_quoted_fstring_2.py.snap +83 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@re_lexing__triple_quoted_fstring_3.py.snap +122 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@rebound_comprehension_variable.py.snap +1028 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@return_stmt_invalid_expr.py.snap +219 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@simple_and_compound_stmt_on_same_line.py.snap +73 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@simple_and_compound_stmt_on_same_line_in_block.py.snap +118 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@simple_stmts_on_same_line.py.snap +164 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@simple_stmts_on_same_line_in_block.py.snap +74 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@single_star_for.py.snap +120 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@single_star_return.py.snap +73 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@single_star_yield.py.snap +79 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@single_starred_assignment_target.py.snap +64 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@star_index_py310.py.snap +471 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@star_slices.py.snap +90 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__function_type_parameters.py.snap +463 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__if_extra_closing_parentheses.py.snap +84 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__if_extra_indent.py.snap +116 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__invalid_assignment_targets.py.snap +1894 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__invalid_augmented_assignment_target.py.snap +1737 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__match__as_pattern_0.py.snap +104 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__match__as_pattern_1.py.snap +86 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__match__as_pattern_2.py.snap +140 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__match__as_pattern_3.py.snap +169 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__match__as_pattern_4.py.snap +128 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__match__invalid_class_pattern.py.snap +440 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__match__invalid_lhs_or_rhs_pattern.py.snap +1242 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__match__invalid_mapping_pattern.py.snap +649 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__match__star_pattern_usage.py.snap +615 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__match__unary_add_usage.py.snap +454 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__with__ambiguous_lpar_with_items.py.snap +1882 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__with__empty_with_items.py.snap +77 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__with__unclosed_ambiguous_lpar.py.snap +85 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__with__unclosed_ambiguous_lpar_eof.py.snap +45 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__with__unparenthesized_with_items.py.snap +405 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@t_string_empty_expression.py.snap +124 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@t_string_invalid_conversion_flag_name_tok.py.snap +69 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@t_string_invalid_conversion_flag_other_tok.py.snap +124 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@t_string_invalid_starred_expr.py.snap +227 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@t_string_lambda_without_parentheses.py.snap +132 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@t_string_unclosed_lbrace.py.snap +383 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@t_string_unclosed_lbrace_in_format_spec.py.snap +158 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@template_strings_py313.py.snap +231 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@try_stmt_invalid_order.py.snap +89 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@try_stmt_missing_except_finally.py.snap +76 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@try_stmt_misspelled_except.py.snap +294 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@try_stmt_mixed_except_kind.py.snap +279 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@tuple_context_manager_py38.py.snap +269 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@type_alias_incomplete_stmt.py.snap +97 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@type_alias_invalid_value_expr.py.snap +198 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@type_param_default_py312.py.snap +344 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@type_param_invalid_bound_expr.py.snap +312 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@type_param_missing_bound.py.snap +129 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@type_param_param_spec_bound.py.snap +104 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@type_param_param_spec_invalid_default_expr.py.snap +377 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@type_param_param_spec_missing_default.py.snap +127 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@type_param_type_var_invalid_default_expr.py.snap +461 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@type_param_type_var_missing_default.py.snap +191 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@type_param_type_var_tuple_bound.py.snap +104 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@type_param_type_var_tuple_invalid_default_expr.py.snap +386 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@type_param_type_var_tuple_missing_default.py.snap +127 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@type_params_empty.py.snap +116 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@type_stmt_py311.py.snap +46 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@unparenthesized_named_expr_index_py38.py.snap +67 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@unparenthesized_named_expr_set_comp_py38.py.snap +103 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@unparenthesized_named_expr_set_literal_py38.py.snap +207 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@unterminated_fstring_newline_recovery.py.snap +399 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@walrus_py37.py.snap +52 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@while_stmt_invalid_test_expr.py.snap +214 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@while_stmt_missing_colon.py.snap +68 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@while_stmt_missing_test.py.snap +103 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@with_items_parenthesized_missing_colon.py.snap +67 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@with_items_parenthesized_missing_comma.py.snap +380 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/invalid_syntax@write_to_debug_expr.py.snap +227 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@all_async_comprehension_py310.py.snap +163 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@ambiguous_lpar_with_items_binary_expr.py.snap +427 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@ambiguous_lpar_with_items_if_expr.py.snap +322 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@ann_assign_stmt_simple_target.py.snap +140 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@args_unparenthesized_generator.py.snap +341 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@assign_stmt_starred_expr_value.py.snap +177 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@assign_targets_terminator.py.snap +162 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@async_for_statement.py.snap +54 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@async_function_definition.py.snap +56 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@async_with_statement.py.snap +52 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@class_def_arguments.py.snap +79 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@class_keyword_in_case_pattern.py.snap +96 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@class_type_params_py312.py.snap +137 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@comma_separated_regular_list_terminator.py.snap +190 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@debug_rename_import.py.snap +98 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@decorator_async_function.py.snap +69 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@decorator_await_expression_py39.py.snap +103 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@decorator_expression_dotted_ident_py38.py.snap +93 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@decorator_expression_eval_hack_py38.py.snap +102 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@decorator_expression_identity_hack_py38.py.snap +190 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@decorator_expression_py39.py.snap +232 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@del_debug_py38.py.snap +32 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@del_targets_terminator.py.snap +128 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@dotted_name_normalized_spaces.py.snap +52 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@duplicate_match_key_attr.py.snap +132 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@except_star_py311.py.snap +72 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@except_stmt_as_name_soft_keyword.py.snap +152 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@except_stmt_unparenthesized_tuple_no_as_py314.py.snap +140 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__arguments.py.snap +2022 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__attribute.py.snap +268 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__await.py.snap +594 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__bin_op.py.snap +1198 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__bool_op.py.snap +459 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__call.py.snap +682 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__compare.py.snap +792 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__dictionary.py.snap +1393 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__dictionary_comprehension.py.snap +1151 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__f_string.py.snap +3031 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__generator.py.snap +798 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__if.py.snap +713 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__lambda.py.snap +1850 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__list.py.snap +925 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__list_comprehension.py.snap +1489 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__name.py.snap +142 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__named.py.snap +368 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__number_literal.py.snap +1181 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__parenthesized.py.snap +274 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__set.py.snap +708 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__set_comprehension.py.snap +856 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__slice.py.snap +747 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__starred.py.snap +405 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__string.py.snap +348 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__subscript.py.snap +893 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__t_string.py.snap +3505 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__tuple.py.snap +808 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__unary_op.py.snap +584 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__yield.py.snap +530 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__yield_from.py.snap +431 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@for_in_target_valid_expr.py.snap +230 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@for_iter_unpack_py38.py.snap +212 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@for_iter_unpack_py39.py.snap +212 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@from_import_no_space.py.snap +56 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@from_import_soft_keyword_module_name.py.snap +120 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@from_import_stmt_terminator.py.snap +256 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@fstring_format_spec_terminator.py.snap +156 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@function_def_parameter_range.py.snap +114 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@function_def_parenthesized_return_types.py.snap +142 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@function_def_valid_return_expr.py.snap +234 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@function_type_params_py312.py.snap +76 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@global_stmt.py.snap +52 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@import_as_name_soft_keyword.py.snap +88 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@import_stmt_terminator.py.snap +132 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@irrefutable_case_pattern_at_end.py.snap +267 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@iter_unpack_return_py37.py.snap +157 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@iter_unpack_return_py38.py.snap +157 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@iter_unpack_yield_py37.py.snap +163 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@iter_unpack_yield_py38.py.snap +275 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@lambda_with_no_parameters.py.snap +38 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@lambda_with_valid_body.py.snap +420 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@match_after_py310.py.snap +61 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@match_as_pattern.py.snap +108 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@match_as_pattern_soft_keyword.py.snap +163 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@match_attr_pattern_soft_keyword.py.snap +272 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@match_classify_as_identifier_1.py.snap +49 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@match_classify_as_identifier_2.py.snap +366 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@match_classify_as_keyword_1.py.snap +670 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@match_classify_as_keyword_2.py.snap +270 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@match_classify_as_keyword_or_identifier.py.snap +334 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@match_sequence_pattern_parentheses_terminator.py.snap +142 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@match_sequence_pattern_terminator.py.snap +226 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@match_stmt_subject_expr.py.snap +264 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@match_stmt_valid_guard_expr.py.snap +327 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@multiple_assignment_in_case_pattern.py.snap +131 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@nested_async_comprehension_py310.py.snap +310 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@nested_async_comprehension_py311.py.snap +466 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@non_duplicate_type_parameter_names.py.snap +430 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@non_rebound_comprehension_variable.py.snap +97 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@nonlocal_declaration_at_module_level.py.snap +57 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@nonlocal_stmt.py.snap +80 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@other__atom.py.snap +66 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@other__decorator.py.snap +797 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@param_with_annotation.py.snap +181 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@param_with_default.py.snap +348 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@param_with_star_annotation.py.snap +182 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@param_with_star_annotation_py310.py.snap +459 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@param_with_star_annotation_py311.py.snap +83 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@params_non_default_after_star.py.snap +271 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@params_seen_keyword_only_param_after_star.py.snap +160 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@parenthesized_context_manager_py39.py.snap +199 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@parenthesized_kwarg_py37.py.snap +63 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@parenthesized_named_expr_index_py38.py.snap +60 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@parenthesized_named_expr_py38.py.snap +151 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@parenthesized_star_index_py310.py.snap +160 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@pep701_f_string_py311.py.snap +596 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@pep701_f_string_py312.py.snap +654 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@pep750_t_string_py314.py.snap +654 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@pos_only_py38.py.snap +72 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@read_from_debug.py.snap +69 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@simple_stmts_in_block.py.snap +141 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@simple_stmts_with_semicolons.py.snap +104 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@single_star_in_tuple.py.snap +254 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@single_starred_assignment_target.py.snap +171 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@star_index_py311.py.snap +406 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__ambiguous_lpar_with_items.py.snap +4650 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__annotated_assignment.py.snap +313 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__assert.py.snap +388 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__assignment.py.snap +1069 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__augmented_assignment.py.snap +552 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__class.py.snap +1450 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__delete.py.snap +341 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__for.py.snap +723 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__from_import.py.snap +280 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__function.py.snap +3914 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__if.py.snap +783 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__import.py.snap +154 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__match.py.snap +8942 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__raise.py.snap +561 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__return.py.snap +379 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__simple.py.snap +286 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__try.py.snap +1790 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__type.py.snap +3180 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__while.py.snap +533 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__with.py.snap +462 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@template_strings_py314.py.snap +194 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@tuple_context_manager_py38.py.snap +87 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@type_param_default_py313.py.snap +201 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@type_param_param_spec.py.snap +228 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@type_param_type_var.py.snap +361 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@type_param_type_var_tuple.py.snap +286 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@type_stmt_py312.py.snap +39 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@unparenthesized_named_expr_index_py39.py.snap +60 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@unparenthesized_named_expr_py39.py.snap +151 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@valid_annotation_class.py.snap +285 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@valid_annotation_function_py313.py.snap +604 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@valid_annotation_py313.py.snap +206 -0
- rtest-1.0.2/ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@walrus_py38.py.snap +45 -0
- rtest-1.0.2/ruff/crates/ruff_python_trivia/Cargo.toml +23 -0
- rtest-1.0.2/ruff/crates/ruff_python_trivia/src/comment_ranges.rs +220 -0
- rtest-1.0.2/ruff/crates/ruff_python_trivia/src/comments.rs +121 -0
- rtest-1.0.2/ruff/crates/ruff_python_trivia/src/cursor.rs +172 -0
- rtest-1.0.2/ruff/crates/ruff_python_trivia/src/lib.rs +14 -0
- rtest-1.0.2/ruff/crates/ruff_python_trivia/src/pragmas.rs +30 -0
- rtest-1.0.2/ruff/crates/ruff_python_trivia/src/textwrap.rs +465 -0
- rtest-1.0.2/ruff/crates/ruff_python_trivia/src/tokenizer.rs +1027 -0
- rtest-1.0.2/ruff/crates/ruff_python_trivia/src/whitespace.rs +80 -0
- rtest-1.0.2/ruff/crates/ruff_source_file/Cargo.toml +29 -0
- rtest-1.0.2/ruff/crates/ruff_source_file/src/lib.rs +318 -0
- rtest-1.0.2/ruff/crates/ruff_source_file/src/line_index.rs +943 -0
- rtest-1.0.2/ruff/crates/ruff_source_file/src/line_ranges.rs +396 -0
- rtest-1.0.2/ruff/crates/ruff_source_file/src/newlines.rs +457 -0
- rtest-1.0.2/ruff/crates/ruff_text_size/Cargo.toml +32 -0
- rtest-1.0.2/ruff/crates/ruff_text_size/src/lib.rs +36 -0
- rtest-1.0.2/ruff/crates/ruff_text_size/src/range.rs +546 -0
- rtest-1.0.2/ruff/crates/ruff_text_size/src/schemars_impls.rs +33 -0
- rtest-1.0.2/ruff/crates/ruff_text_size/src/serde_impls.rs +47 -0
- rtest-1.0.2/ruff/crates/ruff_text_size/src/size.rs +197 -0
- rtest-1.0.2/ruff/crates/ruff_text_size/src/traits.rs +99 -0
- rtest-1.0.2/ruff/crates/ruff_text_size/tests/auto_traits.rs +18 -0
- rtest-1.0.2/ruff/crates/ruff_text_size/tests/constructors.rs +24 -0
- rtest-1.0.2/ruff/crates/ruff_text_size/tests/indexing.rs +8 -0
- rtest-1.0.2/ruff/crates/ruff_text_size/tests/main.rs +79 -0
- rtest-1.0.2/ruff/crates/ruff_text_size/tests/serde.rs +83 -0
- rtest-1.0.2/scripts/install-git-hooks.sh +134 -0
- rtest-1.0.2/src/lib.rs +179 -0
- rtest-1.0.2/src/main.rs +111 -0
- rtest-1.0.2/tests/cli_integration.rs +106 -0
- rtest-1.0.2/tests/cli_parallel_options.rs +125 -0
- rtest-1.0.2/tests/common/mod.rs +80 -0
- rtest-1.0.2/tests/documentation_examples.rs +131 -0
- rtest-1.0.2/tests/test_collection_integration.py +256 -0
- rtest-1.0.2/tests/test_multiple_errors.rs +82 -0
- rtest-1.0.2/tests/test_parallel_logic.py +404 -0
- rtest-1.0.2/tests/test_real_file_integration.py +265 -0
- rtest-1.0.2/uv.lock +267 -0
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
name: CI
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
pull_request:
|
|
5
|
+
branches: [ main ]
|
|
6
|
+
|
|
7
|
+
jobs:
|
|
8
|
+
test:
|
|
9
|
+
runs-on: ${{ matrix.os }}
|
|
10
|
+
strategy:
|
|
11
|
+
fail-fast: false
|
|
12
|
+
matrix:
|
|
13
|
+
os: [ubuntu-22.04, ubuntu-24.04]
|
|
14
|
+
# TODO(hughhan1): Add macOS runners back when budget allows
|
|
15
|
+
# macos-13, macos-14 - currently disabled due to cost
|
|
16
|
+
# As of July 2025, macOS runners cost 10x more than Linux runners
|
|
17
|
+
python-version: ['3.9', '3.10', '3.11', '3.12']
|
|
18
|
+
|
|
19
|
+
steps:
|
|
20
|
+
- uses: actions/checkout@v4
|
|
21
|
+
with:
|
|
22
|
+
submodules: true
|
|
23
|
+
|
|
24
|
+
- name: Set up Python
|
|
25
|
+
uses: actions/setup-python@v5
|
|
26
|
+
with:
|
|
27
|
+
python-version: ${{ matrix.python-version }}
|
|
28
|
+
|
|
29
|
+
- name: Set up Rust
|
|
30
|
+
uses: dtolnay/rust-toolchain@stable
|
|
31
|
+
|
|
32
|
+
- name: Cache Rust dependencies
|
|
33
|
+
uses: actions/cache@v4
|
|
34
|
+
with:
|
|
35
|
+
path: |
|
|
36
|
+
~/.cargo/registry
|
|
37
|
+
~/.cargo/git
|
|
38
|
+
target
|
|
39
|
+
key: ${{ runner.os }}-${{ matrix.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
|
|
40
|
+
|
|
41
|
+
- name: Install maturin
|
|
42
|
+
run: |
|
|
43
|
+
if [ "${{ runner.os }}" = "Windows" ]; then
|
|
44
|
+
pip install maturin
|
|
45
|
+
else
|
|
46
|
+
pip install maturin[patchelf]
|
|
47
|
+
fi
|
|
48
|
+
shell: bash
|
|
49
|
+
|
|
50
|
+
- name: Install ziglang (Linux only)
|
|
51
|
+
if: runner.os == 'Linux'
|
|
52
|
+
run: pip install ziglang
|
|
53
|
+
|
|
54
|
+
- name: Build wheel
|
|
55
|
+
run: |
|
|
56
|
+
if [ "${{ runner.os }}" = "Linux" ]; then
|
|
57
|
+
maturin build --release --out dist --zig
|
|
58
|
+
else
|
|
59
|
+
maturin build --release --out dist
|
|
60
|
+
fi
|
|
61
|
+
shell: bash
|
|
62
|
+
|
|
63
|
+
- name: Install built wheel
|
|
64
|
+
run: pip install --find-links dist rtest
|
|
65
|
+
|
|
66
|
+
- name: Test import
|
|
67
|
+
run: python -c "import rtest; print('Import successful')"
|
|
68
|
+
|
|
69
|
+
- name: Run Python integration tests
|
|
70
|
+
run: python -m unittest discover tests/ -v
|
|
71
|
+
|
|
72
|
+
- name: Run Rust tests
|
|
73
|
+
run: cargo test --bin rtest
|
|
74
|
+
|
|
75
|
+
lint:
|
|
76
|
+
runs-on: ubuntu-latest
|
|
77
|
+
steps:
|
|
78
|
+
- uses: actions/checkout@v4
|
|
79
|
+
with:
|
|
80
|
+
submodules: true
|
|
81
|
+
|
|
82
|
+
- name: Set up Python
|
|
83
|
+
uses: actions/setup-python@v5
|
|
84
|
+
with:
|
|
85
|
+
python-version: '3.11'
|
|
86
|
+
|
|
87
|
+
- name: Set up Rust
|
|
88
|
+
uses: dtolnay/rust-toolchain@stable
|
|
89
|
+
with:
|
|
90
|
+
components: rustfmt, clippy
|
|
91
|
+
|
|
92
|
+
- name: Install Python dev dependencies
|
|
93
|
+
run: |
|
|
94
|
+
pip install --upgrade pip
|
|
95
|
+
pip install -e ".[dev]"
|
|
96
|
+
|
|
97
|
+
- name: Run ruff format check
|
|
98
|
+
run: ruff format --check python/ tests/
|
|
99
|
+
|
|
100
|
+
- name: Run ruff lint
|
|
101
|
+
run: ruff check python/ tests/
|
|
102
|
+
|
|
103
|
+
- name: Run mypy
|
|
104
|
+
run: mypy python/
|
|
105
|
+
|
|
106
|
+
- name: Check Rust formatting
|
|
107
|
+
run: cargo fmt -- --check
|
|
108
|
+
|
|
109
|
+
- name: Run clippy
|
|
110
|
+
run: cargo clippy --bin rtest -- -D warnings
|
|
@@ -0,0 +1,178 @@
|
|
|
1
|
+
name: Release
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches:
|
|
6
|
+
- main
|
|
7
|
+
|
|
8
|
+
permissions:
|
|
9
|
+
contents: write
|
|
10
|
+
issues: write
|
|
11
|
+
pull-requests: write
|
|
12
|
+
id-token: write
|
|
13
|
+
|
|
14
|
+
jobs:
|
|
15
|
+
release:
|
|
16
|
+
runs-on: ubuntu-latest
|
|
17
|
+
if: github.repository == 'hughhan1/rtest'
|
|
18
|
+
outputs:
|
|
19
|
+
new_release: ${{ steps.check_release.outputs.new_release }}
|
|
20
|
+
steps:
|
|
21
|
+
- uses: actions/checkout@v4
|
|
22
|
+
with:
|
|
23
|
+
fetch-depth: 0
|
|
24
|
+
token: ${{ secrets.GITHUB_TOKEN }}
|
|
25
|
+
submodules: recursive
|
|
26
|
+
|
|
27
|
+
- name: Set up Python
|
|
28
|
+
uses: actions/setup-python@v5
|
|
29
|
+
with:
|
|
30
|
+
python-version: '3.11'
|
|
31
|
+
|
|
32
|
+
- name: Set up Rust
|
|
33
|
+
uses: dtolnay/rust-toolchain@stable
|
|
34
|
+
|
|
35
|
+
- name: Install python-semantic-release
|
|
36
|
+
run: pip install python-semantic-release
|
|
37
|
+
|
|
38
|
+
- name: Run semantic-release
|
|
39
|
+
env:
|
|
40
|
+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
41
|
+
run: semantic-release version && semantic-release publish
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
- name: Check if release was created
|
|
45
|
+
id: check_release
|
|
46
|
+
run: |
|
|
47
|
+
if git describe --exact-match --tags HEAD 2>/dev/null; then
|
|
48
|
+
echo "new_release=true" >> $GITHUB_OUTPUT
|
|
49
|
+
else
|
|
50
|
+
echo "new_release=false" >> $GITHUB_OUTPUT
|
|
51
|
+
fi
|
|
52
|
+
|
|
53
|
+
- name: Build wheels
|
|
54
|
+
if: steps.check_release.outputs.new_release == 'true'
|
|
55
|
+
uses: PyO3/maturin-action@v1
|
|
56
|
+
with:
|
|
57
|
+
target: x86_64
|
|
58
|
+
args: --release --out dist --find-interpreter
|
|
59
|
+
sccache: 'true'
|
|
60
|
+
manylinux: auto
|
|
61
|
+
|
|
62
|
+
- name: Upload wheels
|
|
63
|
+
if: steps.check_release.outputs.new_release == 'true'
|
|
64
|
+
uses: actions/upload-artifact@v4
|
|
65
|
+
with:
|
|
66
|
+
name: wheels-linux-x86_64
|
|
67
|
+
path: dist
|
|
68
|
+
|
|
69
|
+
- name: Publish to PyPI
|
|
70
|
+
if: steps.check_release.outputs.new_release == 'true'
|
|
71
|
+
uses: pypa/gh-action-pypi-publish@release/v1
|
|
72
|
+
with:
|
|
73
|
+
password: ${{ secrets.PYPI_API_TOKEN }}
|
|
74
|
+
|
|
75
|
+
linux:
|
|
76
|
+
runs-on: ${{ matrix.platform.runner }}
|
|
77
|
+
needs: release
|
|
78
|
+
if: needs.release.outputs.new_release == 'true'
|
|
79
|
+
strategy:
|
|
80
|
+
matrix:
|
|
81
|
+
platform:
|
|
82
|
+
- runner: ubuntu-latest
|
|
83
|
+
target: x86_64
|
|
84
|
+
- runner: ubuntu-latest
|
|
85
|
+
target: aarch64
|
|
86
|
+
steps:
|
|
87
|
+
- uses: actions/checkout@v4
|
|
88
|
+
with:
|
|
89
|
+
ref: main
|
|
90
|
+
submodules: recursive
|
|
91
|
+
|
|
92
|
+
- name: Build wheels
|
|
93
|
+
uses: PyO3/maturin-action@v1
|
|
94
|
+
with:
|
|
95
|
+
target: ${{ matrix.platform.target }}
|
|
96
|
+
args: --release --out dist --find-interpreter
|
|
97
|
+
sccache: 'true'
|
|
98
|
+
manylinux: auto
|
|
99
|
+
before-script-linux: |
|
|
100
|
+
if [ "${{ matrix.platform.target }}" = "aarch64" ]; then
|
|
101
|
+
export CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER=aarch64-linux-gnu-gcc
|
|
102
|
+
export CC_aarch64_unknown_linux_gnu=aarch64-linux-gnu-gcc
|
|
103
|
+
export CXX_aarch64_unknown_linux_gnu=aarch64-linux-gnu-g++
|
|
104
|
+
fi
|
|
105
|
+
|
|
106
|
+
- name: Upload wheels
|
|
107
|
+
uses: actions/upload-artifact@v4
|
|
108
|
+
with:
|
|
109
|
+
name: wheels-${{ matrix.platform.runner }}-${{ matrix.platform.target }}
|
|
110
|
+
path: dist
|
|
111
|
+
|
|
112
|
+
- name: Publish to PyPI
|
|
113
|
+
uses: pypa/gh-action-pypi-publish@release/v1
|
|
114
|
+
with:
|
|
115
|
+
password: ${{ secrets.PYPI_API_TOKEN }}
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
macos:
|
|
119
|
+
runs-on: ${{ matrix.platform.runner }}
|
|
120
|
+
needs: release
|
|
121
|
+
if: needs.release.outputs.new_release == 'true'
|
|
122
|
+
strategy:
|
|
123
|
+
matrix:
|
|
124
|
+
platform:
|
|
125
|
+
- runner: macos-latest
|
|
126
|
+
target: x86_64
|
|
127
|
+
- runner: macos-14
|
|
128
|
+
target: aarch64
|
|
129
|
+
steps:
|
|
130
|
+
- uses: actions/checkout@v4
|
|
131
|
+
with:
|
|
132
|
+
ref: main
|
|
133
|
+
submodules: recursive
|
|
134
|
+
|
|
135
|
+
- name: Build wheels
|
|
136
|
+
uses: PyO3/maturin-action@v1
|
|
137
|
+
with:
|
|
138
|
+
target: ${{ matrix.platform.target }}
|
|
139
|
+
args: --release --out dist --find-interpreter
|
|
140
|
+
sccache: 'true'
|
|
141
|
+
|
|
142
|
+
- name: Upload wheels
|
|
143
|
+
uses: actions/upload-artifact@v4
|
|
144
|
+
with:
|
|
145
|
+
name: wheels-${{ matrix.platform.runner }}-${{ matrix.platform.target }}
|
|
146
|
+
path: dist
|
|
147
|
+
|
|
148
|
+
- name: Publish to PyPI
|
|
149
|
+
uses: pypa/gh-action-pypi-publish@release/v1
|
|
150
|
+
with:
|
|
151
|
+
password: ${{ secrets.PYPI_API_TOKEN }}
|
|
152
|
+
|
|
153
|
+
sdist:
|
|
154
|
+
runs-on: ubuntu-latest
|
|
155
|
+
needs: release
|
|
156
|
+
if: needs.release.outputs.new_release == 'true'
|
|
157
|
+
steps:
|
|
158
|
+
- uses: actions/checkout@v4
|
|
159
|
+
with:
|
|
160
|
+
ref: main
|
|
161
|
+
submodules: recursive
|
|
162
|
+
|
|
163
|
+
- name: Build sdist
|
|
164
|
+
uses: PyO3/maturin-action@v1
|
|
165
|
+
with:
|
|
166
|
+
command: sdist
|
|
167
|
+
args: --out dist
|
|
168
|
+
|
|
169
|
+
- name: Upload sdist
|
|
170
|
+
uses: actions/upload-artifact@v4
|
|
171
|
+
with:
|
|
172
|
+
name: wheels-sdist
|
|
173
|
+
path: dist
|
|
174
|
+
|
|
175
|
+
- name: Publish to PyPI
|
|
176
|
+
uses: pypa/gh-action-pypi-publish@release/v1
|
|
177
|
+
with:
|
|
178
|
+
password: ${{ secrets.PYPI_API_TOKEN }}
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
name: Test Release
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches:
|
|
6
|
+
- beta
|
|
7
|
+
workflow_dispatch:
|
|
8
|
+
|
|
9
|
+
permissions:
|
|
10
|
+
contents: write
|
|
11
|
+
issues: write
|
|
12
|
+
pull-requests: write
|
|
13
|
+
id-token: write
|
|
14
|
+
|
|
15
|
+
jobs:
|
|
16
|
+
test-release:
|
|
17
|
+
runs-on: ubuntu-latest
|
|
18
|
+
steps:
|
|
19
|
+
- uses: actions/checkout@v4
|
|
20
|
+
with:
|
|
21
|
+
fetch-depth: 0
|
|
22
|
+
token: ${{ secrets.GITHUB_TOKEN }}
|
|
23
|
+
submodules: recursive
|
|
24
|
+
|
|
25
|
+
- name: Set up Python
|
|
26
|
+
uses: actions/setup-python@v5
|
|
27
|
+
with:
|
|
28
|
+
python-version: '3.11'
|
|
29
|
+
|
|
30
|
+
- name: Set up Rust
|
|
31
|
+
uses: dtolnay/rust-toolchain@stable
|
|
32
|
+
|
|
33
|
+
- name: Install python-semantic-release
|
|
34
|
+
run: pip install python-semantic-release
|
|
35
|
+
|
|
36
|
+
- name: Check what would be released
|
|
37
|
+
env:
|
|
38
|
+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
39
|
+
run: semantic-release version --no-push
|
|
40
|
+
|
|
41
|
+
- name: Build wheels for testing
|
|
42
|
+
uses: PyO3/maturin-action@v1
|
|
43
|
+
with:
|
|
44
|
+
target: x86_64
|
|
45
|
+
args: --release --out dist --find-interpreter
|
|
46
|
+
sccache: 'true'
|
|
47
|
+
manylinux: auto
|
|
48
|
+
|
|
49
|
+
- name: Upload to TestPyPI
|
|
50
|
+
if: github.ref == 'refs/heads/beta'
|
|
51
|
+
uses: pypa/gh-action-pypi-publish@release/v1
|
|
52
|
+
with:
|
|
53
|
+
repository-url: https://test.pypi.org/legacy/
|
|
54
|
+
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
|
|
55
|
+
skip-existing: true
|
|
56
|
+
|
|
57
|
+
- name: Test install from TestPyPI
|
|
58
|
+
if: github.ref == 'refs/heads/beta'
|
|
59
|
+
run: |
|
|
60
|
+
sleep 60 # Wait for TestPyPI to process
|
|
61
|
+
pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ rtest
|
|
62
|
+
python -c "import rtest; print('Test install successful')"
|
rtest-1.0.2/.gitignore
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/target
|
|
2
|
+
Cargo.lock
|
|
3
|
+
|
|
4
|
+
# Python
|
|
5
|
+
__pycache__/
|
|
6
|
+
*.py[cod]
|
|
7
|
+
*$py.class
|
|
8
|
+
*.so
|
|
9
|
+
.Python
|
|
10
|
+
build/
|
|
11
|
+
develop-eggs/
|
|
12
|
+
dist/
|
|
13
|
+
downloads/
|
|
14
|
+
eggs/
|
|
15
|
+
.eggs/
|
|
16
|
+
lib/
|
|
17
|
+
lib64/
|
|
18
|
+
parts/
|
|
19
|
+
sdist/
|
|
20
|
+
var/
|
|
21
|
+
wheels/
|
|
22
|
+
pip-wheel-metadata/
|
|
23
|
+
share/python-wheels/
|
|
24
|
+
*.egg-info/
|
|
25
|
+
.installed.cfg
|
|
26
|
+
*.egg
|
|
27
|
+
|
|
28
|
+
# Maturin
|
|
29
|
+
target/
|
|
30
|
+
*.pyd
|
|
31
|
+
*.so
|
rtest-1.0.2/.gitmodules
ADDED
rtest-1.0.2/CHANGELOG.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
+
|
|
8
|
+
## [0.1.0] - 2025-07-03
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- **Resilient Test Collection**: Unlike pytest which stops execution when collection errors occur, RTest continues running tests even when some files fail to collect, providing partial test results while fixing syntax errors
|
|
12
|
+
- **Python Package Integration**: Auto-detection of current Python environment with seamless pytest integration
|
|
13
|
+
- **Parallel Test Execution**: pytest-xdist style parallel test execution for improved performance
|
|
14
|
+
- **Comprehensive Error Handling**: Collect all syntax errors instead of failing fast, allowing developers to see all issues at once
|
|
15
|
+
- **Smart Test Filtering**: Outputs collected tests and filters test files with intelligent pattern matching
|
|
16
|
+
- **Python Module and CLI Support**: Can be used both as a Python module (`from rtest import run_tests`) and as a CLI tool (`rtest`)
|
|
17
|
+
- **Fatal Error Handling**: Robust handling of Python parse errors and collection failures
|
|
18
|
+
|
|
19
|
+
## [Unreleased]
|
|
@@ -0,0 +1,197 @@
|
|
|
1
|
+
Contributing to RTest
|
|
2
|
+
====================
|
|
3
|
+
|
|
4
|
+
Thank you for your interest in contributing to RTest! This document provides guidelines for contributors.
|
|
5
|
+
|
|
6
|
+
Getting Started
|
|
7
|
+
---------------
|
|
8
|
+
|
|
9
|
+
1. Fork the repository on GitHub
|
|
10
|
+
2. Clone your fork locally::
|
|
11
|
+
|
|
12
|
+
git clone https://github.com/yourusername/rtest.git
|
|
13
|
+
cd rtest
|
|
14
|
+
|
|
15
|
+
3. Install development dependencies::
|
|
16
|
+
|
|
17
|
+
uv pip install -e ".[dev]"
|
|
18
|
+
uv pip install maturin
|
|
19
|
+
|
|
20
|
+
4. Set up Rust toolchain::
|
|
21
|
+
|
|
22
|
+
rustup update stable
|
|
23
|
+
|
|
24
|
+
Development Workflow
|
|
25
|
+
--------------------
|
|
26
|
+
|
|
27
|
+
1. Create a feature branch::
|
|
28
|
+
|
|
29
|
+
git checkout -b feature/your-feature-name
|
|
30
|
+
|
|
31
|
+
2. Install in development mode::
|
|
32
|
+
|
|
33
|
+
maturin develop
|
|
34
|
+
|
|
35
|
+
3. Run tests to ensure everything works::
|
|
36
|
+
|
|
37
|
+
uv run python -m unittest discover tests/ -v
|
|
38
|
+
cargo test
|
|
39
|
+
|
|
40
|
+
4. Make your changes following our coding standards
|
|
41
|
+
|
|
42
|
+
5. Run linting and type checking::
|
|
43
|
+
|
|
44
|
+
uv run ruff format python/ tests/
|
|
45
|
+
uv run ruff check python/ tests/
|
|
46
|
+
uv run mypy python/
|
|
47
|
+
cargo fmt
|
|
48
|
+
cargo clippy
|
|
49
|
+
|
|
50
|
+
6. Commit your changes using conventional commits::
|
|
51
|
+
|
|
52
|
+
git commit -m "feat: add new feature description"
|
|
53
|
+
|
|
54
|
+
7. Push to your fork and create a pull request
|
|
55
|
+
|
|
56
|
+
Commit Messages
|
|
57
|
+
--------------
|
|
58
|
+
|
|
59
|
+
We use `Conventional Commits <https://www.conventionalcommits.org/>`_ for automated versioning:
|
|
60
|
+
|
|
61
|
+
- ``feat: add new feature`` → minor version bump
|
|
62
|
+
- ``fix: resolve bug`` → patch version bump
|
|
63
|
+
- ``feat!: breaking change`` → major version bump
|
|
64
|
+
- ``docs: update documentation`` → no version bump
|
|
65
|
+
|
|
66
|
+
Common types: ``feat``, ``fix``, ``docs``, ``style``, ``refactor``, ``test``, ``chore``
|
|
67
|
+
|
|
68
|
+
Testing
|
|
69
|
+
-------
|
|
70
|
+
|
|
71
|
+
Run the full test suite::
|
|
72
|
+
|
|
73
|
+
# Python tests
|
|
74
|
+
uv run python -m unittest discover tests/ -v
|
|
75
|
+
|
|
76
|
+
# Rust tests
|
|
77
|
+
cargo test
|
|
78
|
+
|
|
79
|
+
# Integration tests
|
|
80
|
+
maturin develop
|
|
81
|
+
uv run python -c "import rtest; print('Import successful')"
|
|
82
|
+
|
|
83
|
+
For maintainers, see the `Release Process`_ section below.
|
|
84
|
+
|
|
85
|
+
Release Process
|
|
86
|
+
---------------
|
|
87
|
+
|
|
88
|
+
*This section is for maintainers only.*
|
|
89
|
+
|
|
90
|
+
Overview
|
|
91
|
+
~~~~~~~~
|
|
92
|
+
|
|
93
|
+
rtest uses automated semantic versioning with ``python-semantic-release``. Releases are triggered by conventional commits and published automatically to PyPI.
|
|
94
|
+
|
|
95
|
+
Setup Requirements
|
|
96
|
+
~~~~~~~~~~~~~~~~~~
|
|
97
|
+
|
|
98
|
+
Repository secrets (Settings → Secrets and variables → Actions):
|
|
99
|
+
|
|
100
|
+
- ``PYPI_API_TOKEN``: From `PyPI Account Settings <https://pypi.org/manage/account/token/>`_
|
|
101
|
+
- ``TEST_PYPI_API_TOKEN``: From `TestPyPI Account Settings <https://test.pypi.org/manage/account/token/>`_
|
|
102
|
+
|
|
103
|
+
Branch Workflow
|
|
104
|
+
~~~~~~~~~~~~~~~
|
|
105
|
+
|
|
106
|
+
- ``main`` branch: Production releases → PyPI
|
|
107
|
+
- ``develop`` branch: Pre-releases → TestPyPI
|
|
108
|
+
|
|
109
|
+
Testing Releases
|
|
110
|
+
~~~~~~~~~~~~~~~~
|
|
111
|
+
|
|
112
|
+
**Option 1: TestPyPI (Recommended)**
|
|
113
|
+
|
|
114
|
+
1. Push to develop branch::
|
|
115
|
+
|
|
116
|
+
git checkout develop
|
|
117
|
+
git commit -m "feat: new feature for testing"
|
|
118
|
+
git push origin develop
|
|
119
|
+
|
|
120
|
+
2. Install from TestPyPI::
|
|
121
|
+
|
|
122
|
+
uv pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ rtest
|
|
123
|
+
|
|
124
|
+
**Option 2: Local Testing**
|
|
125
|
+
|
|
126
|
+
::
|
|
127
|
+
|
|
128
|
+
maturin build --release --out dist
|
|
129
|
+
uv pip install dist/rtest-*.whl
|
|
130
|
+
uv run python -c "import rtest; print('Local test successful')"
|
|
131
|
+
|
|
132
|
+
**Option 3: Dry Run**
|
|
133
|
+
|
|
134
|
+
::
|
|
135
|
+
|
|
136
|
+
uv pip install python-semantic-release
|
|
137
|
+
semantic-release version --noop # Shows what version would be released
|
|
138
|
+
|
|
139
|
+
Production Releases
|
|
140
|
+
~~~~~~~~~~~~~~~~~~~
|
|
141
|
+
|
|
142
|
+
1. Test thoroughly on develop branch
|
|
143
|
+
2. Merge to main::
|
|
144
|
+
|
|
145
|
+
git checkout main
|
|
146
|
+
git merge develop
|
|
147
|
+
git push origin main
|
|
148
|
+
|
|
149
|
+
3. Release happens automatically:
|
|
150
|
+
- Version bumped in ``pyproject.toml``
|
|
151
|
+
- Changelog updated
|
|
152
|
+
- Git tag created
|
|
153
|
+
- GitHub release published
|
|
154
|
+
- Multi-platform wheels built
|
|
155
|
+
- Package published to PyPI
|
|
156
|
+
|
|
157
|
+
Manual Release (Emergency)
|
|
158
|
+
~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
159
|
+
|
|
160
|
+
::
|
|
161
|
+
|
|
162
|
+
semantic-release version # Update version and create tag
|
|
163
|
+
semantic-release publish # Create GitHub release and publish to PyPI
|
|
164
|
+
|
|
165
|
+
Troubleshooting
|
|
166
|
+
~~~~~~~~~~~~~~~
|
|
167
|
+
|
|
168
|
+
**"No version to release"**: Ensure commits follow conventional format
|
|
169
|
+
|
|
170
|
+
**Build failures**: Check Rust toolchain and Python environment::
|
|
171
|
+
|
|
172
|
+
rustup update
|
|
173
|
+
cargo check
|
|
174
|
+
maturin build --release
|
|
175
|
+
|
|
176
|
+
**Upload failures**: Check for existing versions::
|
|
177
|
+
|
|
178
|
+
uv pip index versions rtest
|
|
179
|
+
uv pip index versions --index-url https://test.pypi.org/simple/ rtest
|
|
180
|
+
|
|
181
|
+
Community
|
|
182
|
+
---------
|
|
183
|
+
|
|
184
|
+
- **Issues**: Report bugs and request features on GitHub
|
|
185
|
+
- **Discussions**: Join conversations in GitHub Discussions
|
|
186
|
+
- **Security**: Report security issues privately via GitHub Security tab
|
|
187
|
+
|
|
188
|
+
Code of Conduct
|
|
189
|
+
---------------
|
|
190
|
+
|
|
191
|
+
This project follows the `Contributor Covenant Code of Conduct <https://www.contributor-covenant.org/version/2/1/code_of_conduct/>`_.
|
|
192
|
+
By participating, you agree to uphold this code.
|
|
193
|
+
|
|
194
|
+
License
|
|
195
|
+
-------
|
|
196
|
+
|
|
197
|
+
By contributing to rtest, you agree that your contributions will be licensed under the MIT License.
|