├── .github └── workflows │ └── python-app-test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CITATION.cff ├── LICENSE ├── Makefile ├── README.md ├── docs ├── Makefile ├── make.bat └── source │ ├── _static │ └── resources │ │ ├── Scalpel │ │ ├── Scalpel-logo.png │ │ ├── Scalpel.png │ │ ├── Scalpel.svg │ │ ├── cfg_example.png │ │ ├── europython.png │ │ ├── function_fib_cfg.png │ │ ├── scalpel_design.png │ │ ├── scalpel_diagram.png │ │ ├── ssa_diagram │ │ ├── ssa_diagram.png │ │ └── ssa_diagram.svg │ ├── api │ └── index.md │ ├── conf.py │ ├── index.md │ ├── spelling_wordlist.txt │ └── user-guide │ ├── core-utilities │ ├── Call-Graph.md │ ├── Control-Flow-Graph.md │ ├── Rewriter.md │ └── index.md │ ├── index.md │ └── middle-level-modules │ ├── Import-Graph.md │ ├── SSA-&-Constant-Propagation.md │ ├── Type-Inference.md │ └── index.md ├── examples ├── API_name_qualifying_tutorial.ipynb ├── CFG_tutorial.ipynb ├── FQN_tutorial.ipynb ├── README.md ├── Rewriter_tutorial.ipynb ├── SSA_tutorial.ipynb ├── call_graph_tutorial.ipynb ├── cg_example_pkg │ ├── main.py │ └── sub_folder1 │ │ ├── module1.py │ │ └── module2.py ├── fqn_example │ └── example.py ├── import_graph_example_pkg │ ├── module_a.py │ ├── module_b.py │ └── module_c.py ├── import_graph_tutorial.ipynb ├── test_program_transformer.py ├── type_infer_example.py ├── type_infer_example_2.py └── type_infer_tutorial.ipynb ├── pyproject.toml ├── pytest.ini ├── readthedocs.yml ├── requirements.txt ├── setup.py ├── setup.sh ├── src ├── __init__.py └── scalpel │ ├── SSA │ ├── __init__.py │ ├── alg.py │ ├── const.py │ ├── def_use.py │ └── ssa.py │ ├── __init__.py │ ├── call_graph │ ├── __init__.py │ └── pycg.py │ ├── cfg │ ├── __init__.py │ ├── builder.py │ └── model.py │ ├── core │ ├── __init__.py │ ├── _scope_graph.py │ ├── base │ │ ├── __init__.py │ │ ├── scalpel_class.py │ │ ├── scalpel_method.py │ │ ├── scalpel_module.py │ │ └── stmt │ │ │ ├── __init__.py │ │ │ ├── assign_stmt.py │ │ │ ├── invoke_stmt.py │ │ │ └── stmt.py │ ├── class_visitor.py │ ├── fun_def_visitor.py │ ├── func_call_visitor.py │ ├── kw_visitor.py │ ├── mnode.py │ ├── source_visitor.py │ ├── util.py │ ├── vars_visitor.py │ └── visitors.py │ ├── duc.py │ ├── file_system.py │ ├── fqn │ ├── __init__.py │ └── fully_qualified_name_inference.py │ ├── import_graph │ ├── __init__.py │ └── import_graph.py │ ├── rewriter.py │ ├── typeinfer │ ├── __init__.py │ ├── analysers.py │ ├── classes.py │ ├── folding.py │ ├── typeinfer.py │ └── utilities.py │ └── util.py ├── tests ├── test-cases │ ├── basic │ │ ├── mnode_case.py │ │ ├── ssa_case-5.py │ │ ├── ssa_case-complex.py │ │ ├── ssa_case.py │ │ ├── ssa_case_1.py │ │ ├── ssa_case_1_no_sugar.py │ │ ├── ssa_case_2.py │ │ ├── ssa_case_3.py │ │ ├── ssa_case_complex_no_sugar.py │ │ ├── ssa_inter_procedure.py │ │ ├── sugar_case.py │ │ ├── tc1.py │ │ └── type.py │ ├── cfg-tests │ │ ├── django-django-conf-locale-__init__.py │ │ ├── django-django-conf-locale-ar-formats.py │ │ ├── django-django-conf-locale-fa-formats.py │ │ ├── django-django-conf-locale-ja-formats.py │ │ ├── django-django-conf-locale-km-formats.py │ │ ├── django-django-conf-locale-ko-formats.py │ │ ├── django-django-conf-locale-th-formats.py │ │ ├── django-django-conf-locale-zh_Hans-formats.py │ │ ├── django-django-conf-locale-zh_Hant-formats.py │ │ ├── django-django-contrib-admin-models.py │ │ ├── django-django-contrib-admin-options.py │ │ ├── django-django-contrib-flatpages-forms.py │ │ ├── django-django-contrib-flatpages-migrations-0001_initial.py │ │ ├── django-django-contrib-flatpages-models.py │ │ ├── django-django-contrib-gis-db-models-fields.py │ │ ├── django-django-contrib-postgres-fields-hstore.py │ │ ├── django-django-contrib-redirects-migrations-0001_initial.py │ │ ├── django-django-contrib-redirects-migrations-0002_alter_redirect_new_path_help_text.py │ │ ├── django-django-contrib-redirects-models.py │ │ ├── django-django-core-cache-backends-memcached.py │ │ ├── django-django-core-management-commands-compilemessages.py │ │ ├── django-django-core-paginator.py │ │ ├── django-django-core-validators.py │ │ ├── django-django-db-models-fields-__init__.py │ │ ├── django-django-forms-models.py │ │ ├── django-django-template-defaultfilters.py │ │ ├── django-django-test-client.py │ │ ├── django-django-test-testcases.py │ │ ├── django-django-urls-resolvers.py │ │ ├── django-django-utils-dateparse.py │ │ ├── django-django-utils-encoding.py │ │ ├── django-django-utils-formats.py │ │ ├── django-django-utils-html.py │ │ ├── django-django-utils-text.py │ │ ├── django-django-utils-translation-trans_real.py │ │ ├── django-django-views-csrf.py │ │ ├── django-django-views-debug.py │ │ ├── django-django-views-generic-dates.py │ │ ├── django-django-views-generic-list.py │ │ ├── django-django-views-static.py │ │ ├── django-tests-admin_changelist-tests.py │ │ ├── django-tests-admin_scripts-tests.py │ │ ├── django-tests-admin_utils-test_logentry.py │ │ ├── django-tests-admin_views-test_history_view.py │ │ ├── django-tests-admin_views-tests.py │ │ ├── django-tests-admin_widgets-tests.py │ │ ├── django-tests-auth_tests-test_basic.py │ │ ├── django-tests-auth_tests-test_forms.py │ │ ├── django-tests-auth_tests-test_models.py │ │ ├── django-tests-auth_tests-test_validators.py │ │ ├── django-tests-auth_tests-test_views.py │ │ ├── django-tests-cache-tests.py │ │ ├── django-tests-db_functions-text-test_pad.py │ │ ├── django-tests-db_functions-text-test_strindex.py │ │ ├── django-tests-file_uploads-tests.py │ │ ├── django-tests-flatpages_tests-test_forms.py │ │ ├── django-tests-forms_tests-field_tests-test_filefield.py │ │ ├── django-tests-forms_tests-field_tests-test_imagefield.py │ │ ├── django-tests-forms_tests-field_tests-test_integerfield.py │ │ ├── django-tests-forms_tests-field_tests-test_jsonfield.py │ │ ├── django-tests-forms_tests-field_tests-test_slugfield.py │ │ ├── django-tests-forms_tests-field_tests-test_urlfield.py │ │ ├── django-tests-forms_tests-tests-test_error_messages.py │ │ ├── django-tests-forms_tests-tests-test_forms.py │ │ ├── django-tests-forms_tests-tests-test_validators.py │ │ ├── django-tests-forms_tests-tests-tests.py │ │ ├── django-tests-httpwrappers-tests.py │ │ ├── django-tests-humanize_tests-tests.py │ │ ├── django-tests-i18n-test_compilation.py │ │ ├── django-tests-i18n-tests.py │ │ ├── django-tests-invalid_models_tests-test_relative_fields.py │ │ ├── django-tests-mail-tests.py │ │ ├── django-tests-migrations-models.py │ │ ├── django-tests-migrations-test_autodetector.py │ │ ├── django-tests-migrations-test_commands.py │ │ ├── django-tests-model_fields-test_decimalfield.py │ │ ├── django-tests-model_fields-test_durationfield.py │ │ ├── django-tests-model_fields-test_uuid.py │ │ ├── django-tests-model_forms-test_uuid.py │ │ ├── django-tests-model_forms-tests.py │ │ ├── django-tests-postgres_tests-test_hstore.py │ │ ├── django-tests-serializers-test_data.py │ │ ├── django-tests-staticfiles_tests-cases.py │ │ ├── django-tests-str-tests.py │ │ ├── django-tests-template_tests-filter_tests-test_force_escape.py │ │ ├── django-tests-template_tests-filter_tests-test_truncatechars.py │ │ ├── django-tests-template_tests-filter_tests-test_truncatechars_html.py │ │ ├── django-tests-template_tests-filter_tests-test_truncatewords.py │ │ ├── django-tests-template_tests-filter_tests-test_truncatewords_html.py │ │ ├── django-tests-template_tests-filter_tests-test_urlize.py │ │ ├── django-tests-template_tests-filter_tests-test_urlizetrunc.py │ │ ├── django-tests-template_tests-syntax_tests-test_filter_syntax.py │ │ ├── django-tests-test_client_regress-tests.py │ │ ├── django-tests-transactions-tests.py │ │ ├── django-tests-urlpatterns-tests.py │ │ ├── django-tests-utils_tests-test_encoding.py │ │ ├── django-tests-utils_tests-test_jslex.py │ │ ├── django-tests-utils_tests-test_numberformat.py │ │ ├── django-tests-utils_tests-test_text.py │ │ ├── django-tests-validation-test_error_messages.py │ │ ├── django-tests-validators-tests.py │ │ ├── django-tests-view_tests-generic_urls.py │ │ ├── django-tests-view_tests-tests-test_csrf.py │ │ ├── django-tests-view_tests-tests-test_debug.py │ │ ├── flask-tests-test_cli.py │ │ ├── httpie-httpie-client.py │ │ ├── pandas-pandas-core-computation-parsing.py │ │ ├── pandas-pandas-core-frame.py │ │ ├── pandas-pandas-core-generic.py │ │ ├── pandas-pandas-core-indexes-datetimes.py │ │ ├── pandas-pandas-core-reshape-merge.py │ │ ├── pandas-pandas-core-series.py │ │ ├── pandas-pandas-core-strings-accessor.py │ │ ├── pandas-pandas-io-formats-format.py │ │ ├── pandas-pandas-io-formats-style.py │ │ ├── pandas-pandas-io-formats-style_render.py │ │ ├── pandas-pandas-io-sql.py │ │ ├── pandas-pandas-io-stata.py │ │ ├── pandas-pandas-tests-arrays-categorical-test_repr.py │ │ ├── pandas-pandas-tests-frame-methods-test_filter.py │ │ ├── pandas-pandas-tests-frame-methods-test_replace.py │ │ ├── pandas-pandas-tests-frame-test_query_eval.py │ │ ├── pandas-pandas-tests-indexes-base_class-test_formats.py │ │ ├── pandas-pandas-tests-indexes-categorical-test_formats.py │ │ ├── pandas-pandas-tests-indexes-object-test_astype.py │ │ ├── pandas-pandas-tests-io-excel-test_readers.py │ │ ├── pandas-pandas-tests-io-formats-test_format.py │ │ ├── pandas-pandas-tests-io-formats-test_printing.py │ │ ├── pandas-pandas-tests-io-formats-test_to_csv.py │ │ ├── pandas-pandas-tests-io-json-test_json_table_schema.py │ │ ├── pandas-pandas-tests-io-json-test_pandas.py │ │ ├── pandas-pandas-tests-io-json-test_readlines.py │ │ ├── pandas-pandas-tests-io-parser-common-test_common_basic.py │ │ ├── pandas-pandas-tests-io-parser-test_encoding.py │ │ ├── pandas-pandas-tests-io-parser-usecols-test_strings.py │ │ ├── pandas-pandas-tests-io-test_clipboard.py │ │ ├── pandas-pandas-tests-io-test_common.py │ │ ├── pandas-pandas-tests-io-test_stata.py │ │ ├── pandas-pandas-tests-io-xml-test_to_xml.py │ │ ├── pandas-pandas-tests-scalar-test_nat.py │ │ ├── pandas-pandas-tests-series-methods-test_astype.py │ │ ├── pandas-pandas-tests-series-methods-test_to_csv.py │ │ ├── pandas-pandas-tests-series-test_cumulative.py │ │ ├── pandas-pandas-tests-strings-test_strings.py │ │ ├── pytorch-caffe2-python-layers_test.py │ │ ├── pytorch-test-jit-test_python_builtins.py │ │ ├── pytorch-test-package-test_directory_reader.py │ │ ├── pytorch-test-package-test_misc.py │ │ ├── pytorch-test-package-test_resources.py │ │ ├── pytorch-test-package-test_torchscript.py │ │ ├── pytorch-test-quantization-core-test_quantized_module.py │ │ ├── pytorch-test-quantization-jit-test_quantize_jit.py │ │ ├── pytorch-test-test_fx_experimental.py │ │ ├── pytorch-test-test_jit.py │ │ ├── pytorch-test-test_jit_fuser.py │ │ ├── pytorch-test-test_jit_fuser_te.py │ │ ├── pytorch-test-test_linalg.py │ │ ├── pytorch-test-test_nn.py │ │ ├── pytorch-test-test_torch.py │ │ ├── pytorch-test-test_type_promotion.py │ │ ├── pytorch-tools-actions_local_runner.py │ │ ├── pytorch-torch-_torch_docs.py │ │ ├── pytorch-torch-distributed-elastic-rendezvous-etcd_rendezvous.py │ │ ├── pytorch-torch-distributed-pipeline-sync-_balance-blockpartition.py │ │ ├── pytorch-torch-distributed-pipeline-sync-pipeline.py │ │ ├── pytorch-torch-distributed-pipeline-sync-skip-portal.py │ │ ├── pytorch-torch-distributed-pipeline-sync-skip-skippable.py │ │ ├── pytorch-torch-linalg-__init__.py │ │ ├── pytorch-torch-package-file_structure_representation.py │ │ ├── requests-requests-certs.py │ │ ├── requests-requests-status_codes.py │ │ ├── requests-tests-test_requests.py │ │ ├── scrapy-docs-conf.py │ │ ├── scrapy-scrapy-contracts-__init__.py │ │ ├── scrapy-tests-test_commands.py │ │ ├── scrapy-tests-test_crawler.py │ │ ├── scrapy-tests-test_responsetypes.py │ │ ├── scrapy-tests-test_utils_asyncio.py │ │ ├── spaCy-spacy-cli-project-document.py │ │ ├── spaCy-spacy-glossary.py │ │ ├── spaCy-spacy-lang-am-examples.py │ │ ├── spaCy-spacy-lang-am-lex_attrs.py │ │ ├── spaCy-spacy-lang-am-punctuation.py │ │ ├── spaCy-spacy-lang-am-stop_words.py │ │ ├── spaCy-spacy-lang-am-tokenizer_exceptions.py │ │ ├── spaCy-spacy-lang-ar-lex_attrs.py │ │ ├── spaCy-spacy-lang-bn-examples.py │ │ ├── spaCy-spacy-lang-bn-punctuation.py │ │ ├── spaCy-spacy-lang-bn-stop_words.py │ │ ├── spaCy-spacy-lang-bn-tokenizer_exceptions.py │ │ ├── spaCy-spacy-lang-ca-punctuation.py │ │ ├── spaCy-spacy-lang-char_classes.py │ │ ├── spaCy-spacy-lang-en-stop_words.py │ │ ├── spaCy-spacy-lang-es-punctuation.py │ │ ├── spaCy-spacy-lang-fa-examples.py │ │ ├── spaCy-spacy-lang-fa-generate_verbs_exc.py │ │ ├── spaCy-spacy-lang-fa-lex_attrs.py │ │ ├── spaCy-spacy-lang-fa-stop_words.py │ │ ├── spaCy-spacy-lang-fa-tokenizer_exceptions.py │ │ ├── spaCy-spacy-lang-fr-_tokenizer_exceptions_list.py │ │ ├── spaCy-spacy-lang-fr-punctuation.py │ │ ├── spaCy-spacy-lang-fr-stop_words.py │ │ ├── spaCy-spacy-lang-fr-tokenizer_exceptions.py │ │ ├── spaCy-spacy-lang-grc-examples.py │ │ ├── spaCy-spacy-lang-grc-lex_attrs.py │ │ ├── spaCy-spacy-lang-grc-stop_words.py │ │ ├── spaCy-spacy-lang-grc-test_text.py │ │ ├── spaCy-spacy-lang-grc-tokenizer_exceptions.py │ │ ├── spaCy-spacy-lang-gu-examples.py │ │ ├── spaCy-spacy-lang-gu-stop_words.py │ │ ├── spaCy-spacy-lang-hi-examples.py │ │ ├── spaCy-spacy-lang-hi-lex_attrs.py │ │ ├── spaCy-spacy-lang-hi-stop_words.py │ │ ├── spaCy-spacy-lang-hu-punctuation.py │ │ ├── spaCy-spacy-lang-id-punctuation.py │ │ ├── spaCy-spacy-lang-it-punctuation.py │ │ ├── spaCy-spacy-lang-ja-__init__.py │ │ ├── spaCy-spacy-lang-ja-examples.py │ │ ├── spaCy-spacy-lang-ja-stop_words.py │ │ ├── spaCy-spacy-lang-ja-tag_bigram_map.py │ │ ├── spaCy-spacy-lang-ja-tag_map.py │ │ ├── spaCy-spacy-lang-ja-tag_orth_map.py │ │ ├── spaCy-spacy-lang-kn-examples.py │ │ ├── spaCy-spacy-lang-kn-stop_words.py │ │ ├── spaCy-spacy-lang-ko-__init__.py │ │ ├── spaCy-spacy-lang-ko-examples.py │ │ ├── spaCy-spacy-lang-ko-lex_attrs.py │ │ ├── spaCy-spacy-lang-ko-stop_words.py │ │ ├── spaCy-spacy-lang-ko-tag_map.py │ │ ├── spaCy-spacy-lang-lb-punctuation.py │ │ ├── spaCy-spacy-lang-lex_attrs.py │ │ ├── spaCy-spacy-lang-lij-punctuation.py │ │ ├── spaCy-spacy-lang-lij-tokenizer_exceptions.py │ │ ├── spaCy-spacy-lang-ml-examples.py │ │ ├── spaCy-spacy-lang-ml-lex_attrs.py │ │ ├── spaCy-spacy-lang-ml-stop_words.py │ │ ├── spaCy-spacy-lang-mr-stop_words.py │ │ ├── spaCy-spacy-lang-nb-punctuation.py │ │ ├── spaCy-spacy-lang-ne-examples.py │ │ ├── spaCy-spacy-lang-ne-lex_attrs.py │ │ ├── spaCy-spacy-lang-ne-stop_words.py │ │ ├── spaCy-spacy-lang-nl-punctuation.py │ │ ├── spaCy-spacy-lang-norm_exceptions.py │ │ ├── spaCy-spacy-lang-pl-examples.py │ │ ├── spaCy-spacy-lang-pl-punctuation.py │ │ ├── spaCy-spacy-lang-punctuation.py │ │ ├── spaCy-spacy-lang-ro-punctuation.py │ │ ├── spaCy-spacy-lang-ru-examples.py │ │ ├── spaCy-spacy-lang-sa-examples.py │ │ ├── spaCy-spacy-lang-sa-lex_attrs.py │ │ ├── spaCy-spacy-lang-sa-stop_words.py │ │ ├── spaCy-spacy-lang-si-examples.py │ │ ├── spaCy-spacy-lang-si-lex_attrs.py │ │ ├── spaCy-spacy-lang-si-stop_words.py │ │ ├── spaCy-spacy-lang-sk-examples.py │ │ ├── spaCy-spacy-lang-sl-stop_words.py │ │ ├── spaCy-spacy-lang-ta-examples.py │ │ ├── spaCy-spacy-lang-ta-lex_attrs.py │ │ ├── spaCy-spacy-lang-ta-stop_words.py │ │ ├── spaCy-spacy-lang-te-examples.py │ │ ├── spaCy-spacy-lang-te-lex_attrs.py │ │ ├── spaCy-spacy-lang-te-stop_words.py │ │ ├── spaCy-spacy-lang-th-lex_attrs.py │ │ ├── spaCy-spacy-lang-th-stop_words.py │ │ ├── spaCy-spacy-lang-th-tokenizer_exceptions.py │ │ ├── spaCy-spacy-lang-ti-examples.py │ │ ├── spaCy-spacy-lang-ti-lex_attrs.py │ │ ├── spaCy-spacy-lang-ti-punctuation.py │ │ ├── spaCy-spacy-lang-ti-stop_words.py │ │ ├── spaCy-spacy-lang-ti-tokenizer_exceptions.py │ │ ├── spaCy-spacy-lang-tokenizer_exceptions.py │ │ ├── spaCy-spacy-lang-uk-examples.py │ │ ├── spaCy-spacy-lang-vi-lex_attrs.py │ │ ├── spaCy-spacy-lang-vi-stop_words.py │ │ ├── spaCy-spacy-lang-xx-examples.py │ │ ├── spaCy-spacy-lang-yo-examples.py │ │ ├── spaCy-spacy-lang-yo-lex_attrs.py │ │ ├── spaCy-spacy-lang-yo-stop_words.py │ │ ├── spaCy-spacy-lang-zh-examples.py │ │ ├── spaCy-spacy-lang-zh-lex_attrs.py │ │ ├── spaCy-spacy-lang-zh-stop_words.py │ │ ├── spaCy-spacy-language.py │ │ ├── spaCy-spacy-scorer.py │ │ ├── spaCy-spacy-tests-lang-am-test_text.py │ │ ├── spaCy-spacy-tests-lang-bn-test_tokenizer.py │ │ ├── spaCy-spacy-tests-lang-ca-test_text.py │ │ ├── spaCy-spacy-tests-lang-de-test_text.py │ │ ├── spaCy-spacy-tests-lang-en-test_customized_tokenizer.py │ │ ├── spaCy-spacy-tests-lang-en-test_text.py │ │ ├── spaCy-spacy-tests-lang-es-test_text.py │ │ ├── spaCy-spacy-tests-lang-fr-test_text.py │ │ ├── spaCy-spacy-tests-lang-grc-test_text.py │ │ ├── spaCy-spacy-tests-lang-gu-test_text.py │ │ ├── spaCy-spacy-tests-lang-hi-test_lex_attrs.py │ │ ├── spaCy-spacy-tests-lang-hu-test_tokenizer.py │ │ ├── spaCy-spacy-tests-lang-ja-test_lemmatization.py │ │ ├── spaCy-spacy-tests-lang-ja-test_tokenizer.py │ │ ├── spaCy-spacy-tests-lang-ko-test_lemmatization.py │ │ ├── spaCy-spacy-tests-lang-ko-test_tokenizer.py │ │ ├── spaCy-spacy-tests-lang-ky-test_tokenizer.py │ │ ├── spaCy-spacy-tests-lang-lb-test_text.py │ │ ├── spaCy-spacy-tests-lang-ml-test_text.py │ │ ├── spaCy-spacy-tests-lang-ne-test_text.py │ │ ├── spaCy-spacy-tests-lang-sa-test_text.py │ │ ├── spaCy-spacy-tests-lang-test_attrs.py │ │ ├── spaCy-spacy-tests-lang-th-test_tokenizer.py │ │ ├── spaCy-spacy-tests-lang-ti-test_text.py │ │ ├── spaCy-spacy-tests-lang-tt-test_tokenizer.py │ │ ├── spaCy-spacy-tests-lang-vi-test_tokenizer.py │ │ ├── spaCy-spacy-tests-lang-yo-test_text.py │ │ ├── spaCy-spacy-tests-lang-zh-test_text.py │ │ ├── spaCy-spacy-tests-lang-zh-test_tokenizer.py │ │ ├── spaCy-spacy-tests-pipeline-test_sentencizer.py │ │ ├── spaCy-spacy-tests-regression-test_issue1501-2000.py │ │ ├── spaCy-spacy-tests-regression-test_issue3001-3500.py │ │ ├── spaCy-spacy-tests-regression-test_issue3501-4000.py │ │ ├── spaCy-spacy-tests-serialize-test_serialize_tokenizer.py │ │ ├── spaCy-spacy-tests-test_displacy.py │ │ ├── spaCy-spacy-tests-tokenizer-test_exceptions.py │ │ ├── spaCy-spacy-tests-tokenizer-test_naughty_strings.py │ │ ├── spaCy-spacy-tests-tokenizer-test_urls.py │ │ ├── spaCy-spacy-tests-training-test_augmenters.py │ │ └── spaCy-spacy-util.py │ ├── cfg_case.py │ ├── cfg_case_issue50.py │ ├── cfg_case_with_class.py │ ├── cfg_test_cases_issue45 │ │ ├── stellargraph-stellargraph-layer-graphsage.py │ │ └── stellargraph-stellargraph-layer-hinsage.py │ ├── constant_propagation │ │ ├── callable.py │ │ ├── enumerate.py │ │ ├── instance_variables.py │ │ └── tuples.py │ ├── cpg_micro_benchmark │ │ ├── case_field_sensitivity.py │ │ ├── case_interprocedural.py │ │ ├── case_scope.py │ │ └── case_syntax_sugar.py │ ├── fully_qualified_name_inference │ │ ├── case1.py │ │ ├── case2.py │ │ ├── case3.py │ │ ├── external_lib_test.py │ │ └── to_import.py │ ├── import_graph_case │ │ └── module_A.py │ ├── scope-case.py │ ├── sort_algo_implementations │ │ ├── GroundTruth.json │ │ ├── README.md │ │ ├── __init__.py │ │ ├── bubble_sort.py │ │ ├── bubble_sort_optimised.py │ │ ├── bucket_sort.py │ │ ├── cocktail_sort.py │ │ ├── comb_sort.py │ │ ├── common │ │ │ └── helpers.py │ │ ├── counting_sort.py │ │ ├── gnome_sort.py │ │ ├── heapsort.py │ │ ├── insertion_sort.py │ │ ├── merge_sort.py │ │ ├── merge_sort_bottom_up.py │ │ ├── odd_even_sort.py │ │ ├── quicksort.py │ │ ├── radix_sort.py │ │ └── selection_sort.py │ ├── ssa_basecase │ │ ├── ssa_case-5.py │ │ ├── ssa_case-complex.py │ │ ├── ssa_case.py │ │ ├── ssa_case6.py │ │ ├── ssa_case7.py │ │ ├── ssa_case8.py │ │ ├── ssa_case_1.py │ │ ├── ssa_case_10.py │ │ ├── ssa_case_11.py │ │ ├── ssa_case_12.py │ │ ├── ssa_case_13.py │ │ ├── ssa_case_14.py │ │ ├── ssa_case_1_no_sugar.py │ │ ├── ssa_case_2.py │ │ ├── ssa_case_3.py │ │ ├── ssa_case_4.py │ │ ├── ssa_case_9.py │ │ ├── ssa_case_complex_no_sugar.py │ │ └── ssa_inter_procedure.py │ ├── try_catch_complex.py │ ├── typeinfer_basecase │ │ ├── basecase_pytype │ │ │ ├── .ninja_log │ │ │ ├── build.ninja │ │ │ ├── imports │ │ │ │ ├── case1.imports │ │ │ │ ├── case10.imports │ │ │ │ ├── case11.imports │ │ │ │ ├── case12.imports │ │ │ │ ├── case2.imports │ │ │ │ ├── case3.imports │ │ │ │ ├── case4.imports │ │ │ │ ├── case5.imports │ │ │ │ ├── case6.imports │ │ │ │ ├── case7.imports │ │ │ │ ├── case8.imports │ │ │ │ ├── case9.imports │ │ │ │ └── default.pyi │ │ │ └── pyi │ │ │ │ ├── case1.pyi │ │ │ │ ├── case10.pyi │ │ │ │ ├── case11.pyi │ │ │ │ ├── case12.pyi │ │ │ │ ├── case2.pyi │ │ │ │ ├── case3.pyi │ │ │ │ ├── case4.pyi │ │ │ │ ├── case5.pyi │ │ │ │ ├── case6.pyi │ │ │ │ ├── case7.pyi │ │ │ │ ├── case8.pyi │ │ │ │ └── case9.pyi │ │ ├── case1.py │ │ ├── case10.py │ │ ├── case11.py │ │ ├── case12.py │ │ ├── case13.py │ │ ├── case14.py │ │ ├── case15.py │ │ ├── case16 │ │ │ ├── file1.py │ │ │ └── file2.py │ │ ├── case17.py │ │ ├── case18.py │ │ ├── case19.py │ │ ├── case2.py │ │ ├── case20.py │ │ ├── case21.py │ │ ├── case22.py │ │ ├── case23.py │ │ ├── case24.py │ │ ├── case25.py │ │ ├── case26.py │ │ ├── case27.py │ │ ├── case28.py │ │ ├── case29.py │ │ ├── case3.py │ │ ├── case30.py │ │ ├── case31.py │ │ ├── case32.py │ │ ├── case4.py │ │ ├── case5.py │ │ ├── case6.py │ │ ├── case7.py │ │ ├── case8.py │ │ └── case9.py │ ├── typeinfer_real_cases │ │ ├── pydriller_case2.py │ │ ├── pytest_case1.py │ │ ├── pytest_case10.py │ │ ├── pytest_case2.py │ │ ├── pytest_case3.py │ │ ├── pytest_case4.py │ │ ├── pytest_case5.py │ │ ├── pytest_case6.py │ │ ├── pytest_case7.py │ │ ├── pytest_case8.py │ │ ├── pytest_case9.py │ │ ├── pytest_code_source.py │ │ ├── pytest_io_saferepr.py │ │ ├── pytest_io_terminalwriter.py │ │ ├── pytest_io_wcwidth.py │ │ ├── pytest_nodes.py │ │ ├── pytest_nose.py │ │ ├── pytest_outcomes.py │ │ ├── pytest_unittest.py │ │ ├── requests_case1.py │ │ └── requests_case2.py │ └── with_stmt_case.py ├── test_cfg.py ├── test_cfg_robust.py ├── test_constant_prop.py ├── test_core.py ├── test_duc.py ├── test_fqn_actual_data.py ├── test_fully_qualified_name_inference.py ├── test_mnode.py ├── test_scope_graph.py ├── test_ssa.py ├── test_typeinfer.py ├── test_typeinfer_actual_data.py ├── test_typeinfer_with_real_libs.py └── tmp_test_script_for_issue.py └── tox.ini /.github/workflows/python-app-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/.github/workflows/python-app-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/CITATION.cff -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/_static/resources/Scalpel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/docs/source/_static/resources/Scalpel -------------------------------------------------------------------------------- /docs/source/_static/resources/Scalpel-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/docs/source/_static/resources/Scalpel-logo.png -------------------------------------------------------------------------------- /docs/source/_static/resources/Scalpel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/docs/source/_static/resources/Scalpel.png -------------------------------------------------------------------------------- /docs/source/_static/resources/Scalpel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/docs/source/_static/resources/Scalpel.svg -------------------------------------------------------------------------------- /docs/source/_static/resources/cfg_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/docs/source/_static/resources/cfg_example.png -------------------------------------------------------------------------------- /docs/source/_static/resources/europython.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/docs/source/_static/resources/europython.png -------------------------------------------------------------------------------- /docs/source/_static/resources/function_fib_cfg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/docs/source/_static/resources/function_fib_cfg.png -------------------------------------------------------------------------------- /docs/source/_static/resources/scalpel_design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/docs/source/_static/resources/scalpel_design.png -------------------------------------------------------------------------------- /docs/source/_static/resources/scalpel_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/docs/source/_static/resources/scalpel_diagram.png -------------------------------------------------------------------------------- /docs/source/_static/resources/ssa_diagram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/docs/source/_static/resources/ssa_diagram -------------------------------------------------------------------------------- /docs/source/_static/resources/ssa_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/docs/source/_static/resources/ssa_diagram.png -------------------------------------------------------------------------------- /docs/source/_static/resources/ssa_diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/docs/source/_static/resources/ssa_diagram.svg -------------------------------------------------------------------------------- /docs/source/api/index.md: -------------------------------------------------------------------------------- 1 | # API reference 2 | -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/docs/source/index.md -------------------------------------------------------------------------------- /docs/source/spelling_wordlist.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/source/user-guide/core-utilities/Call-Graph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/docs/source/user-guide/core-utilities/Call-Graph.md -------------------------------------------------------------------------------- /docs/source/user-guide/core-utilities/Control-Flow-Graph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/docs/source/user-guide/core-utilities/Control-Flow-Graph.md -------------------------------------------------------------------------------- /docs/source/user-guide/core-utilities/Rewriter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/docs/source/user-guide/core-utilities/Rewriter.md -------------------------------------------------------------------------------- /docs/source/user-guide/core-utilities/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/docs/source/user-guide/core-utilities/index.md -------------------------------------------------------------------------------- /docs/source/user-guide/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/docs/source/user-guide/index.md -------------------------------------------------------------------------------- /docs/source/user-guide/middle-level-modules/Import-Graph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/docs/source/user-guide/middle-level-modules/Import-Graph.md -------------------------------------------------------------------------------- /docs/source/user-guide/middle-level-modules/SSA-&-Constant-Propagation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/docs/source/user-guide/middle-level-modules/SSA-&-Constant-Propagation.md -------------------------------------------------------------------------------- /docs/source/user-guide/middle-level-modules/Type-Inference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/docs/source/user-guide/middle-level-modules/Type-Inference.md -------------------------------------------------------------------------------- /docs/source/user-guide/middle-level-modules/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/docs/source/user-guide/middle-level-modules/index.md -------------------------------------------------------------------------------- /examples/API_name_qualifying_tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/examples/API_name_qualifying_tutorial.ipynb -------------------------------------------------------------------------------- /examples/CFG_tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/examples/CFG_tutorial.ipynb -------------------------------------------------------------------------------- /examples/FQN_tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/examples/FQN_tutorial.ipynb -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/Rewriter_tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/examples/Rewriter_tutorial.ipynb -------------------------------------------------------------------------------- /examples/SSA_tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/examples/SSA_tutorial.ipynb -------------------------------------------------------------------------------- /examples/call_graph_tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/examples/call_graph_tutorial.ipynb -------------------------------------------------------------------------------- /examples/cg_example_pkg/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/examples/cg_example_pkg/main.py -------------------------------------------------------------------------------- /examples/cg_example_pkg/sub_folder1/module1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/examples/cg_example_pkg/sub_folder1/module1.py -------------------------------------------------------------------------------- /examples/cg_example_pkg/sub_folder1/module2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/examples/cg_example_pkg/sub_folder1/module2.py -------------------------------------------------------------------------------- /examples/fqn_example/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/examples/fqn_example/example.py -------------------------------------------------------------------------------- /examples/import_graph_example_pkg/module_a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/examples/import_graph_example_pkg/module_a.py -------------------------------------------------------------------------------- /examples/import_graph_example_pkg/module_b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/examples/import_graph_example_pkg/module_b.py -------------------------------------------------------------------------------- /examples/import_graph_example_pkg/module_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/examples/import_graph_example_pkg/module_c.py -------------------------------------------------------------------------------- /examples/import_graph_tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/examples/import_graph_tutorial.ipynb -------------------------------------------------------------------------------- /examples/test_program_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/examples/test_program_transformer.py -------------------------------------------------------------------------------- /examples/type_infer_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/examples/type_infer_example.py -------------------------------------------------------------------------------- /examples/type_infer_example_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/examples/type_infer_example_2.py -------------------------------------------------------------------------------- /examples/type_infer_tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/examples/type_infer_tutorial.ipynb -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/pytest.ini -------------------------------------------------------------------------------- /readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/readthedocs.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/setup.py -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/setup.sh -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scalpel/SSA/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/src/scalpel/SSA/__init__.py -------------------------------------------------------------------------------- /src/scalpel/SSA/alg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/src/scalpel/SSA/alg.py -------------------------------------------------------------------------------- /src/scalpel/SSA/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/src/scalpel/SSA/const.py -------------------------------------------------------------------------------- /src/scalpel/SSA/def_use.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/src/scalpel/SSA/def_use.py -------------------------------------------------------------------------------- /src/scalpel/SSA/ssa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/src/scalpel/SSA/ssa.py -------------------------------------------------------------------------------- /src/scalpel/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/src/scalpel/__init__.py -------------------------------------------------------------------------------- /src/scalpel/call_graph/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/src/scalpel/call_graph/__init__.py -------------------------------------------------------------------------------- /src/scalpel/call_graph/pycg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/src/scalpel/call_graph/pycg.py -------------------------------------------------------------------------------- /src/scalpel/cfg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/src/scalpel/cfg/__init__.py -------------------------------------------------------------------------------- /src/scalpel/cfg/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/src/scalpel/cfg/builder.py -------------------------------------------------------------------------------- /src/scalpel/cfg/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/src/scalpel/cfg/model.py -------------------------------------------------------------------------------- /src/scalpel/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/src/scalpel/core/__init__.py -------------------------------------------------------------------------------- /src/scalpel/core/_scope_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/src/scalpel/core/_scope_graph.py -------------------------------------------------------------------------------- /src/scalpel/core/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scalpel/core/base/scalpel_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/src/scalpel/core/base/scalpel_class.py -------------------------------------------------------------------------------- /src/scalpel/core/base/scalpel_method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/src/scalpel/core/base/scalpel_method.py -------------------------------------------------------------------------------- /src/scalpel/core/base/scalpel_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/src/scalpel/core/base/scalpel_module.py -------------------------------------------------------------------------------- /src/scalpel/core/base/stmt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scalpel/core/base/stmt/assign_stmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/src/scalpel/core/base/stmt/assign_stmt.py -------------------------------------------------------------------------------- /src/scalpel/core/base/stmt/invoke_stmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/src/scalpel/core/base/stmt/invoke_stmt.py -------------------------------------------------------------------------------- /src/scalpel/core/base/stmt/stmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/src/scalpel/core/base/stmt/stmt.py -------------------------------------------------------------------------------- /src/scalpel/core/class_visitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/src/scalpel/core/class_visitor.py -------------------------------------------------------------------------------- /src/scalpel/core/fun_def_visitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/src/scalpel/core/fun_def_visitor.py -------------------------------------------------------------------------------- /src/scalpel/core/func_call_visitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/src/scalpel/core/func_call_visitor.py -------------------------------------------------------------------------------- /src/scalpel/core/kw_visitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/src/scalpel/core/kw_visitor.py -------------------------------------------------------------------------------- /src/scalpel/core/mnode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/src/scalpel/core/mnode.py -------------------------------------------------------------------------------- /src/scalpel/core/source_visitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/src/scalpel/core/source_visitor.py -------------------------------------------------------------------------------- /src/scalpel/core/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/src/scalpel/core/util.py -------------------------------------------------------------------------------- /src/scalpel/core/vars_visitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/src/scalpel/core/vars_visitor.py -------------------------------------------------------------------------------- /src/scalpel/core/visitors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/src/scalpel/core/visitors.py -------------------------------------------------------------------------------- /src/scalpel/duc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/src/scalpel/duc.py -------------------------------------------------------------------------------- /src/scalpel/file_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/src/scalpel/file_system.py -------------------------------------------------------------------------------- /src/scalpel/fqn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/src/scalpel/fqn/__init__.py -------------------------------------------------------------------------------- /src/scalpel/fqn/fully_qualified_name_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/src/scalpel/fqn/fully_qualified_name_inference.py -------------------------------------------------------------------------------- /src/scalpel/import_graph/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/src/scalpel/import_graph/__init__.py -------------------------------------------------------------------------------- /src/scalpel/import_graph/import_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/src/scalpel/import_graph/import_graph.py -------------------------------------------------------------------------------- /src/scalpel/rewriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/src/scalpel/rewriter.py -------------------------------------------------------------------------------- /src/scalpel/typeinfer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/src/scalpel/typeinfer/__init__.py -------------------------------------------------------------------------------- /src/scalpel/typeinfer/analysers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/src/scalpel/typeinfer/analysers.py -------------------------------------------------------------------------------- /src/scalpel/typeinfer/classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/src/scalpel/typeinfer/classes.py -------------------------------------------------------------------------------- /src/scalpel/typeinfer/folding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/src/scalpel/typeinfer/folding.py -------------------------------------------------------------------------------- /src/scalpel/typeinfer/typeinfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/src/scalpel/typeinfer/typeinfer.py -------------------------------------------------------------------------------- /src/scalpel/typeinfer/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/src/scalpel/typeinfer/utilities.py -------------------------------------------------------------------------------- /src/scalpel/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/src/scalpel/util.py -------------------------------------------------------------------------------- /tests/test-cases/basic/mnode_case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/basic/mnode_case.py -------------------------------------------------------------------------------- /tests/test-cases/basic/ssa_case-5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/basic/ssa_case-5.py -------------------------------------------------------------------------------- /tests/test-cases/basic/ssa_case-complex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/basic/ssa_case-complex.py -------------------------------------------------------------------------------- /tests/test-cases/basic/ssa_case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/basic/ssa_case.py -------------------------------------------------------------------------------- /tests/test-cases/basic/ssa_case_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/basic/ssa_case_1.py -------------------------------------------------------------------------------- /tests/test-cases/basic/ssa_case_1_no_sugar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/basic/ssa_case_1_no_sugar.py -------------------------------------------------------------------------------- /tests/test-cases/basic/ssa_case_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/basic/ssa_case_2.py -------------------------------------------------------------------------------- /tests/test-cases/basic/ssa_case_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/basic/ssa_case_3.py -------------------------------------------------------------------------------- /tests/test-cases/basic/ssa_case_complex_no_sugar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/basic/ssa_case_complex_no_sugar.py -------------------------------------------------------------------------------- /tests/test-cases/basic/ssa_inter_procedure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/basic/ssa_inter_procedure.py -------------------------------------------------------------------------------- /tests/test-cases/basic/sugar_case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/basic/sugar_case.py -------------------------------------------------------------------------------- /tests/test-cases/basic/tc1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/basic/tc1.py -------------------------------------------------------------------------------- /tests/test-cases/basic/type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/basic/type.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-django-conf-locale-__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-django-conf-locale-__init__.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-django-conf-locale-ar-formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-django-conf-locale-ar-formats.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-django-conf-locale-fa-formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-django-conf-locale-fa-formats.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-django-conf-locale-ja-formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-django-conf-locale-ja-formats.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-django-conf-locale-km-formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-django-conf-locale-km-formats.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-django-conf-locale-ko-formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-django-conf-locale-ko-formats.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-django-conf-locale-th-formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-django-conf-locale-th-formats.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-django-conf-locale-zh_Hans-formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-django-conf-locale-zh_Hans-formats.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-django-conf-locale-zh_Hant-formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-django-conf-locale-zh_Hant-formats.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-django-contrib-admin-models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-django-contrib-admin-models.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-django-contrib-admin-options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-django-contrib-admin-options.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-django-contrib-flatpages-forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-django-contrib-flatpages-forms.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-django-contrib-flatpages-migrations-0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-django-contrib-flatpages-migrations-0001_initial.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-django-contrib-flatpages-models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-django-contrib-flatpages-models.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-django-contrib-gis-db-models-fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-django-contrib-gis-db-models-fields.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-django-contrib-postgres-fields-hstore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-django-contrib-postgres-fields-hstore.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-django-contrib-redirects-migrations-0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-django-contrib-redirects-migrations-0001_initial.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-django-contrib-redirects-migrations-0002_alter_redirect_new_path_help_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-django-contrib-redirects-migrations-0002_alter_redirect_new_path_help_text.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-django-contrib-redirects-models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-django-contrib-redirects-models.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-django-core-cache-backends-memcached.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-django-core-cache-backends-memcached.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-django-core-management-commands-compilemessages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-django-core-management-commands-compilemessages.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-django-core-paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-django-core-paginator.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-django-core-validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-django-core-validators.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-django-db-models-fields-__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-django-db-models-fields-__init__.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-django-forms-models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-django-forms-models.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-django-template-defaultfilters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-django-template-defaultfilters.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-django-test-client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-django-test-client.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-django-test-testcases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-django-test-testcases.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-django-urls-resolvers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-django-urls-resolvers.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-django-utils-dateparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-django-utils-dateparse.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-django-utils-encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-django-utils-encoding.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-django-utils-formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-django-utils-formats.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-django-utils-html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-django-utils-html.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-django-utils-text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-django-utils-text.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-django-utils-translation-trans_real.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-django-utils-translation-trans_real.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-django-views-csrf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-django-views-csrf.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-django-views-debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-django-views-debug.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-django-views-generic-dates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-django-views-generic-dates.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-django-views-generic-list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-django-views-generic-list.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-django-views-static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-django-views-static.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-tests-admin_changelist-tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-tests-admin_changelist-tests.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-tests-admin_scripts-tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-tests-admin_scripts-tests.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-tests-admin_utils-test_logentry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-tests-admin_utils-test_logentry.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-tests-admin_views-test_history_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-tests-admin_views-test_history_view.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-tests-admin_views-tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-tests-admin_views-tests.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-tests-admin_widgets-tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-tests-admin_widgets-tests.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-tests-auth_tests-test_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-tests-auth_tests-test_basic.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-tests-auth_tests-test_forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-tests-auth_tests-test_forms.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-tests-auth_tests-test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-tests-auth_tests-test_models.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-tests-auth_tests-test_validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-tests-auth_tests-test_validators.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-tests-auth_tests-test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-tests-auth_tests-test_views.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-tests-cache-tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-tests-cache-tests.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-tests-db_functions-text-test_pad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-tests-db_functions-text-test_pad.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-tests-db_functions-text-test_strindex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-tests-db_functions-text-test_strindex.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-tests-file_uploads-tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-tests-file_uploads-tests.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-tests-flatpages_tests-test_forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-tests-flatpages_tests-test_forms.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-tests-forms_tests-field_tests-test_filefield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-tests-forms_tests-field_tests-test_filefield.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-tests-forms_tests-field_tests-test_imagefield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-tests-forms_tests-field_tests-test_imagefield.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-tests-forms_tests-field_tests-test_integerfield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-tests-forms_tests-field_tests-test_integerfield.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-tests-forms_tests-field_tests-test_jsonfield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-tests-forms_tests-field_tests-test_jsonfield.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-tests-forms_tests-field_tests-test_slugfield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-tests-forms_tests-field_tests-test_slugfield.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-tests-forms_tests-field_tests-test_urlfield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-tests-forms_tests-field_tests-test_urlfield.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-tests-forms_tests-tests-test_error_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-tests-forms_tests-tests-test_error_messages.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-tests-forms_tests-tests-test_forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-tests-forms_tests-tests-test_forms.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-tests-forms_tests-tests-test_validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-tests-forms_tests-tests-test_validators.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-tests-forms_tests-tests-tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-tests-forms_tests-tests-tests.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-tests-httpwrappers-tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-tests-httpwrappers-tests.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-tests-humanize_tests-tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-tests-humanize_tests-tests.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-tests-i18n-test_compilation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-tests-i18n-test_compilation.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-tests-i18n-tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-tests-i18n-tests.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-tests-invalid_models_tests-test_relative_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-tests-invalid_models_tests-test_relative_fields.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-tests-mail-tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-tests-mail-tests.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-tests-migrations-models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-tests-migrations-models.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-tests-migrations-test_autodetector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-tests-migrations-test_autodetector.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-tests-migrations-test_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-tests-migrations-test_commands.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-tests-model_fields-test_decimalfield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-tests-model_fields-test_decimalfield.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-tests-model_fields-test_durationfield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-tests-model_fields-test_durationfield.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-tests-model_fields-test_uuid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-tests-model_fields-test_uuid.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-tests-model_forms-test_uuid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-tests-model_forms-test_uuid.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-tests-model_forms-tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-tests-model_forms-tests.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-tests-postgres_tests-test_hstore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-tests-postgres_tests-test_hstore.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-tests-serializers-test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-tests-serializers-test_data.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-tests-staticfiles_tests-cases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-tests-staticfiles_tests-cases.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-tests-str-tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-tests-str-tests.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-tests-template_tests-filter_tests-test_force_escape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-tests-template_tests-filter_tests-test_force_escape.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-tests-template_tests-filter_tests-test_truncatechars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-tests-template_tests-filter_tests-test_truncatechars.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-tests-template_tests-filter_tests-test_truncatechars_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-tests-template_tests-filter_tests-test_truncatechars_html.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-tests-template_tests-filter_tests-test_truncatewords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-tests-template_tests-filter_tests-test_truncatewords.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-tests-template_tests-filter_tests-test_truncatewords_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-tests-template_tests-filter_tests-test_truncatewords_html.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-tests-template_tests-filter_tests-test_urlize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-tests-template_tests-filter_tests-test_urlize.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-tests-template_tests-filter_tests-test_urlizetrunc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-tests-template_tests-filter_tests-test_urlizetrunc.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-tests-template_tests-syntax_tests-test_filter_syntax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-tests-template_tests-syntax_tests-test_filter_syntax.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-tests-test_client_regress-tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-tests-test_client_regress-tests.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-tests-transactions-tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-tests-transactions-tests.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-tests-urlpatterns-tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-tests-urlpatterns-tests.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-tests-utils_tests-test_encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-tests-utils_tests-test_encoding.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-tests-utils_tests-test_jslex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-tests-utils_tests-test_jslex.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-tests-utils_tests-test_numberformat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-tests-utils_tests-test_numberformat.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-tests-utils_tests-test_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-tests-utils_tests-test_text.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-tests-validation-test_error_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-tests-validation-test_error_messages.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-tests-validators-tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-tests-validators-tests.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-tests-view_tests-generic_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-tests-view_tests-generic_urls.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-tests-view_tests-tests-test_csrf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-tests-view_tests-tests-test_csrf.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/django-tests-view_tests-tests-test_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/django-tests-view_tests-tests-test_debug.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/flask-tests-test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/flask-tests-test_cli.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/httpie-httpie-client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/httpie-httpie-client.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/pandas-pandas-core-computation-parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/pandas-pandas-core-computation-parsing.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/pandas-pandas-core-frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/pandas-pandas-core-frame.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/pandas-pandas-core-generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/pandas-pandas-core-generic.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/pandas-pandas-core-indexes-datetimes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/pandas-pandas-core-indexes-datetimes.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/pandas-pandas-core-reshape-merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/pandas-pandas-core-reshape-merge.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/pandas-pandas-core-series.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/pandas-pandas-core-series.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/pandas-pandas-core-strings-accessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/pandas-pandas-core-strings-accessor.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/pandas-pandas-io-formats-format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/pandas-pandas-io-formats-format.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/pandas-pandas-io-formats-style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/pandas-pandas-io-formats-style.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/pandas-pandas-io-formats-style_render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/pandas-pandas-io-formats-style_render.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/pandas-pandas-io-sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/pandas-pandas-io-sql.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/pandas-pandas-io-stata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/pandas-pandas-io-stata.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/pandas-pandas-tests-arrays-categorical-test_repr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/pandas-pandas-tests-arrays-categorical-test_repr.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/pandas-pandas-tests-frame-methods-test_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/pandas-pandas-tests-frame-methods-test_filter.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/pandas-pandas-tests-frame-methods-test_replace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/pandas-pandas-tests-frame-methods-test_replace.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/pandas-pandas-tests-frame-test_query_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/pandas-pandas-tests-frame-test_query_eval.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/pandas-pandas-tests-indexes-base_class-test_formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/pandas-pandas-tests-indexes-base_class-test_formats.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/pandas-pandas-tests-indexes-categorical-test_formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/pandas-pandas-tests-indexes-categorical-test_formats.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/pandas-pandas-tests-indexes-object-test_astype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/pandas-pandas-tests-indexes-object-test_astype.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/pandas-pandas-tests-io-excel-test_readers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/pandas-pandas-tests-io-excel-test_readers.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/pandas-pandas-tests-io-formats-test_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/pandas-pandas-tests-io-formats-test_format.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/pandas-pandas-tests-io-formats-test_printing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/pandas-pandas-tests-io-formats-test_printing.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/pandas-pandas-tests-io-formats-test_to_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/pandas-pandas-tests-io-formats-test_to_csv.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/pandas-pandas-tests-io-json-test_json_table_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/pandas-pandas-tests-io-json-test_json_table_schema.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/pandas-pandas-tests-io-json-test_pandas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/pandas-pandas-tests-io-json-test_pandas.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/pandas-pandas-tests-io-json-test_readlines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/pandas-pandas-tests-io-json-test_readlines.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/pandas-pandas-tests-io-parser-common-test_common_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/pandas-pandas-tests-io-parser-common-test_common_basic.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/pandas-pandas-tests-io-parser-test_encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/pandas-pandas-tests-io-parser-test_encoding.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/pandas-pandas-tests-io-parser-usecols-test_strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/pandas-pandas-tests-io-parser-usecols-test_strings.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/pandas-pandas-tests-io-test_clipboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/pandas-pandas-tests-io-test_clipboard.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/pandas-pandas-tests-io-test_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/pandas-pandas-tests-io-test_common.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/pandas-pandas-tests-io-test_stata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/pandas-pandas-tests-io-test_stata.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/pandas-pandas-tests-io-xml-test_to_xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/pandas-pandas-tests-io-xml-test_to_xml.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/pandas-pandas-tests-scalar-test_nat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/pandas-pandas-tests-scalar-test_nat.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/pandas-pandas-tests-series-methods-test_astype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/pandas-pandas-tests-series-methods-test_astype.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/pandas-pandas-tests-series-methods-test_to_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/pandas-pandas-tests-series-methods-test_to_csv.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/pandas-pandas-tests-series-test_cumulative.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/pandas-pandas-tests-series-test_cumulative.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/pandas-pandas-tests-strings-test_strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/pandas-pandas-tests-strings-test_strings.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/pytorch-caffe2-python-layers_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/pytorch-caffe2-python-layers_test.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/pytorch-test-jit-test_python_builtins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/pytorch-test-jit-test_python_builtins.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/pytorch-test-package-test_directory_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/pytorch-test-package-test_directory_reader.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/pytorch-test-package-test_misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/pytorch-test-package-test_misc.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/pytorch-test-package-test_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/pytorch-test-package-test_resources.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/pytorch-test-package-test_torchscript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/pytorch-test-package-test_torchscript.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/pytorch-test-quantization-core-test_quantized_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/pytorch-test-quantization-core-test_quantized_module.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/pytorch-test-quantization-jit-test_quantize_jit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/pytorch-test-quantization-jit-test_quantize_jit.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/pytorch-test-test_fx_experimental.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/pytorch-test-test_fx_experimental.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/pytorch-test-test_jit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/pytorch-test-test_jit.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/pytorch-test-test_jit_fuser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/pytorch-test-test_jit_fuser.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/pytorch-test-test_jit_fuser_te.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/pytorch-test-test_jit_fuser_te.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/pytorch-test-test_linalg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/pytorch-test-test_linalg.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/pytorch-test-test_nn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/pytorch-test-test_nn.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/pytorch-test-test_torch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/pytorch-test-test_torch.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/pytorch-test-test_type_promotion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/pytorch-test-test_type_promotion.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/pytorch-tools-actions_local_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/pytorch-tools-actions_local_runner.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/pytorch-torch-_torch_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/pytorch-torch-_torch_docs.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/pytorch-torch-distributed-elastic-rendezvous-etcd_rendezvous.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/pytorch-torch-distributed-elastic-rendezvous-etcd_rendezvous.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/pytorch-torch-distributed-pipeline-sync-_balance-blockpartition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/pytorch-torch-distributed-pipeline-sync-_balance-blockpartition.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/pytorch-torch-distributed-pipeline-sync-pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/pytorch-torch-distributed-pipeline-sync-pipeline.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/pytorch-torch-distributed-pipeline-sync-skip-portal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/pytorch-torch-distributed-pipeline-sync-skip-portal.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/pytorch-torch-distributed-pipeline-sync-skip-skippable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/pytorch-torch-distributed-pipeline-sync-skip-skippable.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/pytorch-torch-linalg-__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/pytorch-torch-linalg-__init__.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/pytorch-torch-package-file_structure_representation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/pytorch-torch-package-file_structure_representation.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/requests-requests-certs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/requests-requests-certs.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/requests-requests-status_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/requests-requests-status_codes.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/requests-tests-test_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/requests-tests-test_requests.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/scrapy-docs-conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/scrapy-docs-conf.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/scrapy-scrapy-contracts-__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/scrapy-scrapy-contracts-__init__.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/scrapy-tests-test_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/scrapy-tests-test_commands.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/scrapy-tests-test_crawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/scrapy-tests-test_crawler.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/scrapy-tests-test_responsetypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/scrapy-tests-test_responsetypes.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/scrapy-tests-test_utils_asyncio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/scrapy-tests-test_utils_asyncio.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-cli-project-document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-cli-project-document.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-glossary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-glossary.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-am-examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-am-examples.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-am-lex_attrs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-am-lex_attrs.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-am-punctuation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-am-punctuation.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-am-stop_words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-am-stop_words.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-am-tokenizer_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-am-tokenizer_exceptions.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-ar-lex_attrs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-ar-lex_attrs.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-bn-examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-bn-examples.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-bn-punctuation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-bn-punctuation.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-bn-stop_words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-bn-stop_words.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-bn-tokenizer_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-bn-tokenizer_exceptions.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-ca-punctuation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-ca-punctuation.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-char_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-char_classes.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-en-stop_words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-en-stop_words.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-es-punctuation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-es-punctuation.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-fa-examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-fa-examples.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-fa-generate_verbs_exc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-fa-generate_verbs_exc.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-fa-lex_attrs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-fa-lex_attrs.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-fa-stop_words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-fa-stop_words.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-fa-tokenizer_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-fa-tokenizer_exceptions.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-fr-_tokenizer_exceptions_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-fr-_tokenizer_exceptions_list.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-fr-punctuation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-fr-punctuation.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-fr-stop_words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-fr-stop_words.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-fr-tokenizer_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-fr-tokenizer_exceptions.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-grc-examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-grc-examples.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-grc-lex_attrs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-grc-lex_attrs.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-grc-stop_words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-grc-stop_words.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-grc-test_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-grc-test_text.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-grc-tokenizer_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-grc-tokenizer_exceptions.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-gu-examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-gu-examples.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-gu-stop_words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-gu-stop_words.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-hi-examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-hi-examples.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-hi-lex_attrs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-hi-lex_attrs.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-hi-stop_words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-hi-stop_words.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-hu-punctuation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-hu-punctuation.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-id-punctuation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-id-punctuation.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-it-punctuation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-it-punctuation.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-ja-__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-ja-__init__.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-ja-examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-ja-examples.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-ja-stop_words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-ja-stop_words.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-ja-tag_bigram_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-ja-tag_bigram_map.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-ja-tag_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-ja-tag_map.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-ja-tag_orth_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-ja-tag_orth_map.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-kn-examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-kn-examples.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-kn-stop_words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-kn-stop_words.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-ko-__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-ko-__init__.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-ko-examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-ko-examples.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-ko-lex_attrs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-ko-lex_attrs.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-ko-stop_words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-ko-stop_words.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-ko-tag_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-ko-tag_map.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-lb-punctuation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-lb-punctuation.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-lex_attrs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-lex_attrs.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-lij-punctuation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-lij-punctuation.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-lij-tokenizer_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-lij-tokenizer_exceptions.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-ml-examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-ml-examples.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-ml-lex_attrs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-ml-lex_attrs.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-ml-stop_words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-ml-stop_words.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-mr-stop_words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-mr-stop_words.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-nb-punctuation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-nb-punctuation.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-ne-examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-ne-examples.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-ne-lex_attrs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-ne-lex_attrs.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-ne-stop_words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-ne-stop_words.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-nl-punctuation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-nl-punctuation.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-norm_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-norm_exceptions.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-pl-examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-pl-examples.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-pl-punctuation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-pl-punctuation.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-punctuation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-punctuation.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-ro-punctuation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-ro-punctuation.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-ru-examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-ru-examples.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-sa-examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-sa-examples.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-sa-lex_attrs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-sa-lex_attrs.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-sa-stop_words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-sa-stop_words.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-si-examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-si-examples.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-si-lex_attrs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-si-lex_attrs.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-si-stop_words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-si-stop_words.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-sk-examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-sk-examples.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-sl-stop_words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-sl-stop_words.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-ta-examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-ta-examples.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-ta-lex_attrs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-ta-lex_attrs.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-ta-stop_words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-ta-stop_words.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-te-examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-te-examples.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-te-lex_attrs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-te-lex_attrs.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-te-stop_words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-te-stop_words.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-th-lex_attrs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-th-lex_attrs.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-th-stop_words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-th-stop_words.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-th-tokenizer_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-th-tokenizer_exceptions.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-ti-examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-ti-examples.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-ti-lex_attrs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-ti-lex_attrs.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-ti-punctuation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-ti-punctuation.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-ti-stop_words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-ti-stop_words.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-ti-tokenizer_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-ti-tokenizer_exceptions.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-tokenizer_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-tokenizer_exceptions.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-uk-examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-uk-examples.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-vi-lex_attrs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-vi-lex_attrs.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-vi-stop_words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-vi-stop_words.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-xx-examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-xx-examples.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-yo-examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-yo-examples.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-yo-lex_attrs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-yo-lex_attrs.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-yo-stop_words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-yo-stop_words.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-zh-examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-zh-examples.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-zh-lex_attrs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-zh-lex_attrs.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-lang-zh-stop_words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-lang-zh-stop_words.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-language.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-language.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-scorer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-scorer.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-tests-lang-am-test_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-tests-lang-am-test_text.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-tests-lang-bn-test_tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-tests-lang-bn-test_tokenizer.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-tests-lang-ca-test_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-tests-lang-ca-test_text.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-tests-lang-de-test_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-tests-lang-de-test_text.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-tests-lang-en-test_customized_tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-tests-lang-en-test_customized_tokenizer.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-tests-lang-en-test_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-tests-lang-en-test_text.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-tests-lang-es-test_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-tests-lang-es-test_text.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-tests-lang-fr-test_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-tests-lang-fr-test_text.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-tests-lang-grc-test_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-tests-lang-grc-test_text.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-tests-lang-gu-test_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-tests-lang-gu-test_text.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-tests-lang-hi-test_lex_attrs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-tests-lang-hi-test_lex_attrs.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-tests-lang-hu-test_tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-tests-lang-hu-test_tokenizer.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-tests-lang-ja-test_lemmatization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-tests-lang-ja-test_lemmatization.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-tests-lang-ja-test_tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-tests-lang-ja-test_tokenizer.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-tests-lang-ko-test_lemmatization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-tests-lang-ko-test_lemmatization.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-tests-lang-ko-test_tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-tests-lang-ko-test_tokenizer.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-tests-lang-ky-test_tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-tests-lang-ky-test_tokenizer.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-tests-lang-lb-test_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-tests-lang-lb-test_text.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-tests-lang-ml-test_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-tests-lang-ml-test_text.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-tests-lang-ne-test_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-tests-lang-ne-test_text.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-tests-lang-sa-test_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-tests-lang-sa-test_text.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-tests-lang-test_attrs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-tests-lang-test_attrs.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-tests-lang-th-test_tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-tests-lang-th-test_tokenizer.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-tests-lang-ti-test_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-tests-lang-ti-test_text.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-tests-lang-tt-test_tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-tests-lang-tt-test_tokenizer.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-tests-lang-vi-test_tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-tests-lang-vi-test_tokenizer.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-tests-lang-yo-test_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-tests-lang-yo-test_text.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-tests-lang-zh-test_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-tests-lang-zh-test_text.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-tests-lang-zh-test_tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-tests-lang-zh-test_tokenizer.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-tests-pipeline-test_sentencizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-tests-pipeline-test_sentencizer.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-tests-regression-test_issue1501-2000.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-tests-regression-test_issue1501-2000.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-tests-regression-test_issue3001-3500.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-tests-regression-test_issue3001-3500.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-tests-regression-test_issue3501-4000.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-tests-regression-test_issue3501-4000.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-tests-serialize-test_serialize_tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-tests-serialize-test_serialize_tokenizer.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-tests-test_displacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-tests-test_displacy.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-tests-tokenizer-test_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-tests-tokenizer-test_exceptions.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-tests-tokenizer-test_naughty_strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-tests-tokenizer-test_naughty_strings.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-tests-tokenizer-test_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-tests-tokenizer-test_urls.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-tests-training-test_augmenters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-tests-training-test_augmenters.py -------------------------------------------------------------------------------- /tests/test-cases/cfg-tests/spaCy-spacy-util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg-tests/spaCy-spacy-util.py -------------------------------------------------------------------------------- /tests/test-cases/cfg_case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg_case.py -------------------------------------------------------------------------------- /tests/test-cases/cfg_case_issue50.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg_case_issue50.py -------------------------------------------------------------------------------- /tests/test-cases/cfg_case_with_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg_case_with_class.py -------------------------------------------------------------------------------- /tests/test-cases/cfg_test_cases_issue45/stellargraph-stellargraph-layer-graphsage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg_test_cases_issue45/stellargraph-stellargraph-layer-graphsage.py -------------------------------------------------------------------------------- /tests/test-cases/cfg_test_cases_issue45/stellargraph-stellargraph-layer-hinsage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cfg_test_cases_issue45/stellargraph-stellargraph-layer-hinsage.py -------------------------------------------------------------------------------- /tests/test-cases/constant_propagation/callable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/constant_propagation/callable.py -------------------------------------------------------------------------------- /tests/test-cases/constant_propagation/enumerate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/constant_propagation/enumerate.py -------------------------------------------------------------------------------- /tests/test-cases/constant_propagation/instance_variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/constant_propagation/instance_variables.py -------------------------------------------------------------------------------- /tests/test-cases/constant_propagation/tuples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/constant_propagation/tuples.py -------------------------------------------------------------------------------- /tests/test-cases/cpg_micro_benchmark/case_field_sensitivity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cpg_micro_benchmark/case_field_sensitivity.py -------------------------------------------------------------------------------- /tests/test-cases/cpg_micro_benchmark/case_interprocedural.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cpg_micro_benchmark/case_interprocedural.py -------------------------------------------------------------------------------- /tests/test-cases/cpg_micro_benchmark/case_scope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cpg_micro_benchmark/case_scope.py -------------------------------------------------------------------------------- /tests/test-cases/cpg_micro_benchmark/case_syntax_sugar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/cpg_micro_benchmark/case_syntax_sugar.py -------------------------------------------------------------------------------- /tests/test-cases/fully_qualified_name_inference/case1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/fully_qualified_name_inference/case1.py -------------------------------------------------------------------------------- /tests/test-cases/fully_qualified_name_inference/case2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/fully_qualified_name_inference/case2.py -------------------------------------------------------------------------------- /tests/test-cases/fully_qualified_name_inference/case3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/fully_qualified_name_inference/case3.py -------------------------------------------------------------------------------- /tests/test-cases/fully_qualified_name_inference/external_lib_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/fully_qualified_name_inference/external_lib_test.py -------------------------------------------------------------------------------- /tests/test-cases/fully_qualified_name_inference/to_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/fully_qualified_name_inference/to_import.py -------------------------------------------------------------------------------- /tests/test-cases/import_graph_case/module_A.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-cases/scope-case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/scope-case.py -------------------------------------------------------------------------------- /tests/test-cases/sort_algo_implementations/GroundTruth.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /tests/test-cases/sort_algo_implementations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/sort_algo_implementations/README.md -------------------------------------------------------------------------------- /tests/test-cases/sort_algo_implementations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-cases/sort_algo_implementations/bubble_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/sort_algo_implementations/bubble_sort.py -------------------------------------------------------------------------------- /tests/test-cases/sort_algo_implementations/bubble_sort_optimised.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/sort_algo_implementations/bubble_sort_optimised.py -------------------------------------------------------------------------------- /tests/test-cases/sort_algo_implementations/bucket_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/sort_algo_implementations/bucket_sort.py -------------------------------------------------------------------------------- /tests/test-cases/sort_algo_implementations/cocktail_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/sort_algo_implementations/cocktail_sort.py -------------------------------------------------------------------------------- /tests/test-cases/sort_algo_implementations/comb_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/sort_algo_implementations/comb_sort.py -------------------------------------------------------------------------------- /tests/test-cases/sort_algo_implementations/common/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/sort_algo_implementations/common/helpers.py -------------------------------------------------------------------------------- /tests/test-cases/sort_algo_implementations/counting_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/sort_algo_implementations/counting_sort.py -------------------------------------------------------------------------------- /tests/test-cases/sort_algo_implementations/gnome_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/sort_algo_implementations/gnome_sort.py -------------------------------------------------------------------------------- /tests/test-cases/sort_algo_implementations/heapsort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/sort_algo_implementations/heapsort.py -------------------------------------------------------------------------------- /tests/test-cases/sort_algo_implementations/insertion_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/sort_algo_implementations/insertion_sort.py -------------------------------------------------------------------------------- /tests/test-cases/sort_algo_implementations/merge_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/sort_algo_implementations/merge_sort.py -------------------------------------------------------------------------------- /tests/test-cases/sort_algo_implementations/merge_sort_bottom_up.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/sort_algo_implementations/merge_sort_bottom_up.py -------------------------------------------------------------------------------- /tests/test-cases/sort_algo_implementations/odd_even_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/sort_algo_implementations/odd_even_sort.py -------------------------------------------------------------------------------- /tests/test-cases/sort_algo_implementations/quicksort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/sort_algo_implementations/quicksort.py -------------------------------------------------------------------------------- /tests/test-cases/sort_algo_implementations/radix_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/sort_algo_implementations/radix_sort.py -------------------------------------------------------------------------------- /tests/test-cases/sort_algo_implementations/selection_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/sort_algo_implementations/selection_sort.py -------------------------------------------------------------------------------- /tests/test-cases/ssa_basecase/ssa_case-5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/ssa_basecase/ssa_case-5.py -------------------------------------------------------------------------------- /tests/test-cases/ssa_basecase/ssa_case-complex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/ssa_basecase/ssa_case-complex.py -------------------------------------------------------------------------------- /tests/test-cases/ssa_basecase/ssa_case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/ssa_basecase/ssa_case.py -------------------------------------------------------------------------------- /tests/test-cases/ssa_basecase/ssa_case6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/ssa_basecase/ssa_case6.py -------------------------------------------------------------------------------- /tests/test-cases/ssa_basecase/ssa_case7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/ssa_basecase/ssa_case7.py -------------------------------------------------------------------------------- /tests/test-cases/ssa_basecase/ssa_case8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/ssa_basecase/ssa_case8.py -------------------------------------------------------------------------------- /tests/test-cases/ssa_basecase/ssa_case_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/ssa_basecase/ssa_case_1.py -------------------------------------------------------------------------------- /tests/test-cases/ssa_basecase/ssa_case_10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/ssa_basecase/ssa_case_10.py -------------------------------------------------------------------------------- /tests/test-cases/ssa_basecase/ssa_case_11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/ssa_basecase/ssa_case_11.py -------------------------------------------------------------------------------- /tests/test-cases/ssa_basecase/ssa_case_12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/ssa_basecase/ssa_case_12.py -------------------------------------------------------------------------------- /tests/test-cases/ssa_basecase/ssa_case_13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/ssa_basecase/ssa_case_13.py -------------------------------------------------------------------------------- /tests/test-cases/ssa_basecase/ssa_case_14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/ssa_basecase/ssa_case_14.py -------------------------------------------------------------------------------- /tests/test-cases/ssa_basecase/ssa_case_1_no_sugar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/ssa_basecase/ssa_case_1_no_sugar.py -------------------------------------------------------------------------------- /tests/test-cases/ssa_basecase/ssa_case_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/ssa_basecase/ssa_case_2.py -------------------------------------------------------------------------------- /tests/test-cases/ssa_basecase/ssa_case_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/ssa_basecase/ssa_case_3.py -------------------------------------------------------------------------------- /tests/test-cases/ssa_basecase/ssa_case_4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/ssa_basecase/ssa_case_4.py -------------------------------------------------------------------------------- /tests/test-cases/ssa_basecase/ssa_case_9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/ssa_basecase/ssa_case_9.py -------------------------------------------------------------------------------- /tests/test-cases/ssa_basecase/ssa_case_complex_no_sugar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/ssa_basecase/ssa_case_complex_no_sugar.py -------------------------------------------------------------------------------- /tests/test-cases/ssa_basecase/ssa_inter_procedure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/ssa_basecase/ssa_inter_procedure.py -------------------------------------------------------------------------------- /tests/test-cases/try_catch_complex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/try_catch_complex.py -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_basecase/basecase_pytype/.ninja_log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/typeinfer_basecase/basecase_pytype/.ninja_log -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_basecase/basecase_pytype/build.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/typeinfer_basecase/basecase_pytype/build.ninja -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_basecase/basecase_pytype/imports/case1.imports: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_basecase/basecase_pytype/imports/case10.imports: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_basecase/basecase_pytype/imports/case11.imports: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_basecase/basecase_pytype/imports/case12.imports: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_basecase/basecase_pytype/imports/case2.imports: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_basecase/basecase_pytype/imports/case3.imports: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_basecase/basecase_pytype/imports/case4.imports: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_basecase/basecase_pytype/imports/case5.imports: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_basecase/basecase_pytype/imports/case6.imports: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_basecase/basecase_pytype/imports/case7.imports: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_basecase/basecase_pytype/imports/case8.imports: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_basecase/basecase_pytype/imports/case9.imports: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_basecase/basecase_pytype/imports/default.pyi: -------------------------------------------------------------------------------- 1 | 2 | from typing import Any 3 | def __getattr__(name) -> Any: ... 4 | -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_basecase/basecase_pytype/pyi/case1.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/typeinfer_basecase/basecase_pytype/pyi/case1.pyi -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_basecase/basecase_pytype/pyi/case10.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/typeinfer_basecase/basecase_pytype/pyi/case10.pyi -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_basecase/basecase_pytype/pyi/case11.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/typeinfer_basecase/basecase_pytype/pyi/case11.pyi -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_basecase/basecase_pytype/pyi/case12.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/typeinfer_basecase/basecase_pytype/pyi/case12.pyi -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_basecase/basecase_pytype/pyi/case2.pyi: -------------------------------------------------------------------------------- 1 | # (generated with --quick) 2 | 3 | def my_function() -> str: ... 4 | -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_basecase/basecase_pytype/pyi/case3.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/typeinfer_basecase/basecase_pytype/pyi/case3.pyi -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_basecase/basecase_pytype/pyi/case4.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/typeinfer_basecase/basecase_pytype/pyi/case4.pyi -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_basecase/basecase_pytype/pyi/case5.pyi: -------------------------------------------------------------------------------- 1 | # (generated with --quick) 2 | 3 | def my_function() -> int: ... 4 | -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_basecase/basecase_pytype/pyi/case6.pyi: -------------------------------------------------------------------------------- 1 | # (generated with --quick) 2 | 3 | def my_function() -> str: ... 4 | -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_basecase/basecase_pytype/pyi/case7.pyi: -------------------------------------------------------------------------------- 1 | # (generated with --quick) 2 | 3 | def my_function() -> None: ... 4 | -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_basecase/basecase_pytype/pyi/case8.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/typeinfer_basecase/basecase_pytype/pyi/case8.pyi -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_basecase/basecase_pytype/pyi/case9.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/typeinfer_basecase/basecase_pytype/pyi/case9.pyi -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_basecase/case1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/typeinfer_basecase/case1.py -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_basecase/case10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/typeinfer_basecase/case10.py -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_basecase/case11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/typeinfer_basecase/case11.py -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_basecase/case12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/typeinfer_basecase/case12.py -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_basecase/case13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/typeinfer_basecase/case13.py -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_basecase/case14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/typeinfer_basecase/case14.py -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_basecase/case15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/typeinfer_basecase/case15.py -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_basecase/case16/file1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/typeinfer_basecase/case16/file1.py -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_basecase/case16/file2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/typeinfer_basecase/case16/file2.py -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_basecase/case17.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/typeinfer_basecase/case17.py -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_basecase/case18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/typeinfer_basecase/case18.py -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_basecase/case19.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/typeinfer_basecase/case19.py -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_basecase/case2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/typeinfer_basecase/case2.py -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_basecase/case20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/typeinfer_basecase/case20.py -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_basecase/case21.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/typeinfer_basecase/case21.py -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_basecase/case22.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/typeinfer_basecase/case22.py -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_basecase/case23.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/typeinfer_basecase/case23.py -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_basecase/case24.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/typeinfer_basecase/case24.py -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_basecase/case25.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/typeinfer_basecase/case25.py -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_basecase/case26.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/typeinfer_basecase/case26.py -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_basecase/case27.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/typeinfer_basecase/case27.py -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_basecase/case28.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/typeinfer_basecase/case28.py -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_basecase/case29.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/typeinfer_basecase/case29.py -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_basecase/case3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/typeinfer_basecase/case3.py -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_basecase/case30.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/typeinfer_basecase/case30.py -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_basecase/case31.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/typeinfer_basecase/case31.py -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_basecase/case32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/typeinfer_basecase/case32.py -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_basecase/case4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/typeinfer_basecase/case4.py -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_basecase/case5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/typeinfer_basecase/case5.py -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_basecase/case6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/typeinfer_basecase/case6.py -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_basecase/case7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/typeinfer_basecase/case7.py -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_basecase/case8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/typeinfer_basecase/case8.py -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_basecase/case9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/typeinfer_basecase/case9.py -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_real_cases/pydriller_case2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/typeinfer_real_cases/pydriller_case2.py -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_real_cases/pytest_case1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/typeinfer_real_cases/pytest_case1.py -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_real_cases/pytest_case10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/typeinfer_real_cases/pytest_case10.py -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_real_cases/pytest_case2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/typeinfer_real_cases/pytest_case2.py -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_real_cases/pytest_case3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/typeinfer_real_cases/pytest_case3.py -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_real_cases/pytest_case4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/typeinfer_real_cases/pytest_case4.py -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_real_cases/pytest_case5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/typeinfer_real_cases/pytest_case5.py -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_real_cases/pytest_case6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/typeinfer_real_cases/pytest_case6.py -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_real_cases/pytest_case7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/typeinfer_real_cases/pytest_case7.py -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_real_cases/pytest_case8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/typeinfer_real_cases/pytest_case8.py -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_real_cases/pytest_case9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/typeinfer_real_cases/pytest_case9.py -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_real_cases/pytest_code_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/typeinfer_real_cases/pytest_code_source.py -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_real_cases/pytest_io_saferepr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/typeinfer_real_cases/pytest_io_saferepr.py -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_real_cases/pytest_io_terminalwriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/typeinfer_real_cases/pytest_io_terminalwriter.py -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_real_cases/pytest_io_wcwidth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/typeinfer_real_cases/pytest_io_wcwidth.py -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_real_cases/pytest_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/typeinfer_real_cases/pytest_nodes.py -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_real_cases/pytest_nose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/typeinfer_real_cases/pytest_nose.py -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_real_cases/pytest_outcomes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/typeinfer_real_cases/pytest_outcomes.py -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_real_cases/pytest_unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/typeinfer_real_cases/pytest_unittest.py -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_real_cases/requests_case1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/typeinfer_real_cases/requests_case1.py -------------------------------------------------------------------------------- /tests/test-cases/typeinfer_real_cases/requests_case2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/typeinfer_real_cases/requests_case2.py -------------------------------------------------------------------------------- /tests/test-cases/with_stmt_case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test-cases/with_stmt_case.py -------------------------------------------------------------------------------- /tests/test_cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test_cfg.py -------------------------------------------------------------------------------- /tests/test_cfg_robust.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test_cfg_robust.py -------------------------------------------------------------------------------- /tests/test_constant_prop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test_constant_prop.py -------------------------------------------------------------------------------- /tests/test_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test_core.py -------------------------------------------------------------------------------- /tests/test_duc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test_duc.py -------------------------------------------------------------------------------- /tests/test_fqn_actual_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test_fqn_actual_data.py -------------------------------------------------------------------------------- /tests/test_fully_qualified_name_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test_fully_qualified_name_inference.py -------------------------------------------------------------------------------- /tests/test_mnode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test_mnode.py -------------------------------------------------------------------------------- /tests/test_scope_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test_scope_graph.py -------------------------------------------------------------------------------- /tests/test_ssa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test_ssa.py -------------------------------------------------------------------------------- /tests/test_typeinfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test_typeinfer.py -------------------------------------------------------------------------------- /tests/test_typeinfer_actual_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test_typeinfer_actual_data.py -------------------------------------------------------------------------------- /tests/test_typeinfer_with_real_libs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/test_typeinfer_with_real_libs.py -------------------------------------------------------------------------------- /tests/tmp_test_script_for_issue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tests/tmp_test_script_for_issue.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMAT-Lab/Scalpel/HEAD/tox.ini --------------------------------------------------------------------------------