.flake8
.pre-commit-config.yaml
CHANGELOG.md
CODE_OF_CONDUCT.md
CONTRIBUTING.md
LICENSE
MANIFEST.in
README.md
SECURITY.md
justfile
pyproject.toml
setup.cfg
uv.lock
docs/ADVERSARIAL_REVIEW.md
docs/ARCHITECTURE.md
docs/KNOWN_LIMITATIONS.md
docs/OPEN_SOURCE_AUDIT.md
docs/PRODUCTION_READINESS.md
docs/QUICKSTART.md
docs/RELEASE_LOG.md
docs/RELEASING.md
docs/USAGE_GUIDE.md
docs/proposals/dethunking.md
docs/proposals/performance-roadmap.md
docs/proposals/reuse-existing-function.md
docs/proposals/template-method.md
docs/proposals/type-parameters.md
scripts/add_copyright_headers.py
scripts/audit_dependencies.py
scripts/bench_refactor.py
scripts/bench_similar_blocks.py
scripts/ecosystem_check.py
scripts/promote_dry_helpers.py
scripts/report_net_benefit_diff.py
scripts/run_crossfile_coverage.py
scripts/set_version.py
scripts/trace_proposals.py
scripts/verify-examples
scripts/ecosystem/manifest.toml
src/code_towel.egg-info/PKG-INFO
src/code_towel.egg-info/SOURCES.txt
src/code_towel.egg-info/dependency_links.txt
src/code_towel.egg-info/entry_points.txt
src/code_towel.egg-info/requires.txt
src/code_towel.egg-info/top_level.txt
src/towel/__init__.py
src/towel/_mypy_worker.py
src/towel/changes.py
src/towel/checker_project.py
src/towel/cli.py
src/towel/diagnostics.py
src/towel/filesystem.py
src/towel/formatting.py
src/towel/project_layout.py
src/towel/project_tools.py
src/towel/py.typed
src/towel/renaming.py
src/towel/source_files.py
src/towel/source_text.py
src/towel/type_inference.py
src/towel/unification/__init__.py
src/towel/unification/annotation_wiring.py
src/towel/unification/annotations.py
src/towel/unification/assignment_analyzer.py
src/towel/unification/binding_context.py
src/towel/unification/binding_detector.py
src/towel/unification/block_analysis.py
src/towel/unification/block_signature.py
src/towel/unification/bounded_cache.py
src/towel/unification/builtins.py
src/towel/unification/clustering.py
src/towel/unification/constant_consistency.py
src/towel/unification/defaults.py
src/towel/unification/definite_assignment.py
src/towel/unification/engine_state.py
src/towel/unification/exceptions.py
src/towel/unification/extractor.py
src/towel/unification/fixed_point.py
src/towel/unification/function_index.py
src/towel/unification/hof_promotion.py
src/towel/unification/import_graph.py
src/towel/unification/insertion.py
src/towel/unification/instantiation.py
src/towel/unification/materialize.py
src/towel/unification/models.py
src/towel/unification/orphan_detector.py
src/towel/unification/overlap.py
src/towel/unification/pair_evaluation.py
src/towel/unification/parallel.py
src/towel/unification/parameterization.py
src/towel/unification/parameters.py
src/towel/unification/pipeline.py
src/towel/unification/placement.py
src/towel/unification/progress.py
src/towel/unification/project_layout.py
src/towel/unification/refactor_engine.py
src/towel/unification/reuse.py
src/towel/unification/scope_analyzer.py
src/towel/unification/semantic_safety.py
src/towel/unification/statement_facts.py
src/towel/unification/structural_memo.py
src/towel/unification/substitution.py
src/towel/unification/thunk_inlining.py
src/towel/unification/unifier.py
src/towel/unification/unifier_state.py
src/towel/unification/visitors.py
test_examples/README.md
test_examples/annotated_module.py
test_examples/binding_constructs_comprehensive.py
test_examples/bindings_comprehensions.py
test_examples/bindings_for_loops.py
test_examples/closure_adversarial.py
test_examples/complex_expressions.py
test_examples/control_flow_adversarial.py
test_examples/edge_cases_stress_test.py
test_examples/example1_simple.py
test_examples/example2_classes.py
test_examples/example3_file1.py
test_examples/example3_file2.py
test_examples/example4_complex.py
test_examples/exception_adversarial.py
test_examples/fstrings_constants.py
test_examples/functional_patterns.py
test_examples/generators_async.py
test_examples/global_nonlocal_examples.py
test_examples/hygienic_naming.py
test_examples/method_chains.py
test_examples/nested_structures.py
test_examples/real_world_patterns.py
test_examples/referential_transparency.py
test_examples/return_values.py
test_examples/scoping_edge_cases.py
test_examples/side_effects_adversarial.py
test_examples/syntactic_coverage_comprehensive.py
test_examples/tricky_edge_cases_adversarial.py
test_examples_crossfile/README.md
test_examples_crossfile/class_hierarchy/base_record.py
test_examples_crossfile/class_hierarchy/scored_record.py
test_examples_crossfile/multi_level/api/checkout.py
test_examples_crossfile/multi_level/core/services/payment.py
test_examples_crossfile/multi_level/utils/validators.py
test_examples_crossfile/nested_structure/lib/report_generator.py
test_examples_crossfile/nested_structure/src/data_processor.py
test_examples_crossfile/simple_crossfile/admin_service.py
test_examples_crossfile/simple_crossfile/user_service.py
test_examples_crossfile_expected_output/class_hierarchy/base_record.py
test_examples_crossfile_expected_output/class_hierarchy/scored_record.py
test_examples_crossfile_expected_output/multi_level/api/checkout.py
test_examples_crossfile_expected_output/multi_level/core/services/payment.py
test_examples_crossfile_expected_output/multi_level/utils/validators.py
test_examples_crossfile_expected_output/nested_structure/lib/report_generator.py
test_examples_crossfile_expected_output/nested_structure/src/data_processor.py
test_examples_crossfile_expected_output/simple_crossfile/admin_service.py
test_examples_crossfile_expected_output/simple_crossfile/user_service.py
test_examples_expected_output/annotated_module.py
test_examples_expected_output/binding_constructs_comprehensive.py
test_examples_expected_output/bindings_comprehensions.py
test_examples_expected_output/bindings_for_loops.py
test_examples_expected_output/closure_adversarial.py
test_examples_expected_output/complex_expressions.py
test_examples_expected_output/control_flow_adversarial.py
test_examples_expected_output/edge_cases_stress_test.py
test_examples_expected_output/example1_simple.py
test_examples_expected_output/example2_classes.py
test_examples_expected_output/example3_file1.py
test_examples_expected_output/example3_file2.py
test_examples_expected_output/example4_complex.py
test_examples_expected_output/exception_adversarial.py
test_examples_expected_output/fstrings_constants.py
test_examples_expected_output/functional_patterns.py
test_examples_expected_output/generators_async.py
test_examples_expected_output/global_nonlocal_examples.py
test_examples_expected_output/hygienic_naming.py
test_examples_expected_output/method_chains.py
test_examples_expected_output/nested_structures.py
test_examples_expected_output/real_world_patterns.py
test_examples_expected_output/referential_transparency.py
test_examples_expected_output/return_values.py
test_examples_expected_output/scoping_edge_cases.py
test_examples_expected_output/side_effects_adversarial.py
test_examples_expected_output/syntactic_coverage_comprehensive.py
test_examples_expected_output/tricky_edge_cases_adversarial.py
tests/OBSERVATIONAL_EQUIVALENCE.md
tests/README.md
tests/__init__.py
tests/automatic_equivalence_tester.py
tests/conftest.py
tests/crossfile_equivalence_tester.py
tests/edge_case_values.py
tests/equivalence_targets.py
tests/generate_baseline.py
tests/hostile_execution.py
tests/run_tests.py
tests/test_adversarial_renaming.py
tests/test_adversarial_semantics.py
tests/test_analysis_edge_paths.py
tests/test_analysis_sessions.py
tests/test_ancestor_insertion.py
tests/test_assignment_analyzer_comprehensive.py
tests/test_audit_io_safety.py
tests/test_backend_layouts.py
tests/test_binding_context_memo.py
tests/test_binding_detector.py
tests/test_binding_detector_edge_cases.py
tests/test_bindings.py
tests/test_bindings_additional.py
tests/test_breakers.py
tests/test_builtins_comprehensive.py
tests/test_cache_lifetimes.py
tests/test_candidate_index.py
tests/test_change_transactions.py
tests/test_cli_dispatch_paths.py
tests/test_cli_input_errors.py
tests/test_cli_integration.py
tests/test_cli_oracle_lifecycle.py
tests/test_cli_output_safety.py
tests/test_comprehensive_coverage.py
tests/test_copy_preservation.py
tests/test_crossfile_integration.py
tests/test_crossfile_observational_equivalence.py
tests/test_definite_assignment.py
tests/test_dependency_audit_export.py
tests/test_distinct_proposals.py
tests/test_ecosystem_manifest_regressions.py
tests/test_ecosystem_verdicts.py
tests/test_engine_adversarial.py
tests/test_engine_failure_visibility.py
tests/test_environment_independence.py
tests/test_equivalence_harness_regressions.py
tests/test_equivalence_target_selection.py
tests/test_error_paths.py
tests/test_exceptions.py
tests/test_extractor_additional_branches.py
tests/test_extractor_augassign_and_fstrings.py
tests/test_extractor_callee_and_multi_return.py
tests/test_extractor_comprehensive.py
tests/test_extractor_edge_cases.py
tests/test_extractor_final_lines.py
tests/test_extractor_generate_call_variants.py
tests/test_extractor_more_paths.py
tests/test_extractor_preamble_and_call_mapping.py
tests/test_extractor_remaining_branches.py
tests/test_extractor_return_statements.py
tests/test_extractor_substituter_and_helpers.py
tests/test_filesystem_guards.py
tests/test_final_coverage_push.py
tests/test_fixed_point_refusals.py
tests/test_forwarder_chains.py
tests/test_frame_sensitivity_scan.py
tests/test_free_variable_correspondence.py
tests/test_fstrings.py
tests/test_function_facts_equivalence.py
tests/test_function_index.py
tests/test_generated_code_formatting.py
tests/test_helper_annotations.py
tests/test_helper_inventory.py
tests/test_helpers.py
tests/test_hostile_battery.py
tests/test_hostile_crossfile_battery.py
tests/test_import_bindings.py
tests/test_import_cycle_package_init.py
tests/test_import_resolution.py
tests/test_incremental_global_passes.py
tests/test_instantiation_check.py
tests/test_lazy_engine_import.py
tests/test_lexical_binding_regressions.py
tests/test_method_level_and_attributes.py
tests/test_method_receiver_arguments.py
tests/test_module_names_stay_free.py
tests/test_observational_equivalence.py
tests/test_orphan_detection.py
tests/test_orphan_detector_comprehensive.py
tests/test_out_of_place_cycle_regression.py
tests/test_overlap_filtering.py
tests/test_pair_budget.py
tests/test_parallel_evaluation.py
tests/test_parameters.py
tests/test_parent_watchdog.py
tests/test_perf_memos.py
tests/test_pipeline_api.py
tests/test_pipeline_phases.py
tests/test_progress_modes.py
tests/test_project_layout_and_imports.py
tests/test_project_layout_behavior.py
tests/test_project_layout_shim.py
tests/test_promotion_and_mangling.py
tests/test_properties.py
tests/test_readme_links.py
tests/test_recovery_journal.py
tests/test_refactor_engine_comprehensive.py
tests/test_refactor_engine_edge_cases.py
tests/test_refactor_engine_more.py
tests/test_refactor_engine_targeted_branches.py
tests/test_refactoring_engine.py
tests/test_regression.py
tests/test_regressions_broader.py
tests/test_release_regressions.py
tests/test_rename_audit_regressions.py
tests/test_rename_discovery_regressions.py
tests/test_rename_parameters_and_methods.py
tests/test_return_alignment.py
tests/test_return_values.py
tests/test_returned_variables_not_orphaned.py
tests/test_reuse_existing_function.py
tests/test_reuse_type_checks.py
tests/test_robustness_paths.py
tests/test_scope_analyzer.py
tests/test_scope_analyzer_comprehensive.py
tests/test_semantic_guard_traces.py
tests/test_semantic_guards_extended.py
tests/test_semantic_safety_regressions.py
tests/test_signature_prefilter.py
tests/test_source_encoding.py
tests/test_stale_proposal_recovery.py
tests/test_statement_facts.py
tests/test_structural_memo.py
tests/test_substitution_keys.py
tests/test_symlinked_input_directory.py
tests/test_thunk_inlining.py
tests/test_trivial_helper_filter.py
tests/test_type_inference.py
tests/test_type_oracle_projects.py
tests/test_type_run_policy.py
tests/test_unifier_additional_branches.py
tests/test_unifier_batch2.py
tests/test_unifier_batch3.py
tests/test_unifier_batch4.py
tests/test_unifier_batch5.py
tests/test_unifier_bound_variables.py
tests/test_unifier_comprehensions.py
tests/test_unifier_comprehensive.py
tests/test_unifier_core.py
tests/test_unifier_edge_cases.py
tests/test_unifier_more_branches.py
tests/test_unifier_state_reset.py
tests/test_unsupported_layout.py
tests/test_validation_partial_lifetime.py
tests/test_variable_capture_bug.py
tests/test_visitors.py
tests/hostile_cases/h01_side_effect_order.py
tests/hostile_cases/h02_conditional_eval.py
tests/hostile_cases/h03_loop_reeval.py
tests/hostile_cases/h04_closure_freevar.py
tests/hostile_cases/h05_cond_return_plus_retvar.py
tests/hostile_cases/h06_del_in_block.py
tests/hostile_cases/h07_except_unbind.py
tests/hostile_cases/h08_late_binding_closure.py
tests/hostile_cases/h10_short_circuit.py
tests/hostile_cases/h13_dunder_file.py
tests/hostile_cases/h26_match_capture.py
tests/hostile_cases/h38_closure_after_block.py
tests/hostile_cases/h39_augassign_after_block.py
tests/hostile_cases/h51_semicolons.py
tests/hostile_cases/h52_del_after_block.py
tests/hostile_cases/h53_nested_func_reads_retvar.py
tests/hostile_cases/h54_attr_param_property.py
tests/hostile_cases/h55_walrus_used_after.py
tests/hostile_cases/h56_global_write.py
tests/hostile_cases/h57_exception_in_param.py
tests/hostile_cases/h58_nested_def_freevar_reassigned.py
tests/hostile_cases/h59_retvar_conditional_unbound.py
tests/hostile_cases/h60_finally_return.py
tests/hostile_cases/h61_str_method_param.py
tests/hostile_cases/r01_property_thunk_order.py
tests/hostile_cases/r02_cluster_attrs.py
tests/hostile_cases/r07_attr_two_positions.py
tests/hostile_cases/r100_clustered_site_with_live_binding.py
tests/hostile_cases/r101_same_named_method_forces_module_helper.py
tests/hostile_cases/r102_whole_body_reuse.py
tests/hostile_cases/r103_lambda_parameter_spelling.py
tests/hostile_cases/r104_walrus_target_spelling.py
tests/hostile_cases/r105_closure_over_block_bound_name_rebound_after.py
tests/hostile_cases/r106_dir_reads_the_frame.py
tests/hostile_cases/r107_unbound_global_argument.py
tests/hostile_cases/r108_clustered_sites_assign_the_returned_name.py
tests/hostile_cases/r109_eager_optional_import_failed.py
tests/hostile_cases/r110_eager_type_checking_import.py
tests/hostile_cases/r111_eager_module_except_as_name.py
tests/hostile_cases/r112_eager_module_match_capture_unmatched.py
tests/hostile_cases/r113_eager_class_attr_in_method.py
tests/hostile_cases/r114_eager_nested_class_attr.py
tests/hostile_cases/r115_eager_class_in_function_attr.py
tests/hostile_cases/r116_eager_enclosing_bound_after_inner_call.py
tests/hostile_cases/r117_eager_enclosing_deleted_before_inner_call.py
tests/hostile_cases/r118_eager_enclosing_conditionally_bound.py
tests/hostile_cases/r119_eager_module_def_and_class_after_call.py
tests/hostile_cases/r11_same_function_pair.py
tests/hostile_cases/r120_eager_module_import_after_call.py
tests/hostile_cases/r121_eager_comprehension_variable.py
tests/hostile_cases/r122_eager_lambda_parameter.py
tests/hostile_cases/r123_direct_eval_after_block.py
tests/hostile_cases/r124_eval_alias_reads_preblock_name.py
tests/hostile_cases/r125_locals_dir_after_block.py
tests/hostile_cases/r126_locals_in_nested_scope.py
tests/hostile_cases/r127_eval_alias_partial_block.py
tests/hostile_cases/r128_warn_stacklevel_via_alias.py
tests/hostile_cases/r129_warning_registry_dedup.py
tests/hostile_cases/r130_resource_observed_after_block_differs.py
tests/hostile_cases/r131_weakref_and_id_identity.py
tests/hostile_cases/r132_async_comprehension_in_block.py
tests/hostile_cases/r133_formfeed.py
tests/hostile_cases/r134_u2028_in_comment_shifts_splice.py
tests/hostile_cases/r135_formfeed_line_shifts_splice.py
tests/hostile_cases/r136_u2028_in_string_literal.py
tests/hostile_cases/r137_x1c_x85_in_comment.py
tests/hostile_cases/r138_u2028_comment_same_indent_neighbours.py
tests/hostile_cases/r139_literal_roundtrip.py
tests/hostile_cases/r140_unbound_name_on_untaken_branch.py
tests/hostile_cases/r141_module_name_bound_after_an_early_call.py
tests/hostile_cases/r142_module_data_rebound_by_callback.py
tests/hostile_cases/r143_module_name_shadowed_by_a_local_elsewhere.py
tests/hostile_cases/r144_class_cell_in_a_method_helper.py
tests/hostile_cases/r145_getframe_assigned_alias.py
tests/hostile_cases/r146_module_function_reads_caller_frame.py
tests/hostile_cases/r14_starred_param.py
tests/hostile_cases/r22_fstring_attr.py
tests/hostile_cases/r26_attr_store_param.py
tests/hostile_cases/r27_del_subscript.py
tests/hostile_cases/r32_method_callee.py
tests/hostile_cases/r38_name_two_positions.py
tests/hostile_cases/r39_cluster_alpha.py
tests/hostile_cases/r40_class_hierarchy.py
tests/hostile_cases/r41_conditional_call_param.py
tests/hostile_cases/r42_loop_call_param.py
tests/hostile_cases/r43_opaque_decorator_receiver.py
tests/hostile_cases/r44_cluster_nested_overlap.py
tests/hostile_cases/r45_async_no_await.py
tests/hostile_cases/r46_nonlocal_counter.py
tests/hostile_cases/r47_lru_cache_method.py
tests/hostile_cases/r50_helper_name_collision.py
tests/hostile_cases/r53_try_else_binding.py
tests/hostile_cases/r54_with_binding_used_after.py
tests/hostile_cases/r55_chained_assign.py
tests/hostile_cases/r57_star_unpack.py
tests/hostile_cases/r58_escaping_closure.py
tests/hostile_cases/r60_local_import.py
tests/hostile_cases/r61_same_function_clean.py
tests/hostile_cases/r62_recursion.py
tests/hostile_cases/r63_except_var_used_in_handler.py
tests/hostile_cases/r66_conditional_callee.py
tests/hostile_cases/r69_annassign.py
tests/hostile_cases/r72_global_promoted.py
tests/hostile_cases/r73_slice_vs_index.py
tests/hostile_cases/r74_starred_vs_plain.py
tests/hostile_cases/r75_prior_helper_param_names.py
tests/hostile_cases/r76_return_order.py
tests/hostile_cases/r77_mixed_return_and_variables.py
tests/hostile_cases/r78_walrus_in_parameter.py
tests/hostile_cases/r79_list_display_in_loop.py
tests/hostile_cases/r80_inlined_leading_thunk.py
tests/hostile_cases/r81_conditionally_bound_free_variable.py
tests/hostile_cases/r82_local_classes_same_name.py
tests/hostile_cases/r83_tab_indented_class.py
tests/hostile_cases/r84_warn_stacklevel.py
tests/hostile_cases/r85_conditionally_bound_parameter.py
tests/hostile_cases/r86_annotated_assignment_live.py
tests/hostile_cases/r87_nested_function_in_method.py
tests/hostile_cases/r88_elif_branch.py
tests/hostile_cases/r89_conditionally_bound_return.py
tests/hostile_cases/r90_cluster_across_classes.py
tests/hostile_cases/r91_class_body_helper.py
tests/hostile_cases/r92_parameterless_class_body_helper.py
tests/hostile_cases/r93_import_name_differs.py
tests/hostile_cases/r94_import_binds_live_name.py
tests/hostile_cases/r95_type_checking_annotation.py
tests/hostile_cases/r96_unpacked_targets_live.py
tests/hostile_cases/r97_helper_in_function_with_outside_site.py
tests/hostile_cases/r98_same_named_methods_nested_helpers.py
tests/hostile_cases/r99_partial_return_branches.py
tests/hostile_crossfile/xf10_reuse_existing_function/run.py
tests/hostile_crossfile/xf10_reuse_existing_function/pkg/__init__.py
tests/hostile_crossfile/xf10_reuse_existing_function/pkg/a.py
tests/hostile_crossfile/xf10_reuse_existing_function/pkg/b.py
tests/hostile_crossfile/xf11_package_init_reaches_back/run.py
tests/hostile_crossfile/xf11_package_init_reaches_back/pkg/__init__.py
tests/hostile_crossfile/xf11_package_init_reaches_back/pkg/detail.py
tests/hostile_crossfile/xf12_cycle_through_package_init/run.py
tests/hostile_crossfile/xf12_cycle_through_package_init/pkg/__init__.py
tests/hostile_crossfile/xf12_cycle_through_package_init/pkg/core.py
tests/hostile_crossfile/xf12_cycle_through_package_init/pkg/sub/__init__.py
tests/hostile_crossfile/xf12_cycle_through_package_init/pkg/sub/leaf.py
tests/hostile_crossfile/xf12_cycle_through_package_init/pkg/vendor/__init__.py
tests/hostile_crossfile/xf12_cycle_through_package_init/pkg/vendor/tool.py
tests/hostile_crossfile/xf13_import_time_effects/run.py
tests/hostile_crossfile/xf13_import_time_effects/pkg/__init__.py
tests/hostile_crossfile/xf13_import_time_effects/pkg/a.py
tests/hostile_crossfile/xf13_import_time_effects/pkg/b.py
tests/hostile_crossfile/xf14_script_with_leading_statement/run.py
tests/hostile_crossfile/xf14_script_with_leading_statement/pkg/__init__.py
tests/hostile_crossfile/xf14_script_with_leading_statement/pkg/app.py
tests/hostile_crossfile/xf14_script_with_leading_statement/pkg/util.py
tests/hostile_crossfile/xf15_ancestor_in_another_module/run.py
tests/hostile_crossfile/xf15_ancestor_in_another_module/pkg/__init__.py
tests/hostile_crossfile/xf15_ancestor_in_another_module/pkg/base.py
tests/hostile_crossfile/xf15_ancestor_in_another_module/pkg/servers.py
tests/hostile_crossfile/xf15_ancestor_in_another_module/pkg/tokens.py
tests/hostile_crossfile/xf3_same_named_local_function/run.py
tests/hostile_crossfile/xf3_same_named_local_function/pkg/__init__.py
tests/hostile_crossfile/xf3_same_named_local_function/pkg/a.py
tests/hostile_crossfile/xf3_same_named_local_function/pkg/b.py
tests/hostile_crossfile/xf4_same_named_class/run.py
tests/hostile_crossfile/xf4_same_named_class/pkg/__init__.py
tests/hostile_crossfile/xf4_same_named_class/pkg/a.py
tests/hostile_crossfile/xf4_same_named_class/pkg/b.py
tests/hostile_crossfile/xf5_dunder_file/run.py
tests/hostile_crossfile/xf5_dunder_file/pkg/__init__.py
tests/hostile_crossfile/xf5_dunder_file/pkg/a.py
tests/hostile_crossfile/xf5_dunder_file/pkg/b.py
tests/hostile_crossfile/xf6_same_alias_different_import/run.py
tests/hostile_crossfile/xf6_same_alias_different_import/pkg/__init__.py
tests/hostile_crossfile/xf6_same_alias_different_import/pkg/a.py
tests/hostile_crossfile/xf6_same_alias_different_import/pkg/b.py
tests/hostile_crossfile/xf6_same_alias_different_import/pkg/util1.py
tests/hostile_crossfile/xf6_same_alias_different_import/pkg/util2.py
tests/hostile_crossfile/xf7_docstring_import/run.py
tests/hostile_crossfile/xf7_docstring_import/pkg/__init__.py
tests/hostile_crossfile/xf7_docstring_import/pkg/a.py
tests/hostile_crossfile/xf7_docstring_import/pkg/b.py
tests/hostile_crossfile/xf8_helper_name_collision/run.py
tests/hostile_crossfile/xf8_helper_name_collision/pkg/__init__.py
tests/hostile_crossfile/xf8_helper_name_collision/pkg/a.py
tests/hostile_crossfile/xf8_helper_name_collision/pkg/b.py
tests/hostile_crossfile/xf8_helper_name_collision/pkg/c.py
tests/hostile_crossfile/xf8_helper_name_collision/pkg/d.py
tests/hostile_crossfile/xf8_helper_name_collision/pkg/e.py
tests/hostile_crossfile/xf9_same_named_base_class/run.py
tests/hostile_crossfile/xf9_same_named_base_class/pkg/__init__.py
tests/hostile_crossfile/xf9_same_named_base_class/pkg/one/__init__.py
tests/hostile_crossfile/xf9_same_named_base_class/pkg/one/base.py
tests/hostile_crossfile/xf9_same_named_base_class/pkg/one/introspect.py
tests/hostile_crossfile/xf9_same_named_base_class/pkg/one/revoke.py
tests/hostile_crossfile/xf9_same_named_base_class/pkg/two/__init__.py
tests/hostile_crossfile/xf9_same_named_base_class/pkg/two/access.py
tests/hostile_crossfile/xf9_same_named_base_class/pkg/two/base.py
tests/hostile_crossfile/xf9_same_named_base_class/pkg/two/request.py