├── .gitignore ├── README.md ├── benchmarks ├── README.md ├── all_bug_info_bugsinpy.json ├── all_bug_info_typebugs.json ├── bugsinpy │ ├── ansible │ │ └── ansible-1 │ │ │ ├── bug_info.json │ │ │ ├── correct │ │ │ └── lib │ │ │ │ └── ansible │ │ │ │ └── galaxy │ │ │ │ └── collection.py │ │ │ ├── dependency_setup.sh │ │ │ ├── lib │ │ │ └── ansible │ │ │ │ └── galaxy │ │ │ │ └── collection.py │ │ │ ├── patch.txt │ │ │ ├── requirements.txt │ │ │ └── test.sh │ ├── fastapi │ │ ├── fastapi-1 │ │ │ ├── bug_info.json │ │ │ ├── dependency_setup.sh │ │ │ ├── requirements.txt │ │ │ ├── test.sh │ │ │ └── tests │ │ │ │ └── test_skip_defaults.py │ │ ├── fastapi-11 │ │ │ ├── bug_info.json │ │ │ ├── dependency_setup.sh │ │ │ ├── fastapi │ │ │ │ └── dependencies │ │ │ │ │ └── utils.py │ │ │ ├── requirements.txt │ │ │ └── test.sh │ │ └── fastapi-7 │ │ │ ├── bug_info.json │ │ │ ├── correct │ │ │ └── fastapi │ │ │ │ └── exception_handlers.py │ │ │ ├── dependency_setup.sh │ │ │ ├── fastapi │ │ │ └── exception_handlers.py │ │ │ ├── patch.txt │ │ │ ├── requirements.txt │ │ │ └── test.sh │ ├── keras │ │ ├── keras-22 │ │ │ ├── bug_info.json │ │ │ ├── correct │ │ │ │ └── keras │ │ │ │ │ └── engine │ │ │ │ │ └── input_layer.py │ │ │ ├── dependency_setup.sh │ │ │ ├── keras │ │ │ │ └── engine │ │ │ │ │ └── input_layer.py │ │ │ ├── patch.txt │ │ │ ├── requirements.txt │ │ │ └── test.sh │ │ ├── keras-34 │ │ │ ├── bug_info.json │ │ │ ├── correct │ │ │ │ └── keras │ │ │ │ │ └── engine │ │ │ │ │ └── training.py │ │ │ ├── dependency_setup.sh │ │ │ ├── keras │ │ │ │ └── engine │ │ │ │ │ ├── training-2165.py │ │ │ │ │ ├── training-2197.py │ │ │ │ │ ├── training-2369.py │ │ │ │ │ ├── training-2493.py │ │ │ │ │ └── training.py │ │ │ ├── patch.txt │ │ │ ├── requirements.txt │ │ │ └── test.sh │ │ ├── keras-39 │ │ │ ├── bug_info.json │ │ │ ├── correct │ │ │ │ └── keras │ │ │ │ │ └── utils │ │ │ │ │ └── generic_utils.py │ │ │ ├── dependency_setup.sh │ │ │ ├── keras │ │ │ │ └── utils │ │ │ │ │ └── generic_utils.py │ │ │ ├── patch.txt │ │ │ ├── requirements.txt │ │ │ └── test.sh │ │ └── keras-4 │ │ │ ├── bug_info.json │ │ │ ├── correct │ │ │ └── keras │ │ │ │ └── optimizers.py │ │ │ ├── dependency_setup.sh │ │ │ ├── keras │ │ │ └── optimizers.py │ │ │ ├── patch.txt │ │ │ ├── requirements.txt │ │ │ └── test.sh │ ├── luigi │ │ ├── luigi-14 │ │ │ ├── bug_info.json │ │ │ ├── correct │ │ │ │ └── luigi │ │ │ │ │ └── scheduler.py │ │ │ ├── dependency_setup.sh │ │ │ ├── luigi │ │ │ │ └── scheduler.py │ │ │ ├── patch.txt │ │ │ ├── requirements.txt │ │ │ └── test.sh │ │ ├── luigi-22 │ │ │ ├── bug_info.json │ │ │ ├── correct │ │ │ │ └── luigi │ │ │ │ │ └── scheduler.py │ │ │ ├── dependency_setup.sh │ │ │ ├── luigi │ │ │ │ └── scheduler.py │ │ │ ├── patch.txt │ │ │ ├── requirements.txt │ │ │ └── test.sh │ │ ├── luigi-25 │ │ │ ├── bug_info.json │ │ │ ├── correct │ │ │ │ └── luigi │ │ │ │ │ └── contrib │ │ │ │ │ └── redshift.py │ │ │ ├── dependency_setup.sh │ │ │ ├── luigi │ │ │ │ └── contrib │ │ │ │ │ └── redshift.py │ │ │ ├── patch.txt │ │ │ ├── requirements.txt │ │ │ └── test.sh │ │ ├── luigi-26 │ │ │ ├── bug_info.json │ │ │ ├── correct │ │ │ │ └── luigi │ │ │ │ │ └── contrib │ │ │ │ │ └── hadoop_jar.py │ │ │ ├── dependency_setup.sh │ │ │ ├── luigi │ │ │ │ └── contrib │ │ │ │ │ └── hadoop_jar.py │ │ │ ├── patch.txt │ │ │ ├── requirements.txt │ │ │ └── test.sh │ │ ├── luigi-3 │ │ │ ├── bug_info.json │ │ │ ├── correct │ │ │ │ └── luigi │ │ │ │ │ └── parameter.py │ │ │ ├── dependency_setup.sh │ │ │ ├── luigi │ │ │ │ └── parameter.py │ │ │ ├── patch.txt │ │ │ ├── requirements.txt │ │ │ └── test.sh │ │ ├── luigi-4 │ │ │ ├── bug_info.json │ │ │ ├── correct │ │ │ │ └── luigi │ │ │ │ │ └── contrib │ │ │ │ │ └── redshift.py │ │ │ ├── dependency_setup.sh │ │ │ ├── luigi │ │ │ │ └── contrib │ │ │ │ │ └── redshift.py │ │ │ ├── patch.txt │ │ │ ├── requirements.txt │ │ │ └── test.sh │ │ └── luigi-6 │ │ │ ├── bug_info.json │ │ │ ├── correct │ │ │ └── luigi │ │ │ │ └── parameter.py │ │ │ ├── dependency_setup.sh │ │ │ ├── luigi │ │ │ └── parameter.py │ │ │ ├── patch.txt │ │ │ ├── requirements.txt │ │ │ └── test.sh │ ├── pandas │ │ ├── pandas-106 │ │ │ ├── bug_info.json │ │ │ ├── correct │ │ │ │ └── pandas │ │ │ │ │ └── core │ │ │ │ │ └── indexes │ │ │ │ │ └── base.py │ │ │ ├── dependency_setup.sh │ │ │ ├── pandas │ │ │ │ └── core │ │ │ │ │ └── indexes │ │ │ │ │ └── base.py │ │ │ ├── patch.txt │ │ │ ├── requirements.txt │ │ │ └── test.sh │ │ ├── pandas-110 │ │ │ ├── bug_info.json │ │ │ ├── correct │ │ │ │ └── pandas │ │ │ │ │ └── core │ │ │ │ │ └── indexes │ │ │ │ │ └── base.py │ │ │ ├── dependency_setup.sh │ │ │ ├── pandas │ │ │ │ └── core │ │ │ │ │ └── indexes │ │ │ │ │ └── base.py │ │ │ ├── patch.txt │ │ │ ├── requirements.txt │ │ │ └── test.sh │ │ ├── pandas-111 │ │ │ ├── bug_info.json │ │ │ ├── correct │ │ │ │ └── pandas │ │ │ │ │ └── core │ │ │ │ │ └── indexes │ │ │ │ │ └── category.py │ │ │ ├── dependency_setup.sh │ │ │ ├── pandas │ │ │ │ └── core │ │ │ │ │ └── indexes │ │ │ │ │ └── category.py │ │ │ ├── patch.txt │ │ │ ├── requirements.txt │ │ │ └── test.sh │ │ ├── pandas-112 │ │ │ ├── bug_info.json │ │ │ ├── correct │ │ │ │ └── pandas │ │ │ │ │ └── core │ │ │ │ │ └── indexes │ │ │ │ │ └── interval.py │ │ │ ├── dependency_setup.sh │ │ │ ├── pandas │ │ │ │ └── core │ │ │ │ │ └── indexes │ │ │ │ │ └── interval.py │ │ │ ├── patch.txt │ │ │ ├── requirements.txt │ │ │ └── test.sh │ │ ├── pandas-12 │ │ │ ├── bug_info.json │ │ │ ├── correct │ │ │ │ └── pandas │ │ │ │ │ └── core │ │ │ │ │ └── frame.py │ │ │ ├── dependency_setup.sh │ │ │ ├── pandas │ │ │ │ └── core │ │ │ │ │ ├── frame-7874.py │ │ │ │ │ ├── frame-8009.py │ │ │ │ │ └── frame.py │ │ │ ├── patch.txt │ │ │ ├── requirements.txt │ │ │ └── test.sh │ │ ├── pandas-138 │ │ │ ├── bug_info.json │ │ │ ├── correct │ │ │ │ └── pandas │ │ │ │ │ └── core │ │ │ │ │ └── reshape │ │ │ │ │ └── tile.py │ │ │ ├── dependency_setup.sh │ │ │ ├── pandas │ │ │ │ ├── core │ │ │ │ │ └── reshape │ │ │ │ │ │ ├── tile-440.py │ │ │ │ │ │ └── tile.py │ │ │ │ └── tests │ │ │ │ │ └── reshape │ │ │ │ │ └── test_cut.py │ │ │ ├── patch.txt │ │ │ ├── requirements.txt │ │ │ └── test.sh │ │ ├── pandas-142 │ │ │ ├── bug_info.json │ │ │ ├── correct │ │ │ │ └── pandas │ │ │ │ │ └── core │ │ │ │ │ └── algorithms.py │ │ │ ├── dependency_setup.sh │ │ │ ├── pandas │ │ │ │ ├── core │ │ │ │ │ └── algorithms.py │ │ │ │ └── tests │ │ │ │ │ └── series │ │ │ │ │ └── test_timeseries.py │ │ │ ├── patch.txt │ │ │ ├── requirements.txt │ │ │ └── test.sh │ │ ├── pandas-145 │ │ │ ├── bug_info.json │ │ │ ├── correct │ │ │ │ └── pandas │ │ │ │ │ └── core │ │ │ │ │ └── ops │ │ │ │ │ └── __init__.py │ │ │ ├── dependency_setup.sh │ │ │ ├── pandas │ │ │ │ └── core │ │ │ │ │ └── ops │ │ │ │ │ └── __init__.py │ │ │ ├── patch.txt │ │ │ ├── requirements.txt │ │ │ └── test.sh │ │ ├── pandas-146 │ │ │ ├── bug_info.json │ │ │ ├── correct │ │ │ │ └── pandas │ │ │ │ │ └── core │ │ │ │ │ └── dtypes │ │ │ │ │ └── missing.py │ │ │ ├── dependency_setup.sh │ │ │ ├── pandas │ │ │ │ └── core │ │ │ │ │ └── dtypes │ │ │ │ │ └── missing.py │ │ │ ├── patch.txt │ │ │ ├── requirements.txt │ │ │ └── test.sh │ │ ├── pandas-152 │ │ │ ├── bug_info.json │ │ │ ├── correct │ │ │ │ └── pandas │ │ │ │ │ └── core │ │ │ │ │ └── series.py │ │ │ ├── dependency_setup.sh │ │ │ ├── pandas │ │ │ │ └── core │ │ │ │ │ └── series.py │ │ │ ├── patch.txt │ │ │ ├── requirements.txt │ │ │ └── test.sh │ │ ├── pandas-158 │ │ │ ├── bug_info.json │ │ │ ├── correct │ │ │ │ └── pandas │ │ │ │ │ └── core │ │ │ │ │ └── series.py │ │ │ ├── dependency_setup.sh │ │ │ ├── pandas │ │ │ │ └── core │ │ │ │ │ └── series.py │ │ │ ├── patch.txt │ │ │ ├── requirements.txt │ │ │ └── test.sh │ │ ├── pandas-30 │ │ │ ├── bug_info.json │ │ │ ├── correct │ │ │ │ └── pandas │ │ │ │ │ └── io │ │ │ │ │ └── json │ │ │ │ │ └── _json.py │ │ │ ├── dependency_setup.sh │ │ │ ├── pandas │ │ │ │ └── io │ │ │ │ │ └── json │ │ │ │ │ └── _json.py │ │ │ ├── patch.txt │ │ │ ├── requirements.txt │ │ │ └── test.sh │ │ ├── pandas-31 │ │ │ ├── bug_info.json │ │ │ ├── correct │ │ │ │ └── pandas │ │ │ │ │ └── core │ │ │ │ │ └── groupby │ │ │ │ │ └── groupby.py │ │ │ ├── dependency_setup.sh │ │ │ ├── pandas │ │ │ │ └── core │ │ │ │ │ └── groupby │ │ │ │ │ ├── groupby-1870.py │ │ │ │ │ ├── groupby-1872.py │ │ │ │ │ └── groupby.py │ │ │ ├── patch.txt │ │ │ ├── requirements.txt │ │ │ └── test.sh │ │ ├── pandas-36 │ │ │ ├── bug_info.json │ │ │ ├── correct │ │ │ │ └── pandas │ │ │ │ │ └── core │ │ │ │ │ └── dtypes │ │ │ │ │ └── missing.py │ │ │ ├── dependency_setup.sh │ │ │ ├── pandas │ │ │ │ └── core │ │ │ │ │ └── dtypes │ │ │ │ │ ├── missing-145.py │ │ │ │ │ ├── missing-176.py │ │ │ │ │ └── missing.py │ │ │ ├── patch.txt │ │ │ ├── requirements.txt │ │ │ └── test.sh │ │ ├── pandas-48 │ │ │ ├── bug_info.json │ │ │ ├── correct │ │ │ │ └── pandas │ │ │ │ │ └── core │ │ │ │ │ └── groupby │ │ │ │ │ └── generic.py │ │ │ ├── dependency_setup.sh │ │ │ ├── pandas │ │ │ │ └── core │ │ │ │ │ └── groupby │ │ │ │ │ └── generic.py │ │ │ ├── patch.txt │ │ │ ├── requirements.txt │ │ │ └── test.sh │ │ ├── pandas-49 │ │ │ ├── bug_info.json │ │ │ ├── correct │ │ │ │ └── pandas │ │ │ │ │ └── core │ │ │ │ │ └── strings.py │ │ │ ├── dependency_setup.sh │ │ │ ├── pandas │ │ │ │ └── core │ │ │ │ │ └── strings.py │ │ │ ├── patch.txt │ │ │ ├── requirements.txt │ │ │ └── test.sh │ │ ├── pandas-53 │ │ │ ├── bug_info.json │ │ │ ├── correct │ │ │ │ └── pandas │ │ │ │ │ └── core │ │ │ │ │ └── indexes │ │ │ │ │ └── base.py │ │ │ ├── dependency_setup.sh │ │ │ ├── pandas │ │ │ │ ├── core │ │ │ │ │ └── indexes │ │ │ │ │ │ └── base.py │ │ │ │ └── tests │ │ │ │ │ └── indexing │ │ │ │ │ └── test_scalar.py │ │ │ ├── patch.txt │ │ │ ├── requirements.txt │ │ │ └── test.sh │ │ ├── pandas-71 │ │ │ ├── bug_info.json │ │ │ ├── correct │ │ │ │ └── pandas │ │ │ │ │ └── core │ │ │ │ │ └── reshape │ │ │ │ │ └── tile.py │ │ │ ├── dependency_setup.sh │ │ │ ├── pandas │ │ │ │ └── core │ │ │ │ │ └── reshape │ │ │ │ │ └── tile.py │ │ │ ├── patch.txt │ │ │ ├── requirements.txt │ │ │ └── test.sh │ │ ├── pandas-79 │ │ │ ├── bug_info.json │ │ │ ├── correct │ │ │ │ └── pandas │ │ │ │ │ └── core │ │ │ │ │ └── indexes │ │ │ │ │ └── datetimes.py │ │ │ ├── dependency_setup.sh │ │ │ ├── pandas │ │ │ │ └── core │ │ │ │ │ ├── indexes │ │ │ │ │ ├── datetimes-645.py │ │ │ │ │ ├── datetimes-681.py │ │ │ │ │ └── datetimes.py │ │ │ │ │ └── series.py │ │ │ ├── patch.txt │ │ │ ├── requirements.txt │ │ │ └── test.sh │ │ └── pandas-99 │ │ │ ├── bug_info.json │ │ │ ├── correct │ │ │ └── pandas │ │ │ │ └── core │ │ │ │ └── tools │ │ │ │ └── datetimes.py │ │ │ ├── dependency_setup.sh │ │ │ ├── pandas │ │ │ └── core │ │ │ │ └── tools │ │ │ │ └── datetimes.py │ │ │ ├── patch.txt │ │ │ ├── requirements.txt │ │ │ └── test.sh │ ├── scrapy │ │ ├── scrapy-1 │ │ │ ├── bug_info.json │ │ │ ├── correct │ │ │ │ └── scrapy │ │ │ │ │ └── spidermiddlewares │ │ │ │ │ └── offsite.py │ │ │ ├── dependency_setup.sh │ │ │ ├── patch.txt │ │ │ ├── requirements.txt │ │ │ ├── scrapy │ │ │ │ └── spidermiddlewares │ │ │ │ │ └── offsite.py │ │ │ └── test.sh │ │ ├── scrapy-17 │ │ │ ├── bug_info.json │ │ │ ├── correct │ │ │ │ └── scrapy │ │ │ │ │ └── utils │ │ │ │ │ └── response.py │ │ │ ├── dependency_setup.sh │ │ │ ├── patch.txt │ │ │ ├── requirements.txt │ │ │ ├── scrapy │ │ │ │ └── utils │ │ │ │ │ └── response.py │ │ │ └── test.sh │ │ ├── scrapy-2 │ │ │ ├── bug_info.json │ │ │ ├── correct │ │ │ │ └── scrapy │ │ │ │ │ └── utils │ │ │ │ │ └── datatypes.py │ │ │ ├── dependency_setup.sh │ │ │ ├── patch.txt │ │ │ ├── requirements.txt │ │ │ ├── scrapy │ │ │ │ └── utils │ │ │ │ │ └── datatypes.py │ │ │ └── test.sh │ │ ├── scrapy-20 │ │ │ ├── bug_info.json │ │ │ ├── correct │ │ │ │ └── scrapy │ │ │ │ │ └── spiders │ │ │ │ │ └── sitemap.py │ │ │ ├── dependency_setup.sh │ │ │ ├── patch.txt │ │ │ ├── requirements.txt │ │ │ ├── scrapy │ │ │ │ └── spiders │ │ │ │ │ └── sitemap.py │ │ │ └── test.sh │ │ ├── scrapy-23 │ │ │ ├── bug_info.json │ │ │ ├── correct │ │ │ │ └── scrapy │ │ │ │ │ └── downloadermiddlewares │ │ │ │ │ └── httpproxy.py │ │ │ ├── dependency_setup.sh │ │ │ ├── patch.txt │ │ │ ├── requirements.txt │ │ │ ├── scrapy │ │ │ │ └── downloadermiddlewares │ │ │ │ │ ├── httpproxy-29.py │ │ │ │ │ ├── httpproxy-55.py │ │ │ │ │ └── httpproxy.py │ │ │ ├── test.sh │ │ │ └── tests │ │ │ │ └── test_downloadermiddleware_retry.py │ │ ├── scrapy-27 │ │ │ ├── bug_info.json │ │ │ ├── correct │ │ │ │ └── scrapy │ │ │ │ │ └── downloadermiddlewares │ │ │ │ │ └── redirect.py │ │ │ ├── dependency_setup.sh │ │ │ ├── patch.txt │ │ │ ├── requirements.txt │ │ │ ├── scrapy │ │ │ │ └── downloadermiddlewares │ │ │ │ │ └── redirect.py │ │ │ └── test.sh │ │ ├── scrapy-29 │ │ │ ├── bug_info.json │ │ │ ├── correct │ │ │ │ └── scrapy │ │ │ │ │ └── utils │ │ │ │ │ └── request.py │ │ │ ├── dependency_setup.sh │ │ │ ├── patch.txt │ │ │ ├── requirements.txt │ │ │ ├── scrapy │ │ │ │ └── utils │ │ │ │ │ └── request.py │ │ │ └── test.sh │ │ ├── scrapy-30 │ │ │ ├── bug_info.json │ │ │ ├── correct │ │ │ │ └── scrapy │ │ │ │ │ └── cmdline.py │ │ │ ├── dependency_setup.sh │ │ │ ├── patch.txt │ │ │ ├── requirements.txt │ │ │ ├── scrapy │ │ │ │ └── cmdline.py │ │ │ ├── test.sh │ │ │ └── tests │ │ │ │ └── test_cmdline │ │ │ │ └── __init__.py │ │ ├── scrapy-40 │ │ │ ├── bug_info.json │ │ │ ├── correct │ │ │ │ └── scrapy │ │ │ │ │ └── exporters.py │ │ │ ├── dependency_setup.sh │ │ │ ├── patch.txt │ │ │ ├── requirements.txt │ │ │ ├── scrapy │ │ │ │ └── exporters.py │ │ │ └── test.sh │ │ └── scrapy-8 │ │ │ ├── bug_info.json │ │ │ ├── correct │ │ │ └── scrapy │ │ │ │ └── item.py │ │ │ ├── dependency_setup.sh │ │ │ ├── patch.txt │ │ │ ├── requirements.txt │ │ │ ├── scrapy │ │ │ ├── item-29.py │ │ │ ├── item-43.py │ │ │ └── item.py │ │ │ └── test.sh │ ├── spacy │ │ └── spacy-5 │ │ │ ├── bug_info.json │ │ │ ├── correct │ │ │ └── spacy │ │ │ │ └── language.py │ │ │ ├── dependency_setup.sh │ │ │ ├── patch.txt │ │ │ ├── requirements.txt │ │ │ ├── spacy │ │ │ └── language.py │ │ │ └── test.sh │ ├── tornado │ │ ├── tornado-7 │ │ │ ├── bug_info.json │ │ │ ├── correct │ │ │ │ └── tornado │ │ │ │ │ └── ioloop.py │ │ │ ├── dependency_setup.sh │ │ │ ├── patch.txt │ │ │ ├── requirements.txt │ │ │ ├── test.sh │ │ │ └── tornado │ │ │ │ ├── ioloop-658.py │ │ │ │ └── ioloop.py │ │ └── tornado-9 │ │ │ ├── bug_info.json │ │ │ ├── correct │ │ │ └── tornado │ │ │ │ └── httputil.py │ │ │ ├── dependency_setup.sh │ │ │ ├── patch.txt │ │ │ ├── requirements.txt │ │ │ ├── test.sh │ │ │ └── tornado │ │ │ └── httputil.py │ └── youtube-dl │ │ ├── youtube-dl-11 │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── youtube_dl │ │ │ │ └── utils.py │ │ ├── dependency_setup.sh │ │ ├── patch.txt │ │ ├── requirements.txt │ │ ├── test.sh │ │ └── youtube_dl │ │ │ └── utils.py │ │ └── youtube-dl-16 │ │ ├── bug_info.json │ │ ├── correct │ │ └── youtube_dl │ │ │ └── utils.py │ │ ├── dependency_setup.sh │ │ ├── patch.txt │ │ ├── requirements.txt │ │ ├── test.sh │ │ └── youtube_dl │ │ ├── utils-2576.py │ │ ├── utils-2581.py │ │ ├── utils-2677.py │ │ └── utils.py └── typebugs │ ├── Zappa │ ├── Zappa-1434 │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── zappa │ │ │ │ └── cli.py │ │ ├── dependency_setup.sh │ │ ├── patch.txt │ │ ├── requirements.txt │ │ ├── test.sh │ │ ├── tests │ │ │ └── tests.py │ │ └── zappa │ │ │ ├── cli-1828.py │ │ │ ├── cli-1838.py │ │ │ └── cli.py │ └── Zappa-388 │ │ ├── bug_info.json │ │ ├── correct │ │ └── zappa │ │ │ └── wsgi.py │ │ ├── dependency_setup.sh │ │ ├── patch.txt │ │ ├── requirements.txt │ │ ├── test.sh │ │ ├── tests │ │ └── tests.py │ │ └── zappa │ │ └── wsgi.py │ ├── airflow │ ├── airflow-14513 │ │ ├── airflow │ │ │ └── kubernetes │ │ │ │ └── pod_launcher.py │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── airflow │ │ │ │ └── kubernetes │ │ │ │ └── pod_launcher.py │ │ ├── dependency_setup.sh │ │ ├── patch.txt │ │ ├── requirements.txt │ │ ├── test.sh │ │ └── tests │ │ │ └── kubernetes │ │ │ └── test_pod_launcher.py │ ├── airflow-14686 │ │ ├── airflow │ │ │ └── providers │ │ │ │ └── elasticsearch │ │ │ │ └── log │ │ │ │ ├── es_task_handler-186.py │ │ │ │ ├── es_task_handler-190.py │ │ │ │ └── es_task_handler.py │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── airflow │ │ │ │ └── providers │ │ │ │ └── elasticsearch │ │ │ │ └── log │ │ │ │ └── es_task_handler.py │ │ ├── dependency_setup.sh │ │ ├── patch.txt │ │ ├── requirements.txt │ │ ├── test.sh │ │ └── tests │ │ │ └── providers │ │ │ └── elasticsearch │ │ │ └── log │ │ │ └── test_es_task_handler.py │ ├── airflow-3831 │ │ ├── airflow │ │ │ └── contrib │ │ │ │ └── operators │ │ │ │ ├── dataflow_operator-362.py │ │ │ │ ├── dataflow_operator-373.py │ │ │ │ └── dataflow_operator.py │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── airflow │ │ │ │ └── contrib │ │ │ │ └── operators │ │ │ │ └── dataflow_operator.py │ │ ├── dependency_setup.sh │ │ ├── patch.txt │ │ ├── requirements.txt │ │ ├── test.sh │ │ └── tests │ │ │ └── contrib │ │ │ └── operators │ │ │ └── test_dataflow_operator.py │ ├── airflow-4674 │ │ ├── airflow │ │ │ ├── configuration-267.py │ │ │ ├── configuration-269.py │ │ │ └── configuration.py │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── airflow │ │ │ │ └── configuration.py │ │ ├── dependency_setup.sh │ │ ├── patch.txt │ │ ├── requirements.txt │ │ ├── test │ │ └── tests │ │ │ └── test_configuration.py │ ├── airflow-5686 │ │ ├── airflow │ │ │ └── hooks │ │ │ │ ├── http_hook-62.py │ │ │ │ ├── http_hook-67.py │ │ │ │ └── http_hook.py │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── airflow │ │ │ │ └── hooks │ │ │ │ └── http_hook.py │ │ ├── dependency_setup.sh │ │ ├── patch.txt │ │ ├── requirements.txt │ │ ├── test │ │ └── tests │ │ │ └── hooks │ │ │ └── test_http_hook.py │ ├── airflow-6036 │ │ ├── airflow │ │ │ └── gcp │ │ │ │ └── hooks │ │ │ │ ├── dataflow-91.py │ │ │ │ ├── dataflow-99.py │ │ │ │ └── dataflow.py │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── airflow │ │ │ │ └── gcp │ │ │ │ └── hooks │ │ │ │ └── dataflow.py │ │ ├── dependency_setup.sh │ │ ├── patch.txt │ │ ├── requirements.txt │ │ ├── test │ │ └── tests │ │ │ └── gcp │ │ │ └── hooks │ │ │ └── test_dataflow.py │ └── airflow-8151 │ │ ├── airflow │ │ └── models │ │ │ ├── dag.py │ │ │ ├── dagcode-133.py │ │ │ ├── dagcode-148.py │ │ │ └── dagcode.py │ │ ├── bug_info.json │ │ ├── correct │ │ └── airflow │ │ │ └── models │ │ │ ├── dag.py │ │ │ └── dagcode.py │ │ ├── dependency_setup.sh │ │ ├── patch.txt │ │ ├── requirements.txt │ │ ├── test.sh │ │ └── tests │ │ └── models │ │ └── test_dagcode.py │ ├── beets │ └── beets-3360 │ │ ├── beetsplug │ │ └── thumbnails.py │ │ ├── bug_info.json │ │ ├── correct │ │ └── beetsplug │ │ │ └── thumbnails.py │ │ ├── dependency_setup.sh │ │ ├── patch.txt │ │ ├── requirements.txt │ │ ├── test.sh │ │ └── test │ │ └── test_thumbnails.py │ ├── core │ ├── core-1972 │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── homeassistant │ │ │ │ └── helpers │ │ │ │ └── script.py │ │ ├── dependency_setup.sh │ │ ├── homeassistant │ │ │ └── helpers │ │ │ │ └── script.py │ │ ├── patch.txt │ │ ├── requirements.txt │ │ ├── setup.cfg │ │ ├── test.sh │ │ └── tests │ │ │ └── helpers │ │ │ └── test_script.py │ ├── core-20233 │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── homeassistant │ │ │ │ └── helpers │ │ │ │ └── template.py │ │ ├── dependency_setup.sh │ │ ├── homeassistant │ │ │ └── helpers │ │ │ │ └── template.py │ │ ├── patch.txt │ │ ├── requirements.txt │ │ ├── test.sh │ │ └── tests │ │ │ └── helpers │ │ │ └── test_template.py │ ├── core-21734 │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── homeassistant │ │ │ │ └── components │ │ │ │ └── sensor │ │ │ │ └── dsmr.py │ │ ├── dependency_setup.sh │ │ ├── homeassistant │ │ │ └── components │ │ │ │ └── sensor │ │ │ │ └── dsmr.py │ │ ├── patch.txt │ │ ├── requirements.txt │ │ ├── test.sh │ │ └── tests │ │ │ └── components │ │ │ └── sensor │ │ │ └── test_dsmr.py │ ├── core-29829 │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── homeassistant │ │ │ │ └── components │ │ │ │ └── input_text │ │ │ │ └── __init__.py │ │ ├── dependency_setup.sh │ │ ├── homeassistant │ │ │ └── components │ │ │ │ └── input_text │ │ │ │ ├── __init__-126.py │ │ │ │ ├── __init__-127.py │ │ │ │ └── __init__.py │ │ ├── patch.txt │ │ ├── requirements.txt │ │ ├── test.sh │ │ └── tests │ │ │ └── components │ │ │ └── input_text │ │ │ └── test_init.py │ ├── core-32222 │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── homeassistant │ │ │ │ └── components │ │ │ │ └── unifi │ │ │ │ └── device_tracker.py │ │ ├── dependency_setup.sh │ │ ├── homeassistant │ │ │ └── components │ │ │ │ └── unifi │ │ │ │ └── device_tracker.py │ │ ├── patch.txt │ │ ├── requirements.txt │ │ ├── test.sh │ │ └── tests │ │ │ └── components │ │ │ └── unifi │ │ │ └── test_device_tracker.py │ ├── core-32318 │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── homeassistant │ │ │ │ └── components │ │ │ │ └── alexa │ │ │ │ └── capabilities.py │ │ ├── dependency_setup.sh │ │ ├── homeassistant │ │ │ └── components │ │ │ │ └── alexa │ │ │ │ └── capabilities.py │ │ ├── patch.txt │ │ ├── requirements.txt │ │ ├── test.sh │ │ └── tests │ │ │ └── components │ │ │ └── alexa │ │ │ └── test_capabilities.py │ ├── core-40034 │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── homeassistant │ │ │ │ └── helpers │ │ │ │ └── condition.py │ │ ├── dependency_setup.sh │ │ ├── homeassistant │ │ │ └── helpers │ │ │ │ ├── condition-659.py │ │ │ │ ├── condition-684.py │ │ │ │ └── condition.py │ │ ├── patch.txt │ │ ├── requirements.txt │ │ ├── test.sh │ │ └── tests │ │ │ └── helpers │ │ │ └── test_condition.py │ └── core-8065 │ │ ├── bug_info.json │ │ ├── correct │ │ └── homeassistant │ │ │ └── helpers │ │ │ └── entity_component.py │ │ ├── dependency_setup.sh │ │ ├── homeassistant │ │ └── helpers │ │ │ └── entity_component.py │ │ ├── patch.txt │ │ ├── requirements.txt │ │ ├── test.sh │ │ └── tests │ │ └── helpers │ │ └── test_entity_component.py │ ├── kivy │ └── kivy-6954 │ │ ├── bug_info.json │ │ ├── correct │ │ └── kivy │ │ │ └── network │ │ │ └── urlrequest.py │ │ ├── dependency_setup.sh │ │ ├── kivy │ │ ├── network │ │ │ └── urlrequest.py │ │ └── tests │ │ │ └── test_urlrequest.py │ │ ├── patch.txt │ │ ├── requirements.txt │ │ └── test.sh │ ├── luigi │ └── luigi-1836 │ │ ├── bug_info.json │ │ ├── correct │ │ └── luigi │ │ │ └── contrib │ │ │ └── pig.py │ │ ├── dependency_setup.sh │ │ ├── luigi │ │ └── contrib │ │ │ ├── pig-130.py │ │ │ ├── pig-148.py │ │ │ └── pig.py │ │ ├── patch.txt │ │ ├── requirements.txt │ │ ├── test.sh │ │ └── test │ │ └── contrib │ │ └── pig_test.py │ ├── numpy │ ├── numpy-10473 │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── numpy │ │ │ │ └── lib │ │ │ │ └── polynomial.py │ │ ├── dependency_setup.sh │ │ ├── numpy │ │ │ └── lib │ │ │ │ ├── polynomial.py │ │ │ │ └── tests │ │ │ │ └── test_polynomial.py │ │ ├── patch.txt │ │ ├── requirements.txt │ │ └── test.sh │ ├── numpy-19094 │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── numpy │ │ │ │ └── typing │ │ │ │ ├── _add_docstring.py │ │ │ │ └── _generic_alias.py │ │ ├── dependency_setup.sh │ │ ├── numpy │ │ │ └── typing │ │ │ │ ├── _add_docstring.py │ │ │ │ ├── _generic_alias.py │ │ │ │ └── tests │ │ │ │ └── test_generic_alias.py │ │ ├── patch.txt │ │ ├── requirements.txt │ │ └── test.sh │ └── numpy-9999 │ │ ├── bug_info.json │ │ ├── correct │ │ └── numpy │ │ │ └── lib │ │ │ └── arraysetops.py │ │ ├── dependency_setup.sh │ │ ├── numpy │ │ └── lib │ │ │ ├── arraysetops.py │ │ │ └── tests │ │ │ └── test_arraysetops.py │ │ ├── patch.txt │ │ ├── requirements.txt │ │ └── test.sh │ ├── pandas │ ├── pandas-15941 │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── pandas │ │ │ │ └── types │ │ │ │ └── common.py │ │ ├── dependency_setup.sh │ │ ├── pandas │ │ │ ├── tests │ │ │ │ └── types │ │ │ │ │ └── test_common.py │ │ │ └── types │ │ │ │ ├── common-119.py │ │ │ │ ├── common-212.py │ │ │ │ ├── common-306.py │ │ │ │ └── common.py │ │ ├── patch.txt │ │ ├── requirements.txt │ │ └── test.sh │ ├── pandas-17430 │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── pandas │ │ │ │ └── plotting │ │ │ │ └── _core.py │ │ ├── dependency_setup.sh │ │ ├── pandas │ │ │ ├── plotting │ │ │ │ └── _core.py │ │ │ └── tests │ │ │ │ └── plotting │ │ │ │ └── test_frame.py │ │ ├── patch.txt │ │ ├── requirements.txt │ │ └── test.sh │ ├── pandas-17609 │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── pandas │ │ │ │ └── util │ │ │ │ └── _decorators.py │ │ ├── dependency_setup.sh │ │ ├── pandas │ │ │ ├── tests │ │ │ │ └── util │ │ │ │ │ └── test_util.py │ │ │ └── util │ │ │ │ └── _decorators.py │ │ ├── patch.txt │ │ ├── requirements.txt │ │ └── test.sh │ ├── pandas-18831 │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── pandas │ │ │ │ └── core │ │ │ │ └── ops.py │ │ ├── dependency_setup.sh │ │ ├── pandas │ │ │ ├── core │ │ │ │ ├── ops-428.py │ │ │ │ ├── ops-632.py │ │ │ │ └── ops.py │ │ │ └── tests │ │ │ │ └── series │ │ │ │ └── test_operators.py │ │ ├── patch.txt │ │ ├── requirements.txt │ │ └── test.sh │ ├── pandas-18849 │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── pandas │ │ │ │ └── core │ │ │ │ └── ops.py │ │ ├── dependency_setup.sh │ │ ├── pandas │ │ │ ├── core │ │ │ │ ├── indexes │ │ │ │ │ ├── datetimelike.py │ │ │ │ │ └── datetimes.py │ │ │ │ └── ops.py │ │ │ └── tests │ │ │ │ └── indexes │ │ │ │ └── datetimes │ │ │ │ └── test_arithmetic.py │ │ ├── patch.txt │ │ ├── requirements.txt │ │ └── test.sh │ ├── pandas-19013 │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── pandas │ │ │ │ └── core │ │ │ │ └── indexes │ │ │ │ └── datetimelike.py │ │ ├── dependency_setup.sh │ │ ├── pandas │ │ │ ├── conftest.py │ │ │ ├── core │ │ │ │ └── indexes │ │ │ │ │ ├── datetimelike-672.py │ │ │ │ │ ├── datetimelike-700.py │ │ │ │ │ └── datetimelike.py │ │ │ └── tests │ │ │ │ └── indexes │ │ │ │ ├── datetimes │ │ │ │ └── test_arithmetic.py │ │ │ │ ├── period │ │ │ │ └── test_arithmetic.py │ │ │ │ └── timedeltas │ │ │ │ └── test_arithmetic.py │ │ ├── patch.txt │ │ ├── requirements.txt │ │ └── test.sh │ ├── pandas-19276 │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── pandas │ │ │ │ └── core │ │ │ │ └── indexes │ │ │ │ └── datetimes.py │ │ ├── dependency_setup.sh │ │ ├── pandas │ │ │ ├── core │ │ │ │ └── indexes │ │ │ │ │ └── datetimes.py │ │ │ └── tests │ │ │ │ └── indexes │ │ │ │ └── datetimes │ │ │ │ └── test_datetime.py │ │ ├── patch.txt │ │ ├── requirements.txt │ │ └── test.sh │ ├── pandas-20968 │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── pandas │ │ │ │ └── plotting │ │ │ │ └── _core.py │ │ ├── dependency_setup.sh │ │ ├── pandas │ │ │ ├── plotting │ │ │ │ ├── _core-2551.py │ │ │ │ ├── _core-2601.py │ │ │ │ └── _core.py │ │ │ └── tests │ │ │ │ └── plotting │ │ │ │ └── test_frame.py │ │ ├── patch.txt │ │ ├── requirements.txt │ │ └── test.sh │ ├── pandas-21540 │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── pandas │ │ │ │ └── io │ │ │ │ └── json │ │ │ │ └── normalize.py │ │ ├── dependency_setup.sh │ │ ├── pandas │ │ │ ├── io │ │ │ │ └── json │ │ │ │ │ └── normalize.py │ │ │ └── tests │ │ │ │ └── io │ │ │ │ └── json │ │ │ │ └── test_normalize.py │ │ ├── patch.txt │ │ ├── requirements.txt │ │ └── test.sh │ ├── pandas-21590 │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── pandas │ │ │ │ └── core │ │ │ │ └── generic.py │ │ ├── dependency_setup.sh │ │ ├── pandas │ │ │ ├── core │ │ │ │ ├── generic-1120.py │ │ │ │ ├── generic-1131.py │ │ │ │ └── generic.py │ │ │ └── tests │ │ │ │ └── frame │ │ │ │ └── test_operators.py │ │ ├── patch.txt │ │ ├── requirements.txt │ │ └── test.sh │ ├── pandas-22072 │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── pandas │ │ │ │ └── core │ │ │ │ └── arrays │ │ │ │ └── categorical.py │ │ ├── dependency_setup.sh │ │ ├── pandas │ │ │ ├── core │ │ │ │ └── arrays │ │ │ │ │ └── categorical.py │ │ │ └── tests │ │ │ │ └── indexes │ │ │ │ └── multi │ │ │ │ └── test_constructor.py │ │ ├── patch.txt │ │ ├── requirements.txt │ │ └── test.sh │ ├── pandas-22198 │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── pandas │ │ │ │ └── core │ │ │ │ └── indexes │ │ │ │ └── base.py │ │ ├── dependency_setup.sh │ │ ├── pandas │ │ │ ├── core │ │ │ │ └── indexes │ │ │ │ │ └── base.py │ │ │ └── tests │ │ │ │ └── frame │ │ │ │ └── test_asof.py │ │ ├── patch.txt │ │ ├── requirements.txt │ │ └── test.sh │ ├── pandas-22378 │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── pandas │ │ │ │ └── core │ │ │ │ └── ops.py │ │ ├── dependency_setup.sh │ │ ├── pandas │ │ │ ├── core │ │ │ │ └── ops.py │ │ │ └── tests │ │ │ │ └── arithmetic │ │ │ │ ├── conftest.py │ │ │ │ └── test_object.py │ │ ├── patch.txt │ │ ├── requirements.txt │ │ └── test.sh │ ├── pandas-22804 │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── pandas │ │ │ │ └── io │ │ │ │ └── json │ │ │ │ └── normalize.py │ │ ├── dependency_setup.sh │ │ ├── pandas │ │ │ ├── io │ │ │ │ └── json │ │ │ │ │ └── normalize.py │ │ │ └── tests │ │ │ │ └── io │ │ │ │ └── json │ │ │ │ └── test_normalize.py │ │ ├── patch.txt │ │ ├── requirements.txt │ │ └── test.sh │ ├── pandas-24572 │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── pandas │ │ │ │ └── io │ │ │ │ └── formats │ │ │ │ └── html.py │ │ ├── dependency_setup.sh │ │ ├── pandas │ │ │ ├── io │ │ │ │ └── formats │ │ │ │ │ └── html.py │ │ │ └── tests │ │ │ │ └── io │ │ │ │ └── formats │ │ │ │ └── test_to_html.py │ │ ├── patch.txt │ │ ├── requirements.txt │ │ └── test.sh │ ├── pandas-25533 │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── pandas │ │ │ │ └── core │ │ │ │ └── series.py │ │ ├── dependency_setup.sh │ │ ├── pandas │ │ │ ├── core │ │ │ │ └── series.py │ │ │ └── tests │ │ │ │ └── indexing │ │ │ │ └── test_scalar.py │ │ ├── patch.txt │ │ ├── requirements.txt │ │ └── test.sh │ ├── pandas-25759 │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── pandas │ │ │ │ └── core │ │ │ │ └── indexing.py │ │ ├── dependency_setup.sh │ │ ├── pandas │ │ │ ├── core │ │ │ │ └── indexing.py │ │ │ └── tests │ │ │ │ └── indexing │ │ │ │ └── test_iloc.py │ │ ├── patch.txt │ │ ├── requirements.txt │ │ └── test.sh │ ├── pandas-26765 │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── pandas │ │ │ │ └── core │ │ │ │ └── arrays │ │ │ │ └── categorical.py │ │ ├── dependency_setup.sh │ │ ├── pandas │ │ │ ├── core │ │ │ │ └── arrays │ │ │ │ │ └── categorical.py │ │ │ └── tests │ │ │ │ └── reshape │ │ │ │ └── test_pivot.py │ │ ├── patch.txt │ │ ├── requirements.txt │ │ └── test.sh │ ├── pandas-28251 │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── pandas │ │ │ │ └── core │ │ │ │ └── algorithms.py │ │ ├── dependency_setup.sh │ │ ├── pandas │ │ │ ├── core │ │ │ │ └── algorithms.py │ │ │ └── tests │ │ │ │ └── series │ │ │ │ └── test_analytics.py │ │ ├── patch.txt │ │ ├── requirements.txt │ │ └── test.sh │ ├── pandas-28412 │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── pandas │ │ │ │ └── core │ │ │ │ └── series.py │ │ ├── dependency_setup.sh │ │ ├── pandas │ │ │ ├── core │ │ │ │ └── series.py │ │ │ └── tests │ │ │ │ └── series │ │ │ │ └── test_combine_concat.py │ │ ├── patch.txt │ │ ├── requirements.txt │ │ └── test.sh │ ├── pandas-29103 │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── pandas │ │ │ │ └── core │ │ │ │ └── dtypes │ │ │ │ └── cast.py │ │ ├── dependency_setup.sh │ │ ├── pandas │ │ │ ├── core │ │ │ │ ├── dtypes │ │ │ │ │ └── cast.py │ │ │ │ └── groupby │ │ │ │ │ └── generic.py │ │ │ └── tests │ │ │ │ └── dtypes │ │ │ │ └── cast │ │ │ │ └── test_downcast.py │ │ ├── patch.txt │ │ ├── requirements.txt │ │ └── test.sh │ ├── pandas-30225 │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── pandas │ │ │ │ └── core │ │ │ │ └── indexes │ │ │ │ └── base.py │ │ ├── dependency_setup.sh │ │ ├── pandas │ │ │ ├── core │ │ │ │ └── indexes │ │ │ │ │ ├── base.py │ │ │ │ │ └── category.py │ │ │ └── tests │ │ │ │ └── indexing │ │ │ │ └── test_categorical.py │ │ ├── patch.txt │ │ ├── requirements.txt │ │ └── test.sh │ ├── pandas-30532 │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── pandas │ │ │ │ └── core │ │ │ │ └── groupby │ │ │ │ ├── generic.py │ │ │ │ └── groupby.py │ │ ├── dependency_setup.sh │ │ ├── pandas │ │ │ ├── core │ │ │ │ └── groupby │ │ │ │ │ ├── generic.py │ │ │ │ │ └── groupby.py │ │ │ └── tests │ │ │ │ └── groupby │ │ │ │ └── test_transform.py │ │ ├── patch.txt │ │ ├── requirements.txt │ │ └── test.sh │ ├── pandas-31477 │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── pandas │ │ │ │ └── core │ │ │ │ └── groupby │ │ │ │ └── ops.py │ │ ├── dependency_setup.sh │ │ ├── pandas │ │ │ ├── core │ │ │ │ └── groupby │ │ │ │ │ └── ops.py │ │ │ └── tests │ │ │ │ └── groupby │ │ │ │ └── aggregate │ │ │ │ └── test_aggregate.py │ │ ├── patch.txt │ │ ├── requirements.txt │ │ └── test.sh │ ├── pandas-31905 │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── pandas │ │ │ │ └── core │ │ │ │ └── indexes │ │ │ │ └── base.py │ │ ├── dependency_setup.sh │ │ ├── pandas │ │ │ ├── core │ │ │ │ ├── indexes │ │ │ │ │ └── base.py │ │ │ │ └── series.py │ │ │ └── tests │ │ │ │ └── indexing │ │ │ │ ├── test_categorical.py │ │ │ │ ├── test_loc.py │ │ │ │ └── test_scalar.py │ │ ├── patch.txt │ │ ├── requirements.txt │ │ └── test.sh │ ├── pandas-32223 │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── pandas │ │ │ │ └── core │ │ │ │ └── groupby │ │ │ │ └── generic.py │ │ ├── dependency_setup.sh │ │ ├── pandas │ │ │ ├── core │ │ │ │ └── groupby │ │ │ │ │ └── generic.py │ │ │ └── tests │ │ │ │ └── groupby │ │ │ │ └── test_function.py │ │ ├── patch.txt │ │ ├── requirements.txt │ │ └── test.sh │ ├── pandas-32953 │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── pandas │ │ │ │ └── core │ │ │ │ └── reshape │ │ │ │ └── concat.py │ │ ├── dependency_setup.sh │ │ ├── pandas │ │ │ ├── conftest.py │ │ │ ├── core │ │ │ │ └── reshape │ │ │ │ │ └── concat.py │ │ │ └── tests │ │ │ │ └── reshape │ │ │ │ └── test_concat.py │ │ ├── patch.txt │ │ ├── requirements.txt │ │ └── test.sh │ ├── pandas-33373 │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── pandas │ │ │ │ └── io │ │ │ │ └── json │ │ │ │ └── _json.py │ │ ├── dependency_setup.sh │ │ ├── pandas │ │ │ ├── io │ │ │ │ └── json │ │ │ │ │ └── _json.py │ │ │ └── tests │ │ │ │ └── io │ │ │ │ └── json │ │ │ │ └── test_pandas.py │ │ ├── patch.txt │ │ ├── requirements.txt │ │ └── test.sh │ ├── pandas-34220 │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── pandas │ │ │ │ └── core │ │ │ │ └── dtypes │ │ │ │ └── missing.py │ │ ├── dependency_setup.sh │ │ ├── pandas │ │ │ ├── core │ │ │ │ ├── arrays │ │ │ │ │ └── sparse │ │ │ │ │ │ └── array.py │ │ │ │ ├── dtypes │ │ │ │ │ └── missing.py │ │ │ │ └── nanops.py │ │ │ └── tests │ │ │ │ └── arrays │ │ │ │ └── sparse │ │ │ │ └── test_array.py │ │ ├── patch.txt │ │ ├── requirements.txt │ │ └── test.sh │ ├── pandas-36950 │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── pandas │ │ │ │ └── core │ │ │ │ └── frame.py │ │ ├── dependency_setup.sh │ │ ├── pandas │ │ │ ├── core │ │ │ │ └── frame.py │ │ │ └── tests │ │ │ │ └── frame │ │ │ │ └── apply │ │ │ │ └── test_frame_apply.py │ │ ├── patch.txt │ │ ├── requirements.txt │ │ └── test.sh │ ├── pandas-37096 │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── pandas │ │ │ │ └── core │ │ │ │ └── algorithms.py │ │ ├── dependency_setup.sh │ │ ├── pandas │ │ │ ├── core │ │ │ │ └── algorithms.py │ │ │ └── tests │ │ │ │ └── frame │ │ │ │ └── methods │ │ │ │ └── test_combine_first.py │ │ ├── patch.txt │ │ ├── requirements.txt │ │ └── test.sh │ ├── pandas-37736 │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── pandas │ │ │ │ └── io │ │ │ │ └── html.py │ │ ├── dependency_setup.sh │ │ ├── pandas │ │ │ ├── io │ │ │ │ └── html.py │ │ │ └── tests │ │ │ │ └── io │ │ │ │ └── test_html.py │ │ ├── patch.txt │ │ ├── requirements.txt │ │ └── test.sh │ ├── pandas-38220 │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── pandas │ │ │ │ └── core │ │ │ │ └── generic.py │ │ ├── dependency_setup.sh │ │ ├── pandas │ │ │ ├── core │ │ │ │ └── generic.py │ │ │ └── tests │ │ │ │ └── frame │ │ │ │ └── methods │ │ │ │ └── test_drop.py │ │ ├── patch.txt │ │ ├── requirements.txt │ │ └── test.sh │ ├── pandas-38431 │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── pandas │ │ │ │ └── io │ │ │ │ └── parsers.py │ │ ├── dependency_setup.sh │ │ ├── pandas │ │ │ ├── io │ │ │ │ └── parsers.py │ │ │ └── tests │ │ │ │ └── io │ │ │ │ └── parser │ │ │ │ └── test_parse_dates.py │ │ ├── patch.txt │ │ ├── requirements.txt │ │ └── test.sh │ ├── pandas-39028-1 │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── pandas │ │ │ │ └── core │ │ │ │ └── aggregation.py │ │ ├── dependency_setup.sh │ │ ├── pandas │ │ │ ├── core │ │ │ │ ├── aggregation-486.py │ │ │ │ ├── aggregation-489.py │ │ │ │ └── aggregation.py │ │ │ └── tests │ │ │ │ └── frame │ │ │ │ └── apply │ │ │ │ └── test_frame_transform.py │ │ ├── patch.txt │ │ ├── requirements.txt │ │ └── test.sh │ ├── pandas-39028-2 │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── pandas │ │ │ │ └── core │ │ │ │ └── aggregation.py │ │ ├── dependency_setup.sh │ │ ├── pandas │ │ │ ├── core │ │ │ │ └── aggregation.py │ │ │ └── tests │ │ │ │ └── resample │ │ │ │ └── test_resample_api.py │ │ ├── patch.txt │ │ ├── requirements.txt │ │ └── test.sh │ ├── pandas-39095 │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── pandas │ │ │ │ └── core │ │ │ │ └── indexes │ │ │ │ └── base.py │ │ ├── dependency_setup.sh │ │ ├── pandas │ │ │ ├── core │ │ │ │ └── indexes │ │ │ │ │ └── base.py │ │ │ └── tests │ │ │ │ └── frame │ │ │ │ └── methods │ │ │ │ └── test_reindex.py │ │ ├── patch.txt │ │ ├── requirements.txt │ │ └── test.sh │ ├── pandas-40180 │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── pandas │ │ │ │ └── core │ │ │ │ └── indexes │ │ │ │ └── base.py │ │ ├── dependency_setup.sh │ │ ├── pandas │ │ │ ├── compat │ │ │ │ └── numpy │ │ │ │ │ └── function.py │ │ │ ├── core │ │ │ │ └── indexes │ │ │ │ │ ├── base-6053.py │ │ │ │ │ └── base.py │ │ │ └── tests │ │ │ │ └── reductions │ │ │ │ └── test_reductions.py │ │ ├── patch.txt │ │ ├── requirements.txt │ │ └── test.sh │ ├── pandas-41155 │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── pandas │ │ │ │ └── core │ │ │ │ └── algorithms.py │ │ ├── dependency_setup.sh │ │ ├── pandas │ │ │ ├── core │ │ │ │ └── algorithms.py │ │ │ └── tests │ │ │ │ └── indexes │ │ │ │ └── ranges │ │ │ │ └── test_range.py │ │ ├── patch.txt │ │ ├── requirements.txt │ │ └── test.sh │ └── pandas-41406 │ │ ├── bug_info.json │ │ ├── correct │ │ └── pandas │ │ │ └── core │ │ │ └── indexing.py │ │ ├── dependency_setup.sh │ │ ├── pandas │ │ ├── core │ │ │ └── indexing.py │ │ └── tests │ │ │ └── indexing │ │ │ └── test_datetime.py │ │ ├── patch.txt │ │ ├── requirements.txt │ │ └── test.sh │ ├── rasa │ └── rasa-8704 │ │ ├── bug_info.json │ │ ├── correct │ │ └── rasa │ │ │ └── nlu │ │ │ └── model.py │ │ ├── dependency_setup.sh │ │ ├── patch.txt │ │ ├── rasa │ │ └── nlu │ │ │ ├── model-45.py │ │ │ ├── model-60.py │ │ │ └── model.py │ │ ├── requirements.txt │ │ ├── test.sh │ │ └── tests │ │ └── nlu │ │ └── test_model.py │ ├── requests │ ├── requests-3179 │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── requests │ │ │ │ └── models.py │ │ ├── dependency_setup.sh │ │ ├── patch.txt │ │ ├── requests │ │ │ └── models.py │ │ ├── requirements.txt │ │ ├── test.sh │ │ └── tests │ │ │ └── test_requests.py │ ├── requests-3368 │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── requests │ │ │ │ └── models.py │ │ ├── dependency_setup.sh │ │ ├── patch.txt │ │ ├── requests │ │ │ └── models.py │ │ ├── requirements.txt │ │ ├── test.sh │ │ └── tests │ │ │ └── test_requests.py │ ├── requests-3390 │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── requests │ │ │ │ └── utils.py │ │ ├── dependency_setup.sh │ │ ├── patch.txt │ │ ├── requests │ │ │ └── utils.py │ │ ├── requirements.txt │ │ ├── test.sh │ │ └── tests │ │ │ └── test_requests.py │ └── requests-4723 │ │ ├── bug_info.json │ │ ├── correct │ │ └── requests │ │ │ └── utils.py │ │ ├── dependency_setup.sh │ │ ├── patch.txt │ │ ├── requests │ │ └── utils.py │ │ ├── requirements.txt │ │ ├── test.sh │ │ └── tests │ │ └── test_utils.py │ ├── rich │ └── rich-919 │ │ ├── bug_info.json │ │ ├── correct │ │ └── rich │ │ │ └── _inspect.py │ │ ├── dependency_setup.sh │ │ ├── patch.txt │ │ ├── requirements.txt │ │ ├── rich │ │ ├── _inspect-145.py │ │ ├── _inspect-183.py │ │ ├── _inspect-88.py │ │ ├── _inspect-92.py │ │ └── _inspect.py │ │ ├── test.sh │ │ └── tests │ │ └── test_inspect.py │ ├── salt │ ├── salt-33908 │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── salt │ │ │ │ ├── modules │ │ │ │ └── boto_lambda.py │ │ │ │ └── states │ │ │ │ └── boto_lambda.py │ │ ├── dependency_setup.sh │ │ ├── patch.txt │ │ ├── requirements.txt │ │ ├── salt │ │ │ ├── modules │ │ │ │ └── boto_lambda.py │ │ │ └── states │ │ │ │ └── boto_lambda.py │ │ ├── test.sh │ │ └── tests │ │ │ └── unit │ │ │ └── states │ │ │ └── boto_lambda_test.py │ ├── salt-38947 │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── salt │ │ │ │ └── client │ │ │ │ └── ssh │ │ │ │ └── shell.py │ │ ├── dependency_setup.sh │ │ ├── patch.txt │ │ ├── requirements.txt │ │ ├── salt │ │ │ └── client │ │ │ │ └── ssh │ │ │ │ └── shell.py │ │ ├── test.sh │ │ └── tests │ │ │ └── unit │ │ │ └── ssh │ │ │ └── ssh_single_test.py │ ├── salt-50958 │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── salt │ │ │ │ └── modules │ │ │ │ └── twilio_notify.py │ │ ├── dependency_setup.sh │ │ ├── patch.txt │ │ ├── requirements.txt │ │ ├── salt │ │ │ └── modules │ │ │ │ └── twilio_notify.py │ │ └── test.sh │ ├── salt-53394 │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── salt │ │ │ │ └── utils │ │ │ │ └── http.py │ │ ├── dependency_setup.sh │ │ ├── patch.txt │ │ ├── requirements.txt │ │ ├── salt │ │ │ ├── modules │ │ │ │ └── http.py │ │ │ └── utils │ │ │ │ ├── http-108.py │ │ │ │ ├── http-125.py │ │ │ │ └── http.py │ │ ├── test.sh │ │ └── tests │ │ │ └── unit │ │ │ └── utils │ │ │ └── test_http.py │ ├── salt-54240 │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── salt │ │ │ │ └── cloud │ │ │ │ └── clouds │ │ │ │ └── ec2.py │ │ ├── dependency_setup.sh │ │ ├── patch.txt │ │ ├── requirements.txt │ │ ├── salt │ │ │ └── cloud │ │ │ │ └── clouds │ │ │ │ └── ec2.py │ │ ├── test.sh │ │ └── tests │ │ │ └── unit │ │ │ └── cloud │ │ │ └── clouds │ │ │ └── test_ec2.py │ ├── salt-54785 │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── salt │ │ │ │ └── modules │ │ │ │ └── state.py │ │ ├── dependency_setup.sh │ │ ├── patch.txt │ │ ├── requirements.txt │ │ ├── salt │ │ │ └── modules │ │ │ │ └── state.py │ │ ├── test.sh │ │ └── tests │ │ │ └── unit │ │ │ └── modules │ │ │ └── test_state.py │ ├── salt-56094 │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── salt │ │ │ │ └── __init__.py │ │ ├── dependency_setup.sh │ │ ├── patch.txt │ │ ├── requirements.txt │ │ ├── salt │ │ │ └── __init__.py │ │ ├── test.sh │ │ └── tests │ │ │ └── unit │ │ │ └── test_ext.py │ └── salt-56381 │ │ ├── bug_info.json │ │ ├── correct │ │ └── salt │ │ │ └── state.py │ │ ├── dependency_setup.sh │ │ ├── patch.txt │ │ ├── requirements.txt │ │ ├── salt │ │ └── state.py │ │ ├── test.sh │ │ └── tests │ │ └── unit │ │ └── test_state.py │ ├── sanic │ ├── sanic-1334 │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── sanic │ │ │ │ └── blueprints.py │ │ ├── dependency_setup.sh │ │ ├── patch.txt │ │ ├── requirements.txt │ │ ├── sanic │ │ │ └── blueprints.py │ │ ├── test.sh │ │ └── tests │ │ │ └── test_blueprints.py │ └── sanic-2008-1 │ │ ├── bug_info.json │ │ ├── correct │ │ └── sanic │ │ │ └── static.py │ │ ├── dependency_setup.sh │ │ ├── patch.txt │ │ ├── requirements.txt │ │ ├── sanic │ │ └── static.py │ │ ├── test.sh │ │ └── tests │ │ └── test_static.py │ ├── scikit-learn │ ├── scikit-learn-12603 │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── sklearn │ │ │ │ └── gaussian_process │ │ │ │ └── kernels.py │ │ ├── dependency_setup.sh │ │ ├── patch.txt │ │ ├── requirements.txt │ │ ├── sklearn │ │ │ └── gaussian_process │ │ │ │ ├── kernels.py │ │ │ │ └── tests │ │ │ │ └── test_kernels.py │ │ └── test.sh │ ├── scikit-learn-17233 │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── sklearn │ │ │ │ └── multiclass.py │ │ ├── dependency_setup.sh │ │ ├── patch.txt │ │ ├── requirements.txt │ │ ├── sklearn │ │ │ ├── multiclass-805.py │ │ │ ├── multiclass-853.py │ │ │ ├── multiclass.py │ │ │ └── tests │ │ │ │ └── test_multiclass.py │ │ └── test.sh │ ├── scikit-learn-7064 │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── sklearn │ │ │ │ └── svm │ │ │ │ └── base.py │ │ ├── dependency_setup.sh │ │ ├── patch.txt │ │ ├── requirements.txt │ │ ├── sklearn │ │ │ └── svm │ │ │ │ ├── base.py │ │ │ │ └── tests │ │ │ │ └── test_svm.py │ │ └── test.sh │ ├── scikit-learn-7259 │ │ ├── bug_info.json │ │ ├── correct │ │ │ └── sklearn │ │ │ │ └── gaussian_process │ │ │ │ └── kernels.py │ │ ├── dependency_setup.sh │ │ ├── patch.txt │ │ ├── requirements.txt │ │ ├── sklearn │ │ │ └── gaussian_process │ │ │ │ ├── kernels-1210.py │ │ │ │ ├── kernels-1356.py │ │ │ │ ├── kernels.py │ │ │ │ └── tests │ │ │ │ └── test_kernels.py │ │ └── test.sh │ └── scikit-learn-8973 │ │ ├── bug_info.json │ │ ├── correct │ │ └── sklearn │ │ │ └── linear_model │ │ │ └── coordinate_descent.py │ │ ├── dependency_setup.sh │ │ ├── patch.txt │ │ ├── requirements.txt │ │ ├── sklearn │ │ └── linear_model │ │ │ ├── coordinate_descent.py │ │ │ └── tests │ │ │ └── test_coordinate_descent.py │ │ └── test.sh │ └── tornado │ └── tornado-1689 │ ├── bug_info.json │ ├── correct │ └── tornado │ │ └── web.py │ ├── dependency_setup.sh │ ├── patch.txt │ ├── requirements.txt │ ├── test.sh │ └── tornado │ ├── test │ └── web_test.py │ └── web.py ├── results ├── eval.pdf └── samples │ ├── FINAL_FIX_TEMPLATE_11696.pdf │ ├── FINAL_FIX_TEMPLATE_11698.pdf │ ├── FINAL_FIX_TEMPLATE_12786.pdf │ ├── FINAL_FIX_TEMPLATE_14045.pdf │ ├── FINAL_FIX_TEMPLATE_16471.pdf │ ├── FINAL_FIX_TEMPLATE_16480.pdf │ ├── FINAL_FIX_TEMPLATE_16726.pdf │ ├── FINAL_FIX_TEMPLATE_16845.pdf │ ├── FINAL_FIX_TEMPLATE_16932.pdf │ ├── FINAL_FIX_TEMPLATE_16937.pdf │ ├── FINAL_FIX_TEMPLATE_17130.pdf │ ├── FINAL_FIX_TEMPLATE_17201.pdf │ ├── FINAL_FIX_TEMPLATE_17237.pdf │ ├── FINAL_FIX_TEMPLATE_17345.pdf │ ├── FINAL_FIX_TEMPLATE_17422.pdf │ ├── FINAL_FIX_TEMPLATE_17438.pdf │ ├── FINAL_FIX_TEMPLATE_17618.pdf │ ├── FINAL_FIX_TEMPLATE_17621.pdf │ ├── FINAL_FIX_TEMPLATE_17633.pdf │ ├── FINAL_FIX_TEMPLATE_17726.pdf │ ├── FINAL_FIX_TEMPLATE_17747.pdf │ ├── FINAL_FIX_TEMPLATE_17848.pdf │ ├── FINAL_FIX_TEMPLATE_17868.pdf │ ├── FINAL_FIX_TEMPLATE_17877.pdf │ ├── FINAL_FIX_TEMPLATE_17898.pdf │ ├── FINAL_FIX_TEMPLATE_17901.pdf │ ├── FINAL_FIX_TEMPLATE_17904.pdf │ ├── FINAL_FIX_TEMPLATE_19374.pdf │ ├── FINAL_FIX_TEMPLATE_19443.pdf │ ├── FINAL_FIX_TEMPLATE_19518.pdf │ ├── FINAL_FIX_TEMPLATE_19524.pdf │ ├── FINAL_FIX_TEMPLATE_19533.pdf │ ├── FINAL_FIX_TEMPLATE_19572.pdf │ ├── FINAL_FIX_TEMPLATE_21591.pdf │ ├── FINAL_FIX_TEMPLATE_21847.pdf │ ├── FINAL_FIX_TEMPLATE_22013.pdf │ ├── FINAL_FIX_TEMPLATE_22189.pdf │ ├── FINAL_FIX_TEMPLATE_22400.pdf │ ├── FINAL_FIX_TEMPLATE_22440.pdf │ ├── FINAL_FIX_TEMPLATE_23482.pdf │ ├── FINAL_FIX_TEMPLATE_23728.pdf │ ├── FINAL_FIX_TEMPLATE_23738.pdf │ ├── FINAL_FIX_TEMPLATE_23816.pdf │ ├── FINAL_FIX_TEMPLATE_23932.pdf │ ├── FINAL_FIX_TEMPLATE_24042.pdf │ ├── FINAL_FIX_TEMPLATE_24057.pdf │ ├── FINAL_FIX_TEMPLATE_24112.pdf │ ├── FINAL_FIX_TEMPLATE_24127.pdf │ ├── FINAL_FIX_TEMPLATE_24152.pdf │ ├── FINAL_FIX_TEMPLATE_24179.pdf │ ├── FINAL_FIX_TEMPLATE_24537.pdf │ ├── FINAL_FIX_TEMPLATE_24566.pdf │ ├── FINAL_FIX_TEMPLATE_24630.pdf │ ├── FINAL_FIX_TEMPLATE_24631.pdf │ ├── FINAL_FIX_TEMPLATE_24632.pdf │ ├── FINAL_FIX_TEMPLATE_24647.pdf │ ├── FINAL_FIX_TEMPLATE_24667.pdf │ ├── FINAL_FIX_TEMPLATE_24671.pdf │ ├── FINAL_FIX_TEMPLATE_24751.pdf │ ├── FINAL_FIX_TEMPLATE_24793.pdf │ ├── FINAL_FIX_TEMPLATE_24842.pdf │ ├── FINAL_FIX_TEMPLATE_24880.pdf │ ├── FINAL_FIX_TEMPLATE_24895.pdf │ ├── FINAL_FIX_TEMPLATE_24918.pdf │ ├── FINAL_FIX_TEMPLATE_24928.pdf │ ├── FINAL_FIX_TEMPLATE_24934.pdf │ ├── FINAL_FIX_TEMPLATE_24939.pdf │ ├── FINAL_FIX_TEMPLATE_24942.pdf │ ├── FINAL_FIX_TEMPLATE_24947.pdf │ ├── FINAL_FIX_TEMPLATE_24955.pdf │ ├── FINAL_FIX_TEMPLATE_24960.pdf │ ├── FINAL_FIX_TEMPLATE_24965.pdf │ ├── FINAL_FIX_TEMPLATE_24975.pdf │ ├── FINAL_FIX_TEMPLATE_25013.pdf │ ├── FINAL_FIX_TEMPLATE_25018.pdf │ ├── FINAL_FIX_TEMPLATE_25023.pdf │ ├── FINAL_FIX_TEMPLATE_25028.pdf │ ├── FINAL_FIX_TEMPLATE_25033.pdf │ ├── FINAL_FIX_TEMPLATE_25053.pdf │ ├── FINAL_FIX_TEMPLATE_38518.pdf │ ├── FINAL_FIX_TEMPLATE_38838.pdf │ ├── FINAL_FIX_TEMPLATE_39303.pdf │ ├── FINAL_FIX_TEMPLATE_39482.pdf │ ├── FINAL_FIX_TEMPLATE_39699.pdf │ ├── FINAL_FIX_TEMPLATE_39772.pdf │ ├── FINAL_FIX_TEMPLATE_40110.pdf │ ├── FINAL_FIX_TEMPLATE_40167.pdf │ ├── FINAL_FIX_TEMPLATE_40233.pdf │ ├── FINAL_FIX_TEMPLATE_40254.pdf │ ├── FINAL_FIX_TEMPLATE_40312.pdf │ ├── FINAL_FIX_TEMPLATE_40582.pdf │ ├── FINAL_FIX_TEMPLATE_40706.pdf │ ├── FINAL_FIX_TEMPLATE_42097.pdf │ ├── FINAL_FIX_TEMPLATE_42262.pdf │ ├── FINAL_FIX_TEMPLATE_42548.pdf │ ├── FINAL_FIX_TEMPLATE_42671.pdf │ ├── FINAL_FIX_TEMPLATE_42704.pdf │ ├── FINAL_FIX_TEMPLATE_42809.pdf │ ├── FINAL_FIX_TEMPLATE_42815.pdf │ ├── FINAL_FIX_TEMPLATE_42857.pdf │ ├── FINAL_FIX_TEMPLATE_42869.pdf │ ├── FINAL_FIX_TEMPLATE_42872.pdf │ ├── FINAL_FIX_TEMPLATE_42888.pdf │ ├── FINAL_FIX_TEMPLATE_42908.pdf │ ├── FINAL_FIX_TEMPLATE_42923.pdf │ ├── FINAL_FIX_TEMPLATE_42950.pdf │ ├── FINAL_FIX_TEMPLATE_42980.pdf │ ├── FINAL_FIX_TEMPLATE_42998.pdf │ ├── FINAL_FIX_TEMPLATE_43001.pdf │ ├── FINAL_FIX_TEMPLATE_43013.pdf │ ├── FINAL_FIX_TEMPLATE_43031.pdf │ ├── FINAL_FIX_TEMPLATE_43037.pdf │ ├── FINAL_FIX_TEMPLATE_43052.pdf │ ├── FINAL_FIX_TEMPLATE_43079.pdf │ ├── FINAL_FIX_TEMPLATE_43088.pdf │ ├── FINAL_FIX_TEMPLATE_43146.pdf │ ├── FINAL_FIX_TEMPLATE_43173.pdf │ ├── FINAL_FIX_TEMPLATE_43188.pdf │ ├── FINAL_FIX_TEMPLATE_43194.pdf │ ├── FINAL_FIX_TEMPLATE_43197.pdf │ ├── FINAL_FIX_TEMPLATE_43203.pdf │ ├── FINAL_FIX_TEMPLATE_43215.pdf │ ├── FINAL_FIX_TEMPLATE_43218.pdf │ ├── FINAL_FIX_TEMPLATE_43224.pdf │ ├── FINAL_FIX_TEMPLATE_43227.pdf │ ├── FINAL_FIX_TEMPLATE_43251.pdf │ ├── FINAL_FIX_TEMPLATE_43254.pdf │ ├── FINAL_FIX_TEMPLATE_43263.pdf │ ├── FINAL_FIX_TEMPLATE_43281.pdf │ ├── FINAL_FIX_TEMPLATE_43284.pdf │ ├── FINAL_FIX_TEMPLATE_43287.pdf │ ├── FINAL_FIX_TEMPLATE_43290.pdf │ ├── FINAL_FIX_TEMPLATE_43293.pdf │ ├── FINAL_FIX_TEMPLATE_43302.pdf │ ├── FINAL_FIX_TEMPLATE_43305.pdf │ ├── FINAL_FIX_TEMPLATE_43311.pdf │ ├── FINAL_FIX_TEMPLATE_43314.pdf │ ├── FINAL_FIX_TEMPLATE_43323.pdf │ ├── FINAL_FIX_TEMPLATE_43332.pdf │ ├── FINAL_FIX_TEMPLATE_43335.pdf │ ├── FINAL_FIX_TEMPLATE_43338.pdf │ ├── FINAL_FIX_TEMPLATE_43350.pdf │ ├── FINAL_FIX_TEMPLATE_43359.pdf │ ├── FINAL_FIX_TEMPLATE_43362.pdf │ ├── FINAL_FIX_TEMPLATE_43368.pdf │ ├── FINAL_FIX_TEMPLATE_43377.pdf │ ├── FINAL_FIX_TEMPLATE_43380.pdf │ ├── FINAL_FIX_TEMPLATE_43386.pdf │ └── FINAL_FIX_TEMPLATE_43389.pdf └── typefix ├── __init__.py ├── ast_operation.py ├── bug_locator.py ├── build_benchmark.py ├── change_tree.py ├── commit_processor.py ├── evaluate.py ├── fix_miner.py ├── fix_template.py ├── patch_generator.py ├── repair.py └── test_codex.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/README.md -------------------------------------------------------------------------------- /benchmarks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/README.md -------------------------------------------------------------------------------- /benchmarks/all_bug_info_bugsinpy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/all_bug_info_bugsinpy.json -------------------------------------------------------------------------------- /benchmarks/all_bug_info_typebugs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/all_bug_info_typebugs.json -------------------------------------------------------------------------------- /benchmarks/bugsinpy/ansible/ansible-1/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/ansible/ansible-1/bug_info.json -------------------------------------------------------------------------------- /benchmarks/bugsinpy/ansible/ansible-1/dependency_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/ansible/ansible-1/dependency_setup.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/ansible/ansible-1/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/ansible/ansible-1/patch.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/ansible/ansible-1/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/ansible/ansible-1/requirements.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/ansible/ansible-1/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/ansible/ansible-1/test.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/fastapi/fastapi-1/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/fastapi/fastapi-1/bug_info.json -------------------------------------------------------------------------------- /benchmarks/bugsinpy/fastapi/fastapi-1/dependency_setup.sh: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /benchmarks/bugsinpy/fastapi/fastapi-1/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/fastapi/fastapi-1/requirements.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/fastapi/fastapi-1/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/fastapi/fastapi-1/test.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/fastapi/fastapi-11/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/fastapi/fastapi-11/bug_info.json -------------------------------------------------------------------------------- /benchmarks/bugsinpy/fastapi/fastapi-11/dependency_setup.sh: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /benchmarks/bugsinpy/fastapi/fastapi-11/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/fastapi/fastapi-11/requirements.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/fastapi/fastapi-11/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/fastapi/fastapi-11/test.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/fastapi/fastapi-7/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/fastapi/fastapi-7/bug_info.json -------------------------------------------------------------------------------- /benchmarks/bugsinpy/fastapi/fastapi-7/dependency_setup.sh: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /benchmarks/bugsinpy/fastapi/fastapi-7/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/fastapi/fastapi-7/patch.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/fastapi/fastapi-7/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/fastapi/fastapi-7/requirements.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/fastapi/fastapi-7/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/fastapi/fastapi-7/test.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/keras/keras-22/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/keras/keras-22/bug_info.json -------------------------------------------------------------------------------- /benchmarks/bugsinpy/keras/keras-22/dependency_setup.sh: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /benchmarks/bugsinpy/keras/keras-22/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/keras/keras-22/patch.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/keras/keras-22/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/keras/keras-22/requirements.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/keras/keras-22/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/keras/keras-22/test.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/keras/keras-34/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/keras/keras-34/bug_info.json -------------------------------------------------------------------------------- /benchmarks/bugsinpy/keras/keras-34/dependency_setup.sh: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /benchmarks/bugsinpy/keras/keras-34/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/keras/keras-34/patch.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/keras/keras-34/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/keras/keras-34/requirements.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/keras/keras-34/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/keras/keras-34/test.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/keras/keras-39/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/keras/keras-39/bug_info.json -------------------------------------------------------------------------------- /benchmarks/bugsinpy/keras/keras-39/dependency_setup.sh: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /benchmarks/bugsinpy/keras/keras-39/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/keras/keras-39/patch.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/keras/keras-39/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/keras/keras-39/requirements.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/keras/keras-39/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/keras/keras-39/test.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/keras/keras-4/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/keras/keras-4/bug_info.json -------------------------------------------------------------------------------- /benchmarks/bugsinpy/keras/keras-4/dependency_setup.sh: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /benchmarks/bugsinpy/keras/keras-4/keras/optimizers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/keras/keras-4/keras/optimizers.py -------------------------------------------------------------------------------- /benchmarks/bugsinpy/keras/keras-4/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/keras/keras-4/patch.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/keras/keras-4/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/keras/keras-4/requirements.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/keras/keras-4/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/keras/keras-4/test.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/luigi/luigi-14/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/luigi/luigi-14/bug_info.json -------------------------------------------------------------------------------- /benchmarks/bugsinpy/luigi/luigi-14/dependency_setup.sh: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /benchmarks/bugsinpy/luigi/luigi-14/luigi/scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/luigi/luigi-14/luigi/scheduler.py -------------------------------------------------------------------------------- /benchmarks/bugsinpy/luigi/luigi-14/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/luigi/luigi-14/patch.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/luigi/luigi-14/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/luigi/luigi-14/requirements.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/luigi/luigi-14/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/luigi/luigi-14/test.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/luigi/luigi-22/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/luigi/luigi-22/bug_info.json -------------------------------------------------------------------------------- /benchmarks/bugsinpy/luigi/luigi-22/dependency_setup.sh: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /benchmarks/bugsinpy/luigi/luigi-22/luigi/scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/luigi/luigi-22/luigi/scheduler.py -------------------------------------------------------------------------------- /benchmarks/bugsinpy/luigi/luigi-22/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/luigi/luigi-22/patch.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/luigi/luigi-22/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/luigi/luigi-22/requirements.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/luigi/luigi-22/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/luigi/luigi-22/test.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/luigi/luigi-25/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/luigi/luigi-25/bug_info.json -------------------------------------------------------------------------------- /benchmarks/bugsinpy/luigi/luigi-25/dependency_setup.sh: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /benchmarks/bugsinpy/luigi/luigi-25/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/luigi/luigi-25/patch.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/luigi/luigi-25/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/luigi/luigi-25/requirements.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/luigi/luigi-25/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/luigi/luigi-25/test.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/luigi/luigi-26/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/luigi/luigi-26/bug_info.json -------------------------------------------------------------------------------- /benchmarks/bugsinpy/luigi/luigi-26/dependency_setup.sh: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /benchmarks/bugsinpy/luigi/luigi-26/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/luigi/luigi-26/patch.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/luigi/luigi-26/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/luigi/luigi-26/requirements.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/luigi/luigi-26/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/luigi/luigi-26/test.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/luigi/luigi-3/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/luigi/luigi-3/bug_info.json -------------------------------------------------------------------------------- /benchmarks/bugsinpy/luigi/luigi-3/dependency_setup.sh: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /benchmarks/bugsinpy/luigi/luigi-3/luigi/parameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/luigi/luigi-3/luigi/parameter.py -------------------------------------------------------------------------------- /benchmarks/bugsinpy/luigi/luigi-3/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/luigi/luigi-3/patch.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/luigi/luigi-3/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/luigi/luigi-3/requirements.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/luigi/luigi-3/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/luigi/luigi-3/test.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/luigi/luigi-4/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/luigi/luigi-4/bug_info.json -------------------------------------------------------------------------------- /benchmarks/bugsinpy/luigi/luigi-4/dependency_setup.sh: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /benchmarks/bugsinpy/luigi/luigi-4/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/luigi/luigi-4/patch.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/luigi/luigi-4/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/luigi/luigi-4/requirements.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/luigi/luigi-4/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/luigi/luigi-4/test.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/luigi/luigi-6/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/luigi/luigi-6/bug_info.json -------------------------------------------------------------------------------- /benchmarks/bugsinpy/luigi/luigi-6/dependency_setup.sh: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /benchmarks/bugsinpy/luigi/luigi-6/luigi/parameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/luigi/luigi-6/luigi/parameter.py -------------------------------------------------------------------------------- /benchmarks/bugsinpy/luigi/luigi-6/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/luigi/luigi-6/patch.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/luigi/luigi-6/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/luigi/luigi-6/requirements.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/luigi/luigi-6/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/luigi/luigi-6/test.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-106/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-106/bug_info.json -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-106/dependency_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-106/dependency_setup.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-106/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-106/patch.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-106/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-106/requirements.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-106/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-106/test.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-110/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-110/bug_info.json -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-110/dependency_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-110/dependency_setup.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-110/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-110/patch.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-110/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-110/requirements.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-110/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-110/test.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-111/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-111/bug_info.json -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-111/dependency_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-111/dependency_setup.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-111/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-111/patch.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-111/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-111/requirements.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-111/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-111/test.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-112/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-112/bug_info.json -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-112/dependency_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-112/dependency_setup.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-112/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-112/patch.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-112/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-112/requirements.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-112/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-112/test.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-12/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-12/bug_info.json -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-12/dependency_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-12/dependency_setup.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-12/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-12/patch.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-12/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-12/requirements.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-12/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-12/test.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-138/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-138/bug_info.json -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-138/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-138/patch.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-138/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-138/requirements.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-138/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-138/test.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-142/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-142/bug_info.json -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-142/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-142/patch.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-142/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-142/requirements.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-142/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-142/test.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-145/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-145/bug_info.json -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-145/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-145/patch.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-145/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-145/requirements.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-145/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-145/test.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-146/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-146/bug_info.json -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-146/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-146/patch.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-146/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-146/requirements.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-146/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-146/test.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-152/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-152/bug_info.json -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-152/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-152/patch.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-152/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-152/requirements.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-152/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-152/test.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-158/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-158/bug_info.json -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-158/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-158/patch.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-158/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-158/requirements.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-158/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-158/test.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-30/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-30/bug_info.json -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-30/dependency_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-30/dependency_setup.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-30/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-30/patch.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-30/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-30/requirements.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-30/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-30/test.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-31/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-31/bug_info.json -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-31/dependency_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-31/dependency_setup.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-31/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-31/patch.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-31/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-31/requirements.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-31/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-31/test.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-36/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-36/bug_info.json -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-36/dependency_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-36/dependency_setup.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-36/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-36/patch.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-36/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-36/requirements.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-36/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-36/test.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-48/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-48/bug_info.json -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-48/dependency_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-48/dependency_setup.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-48/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-48/patch.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-48/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-48/requirements.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-48/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-48/test.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-49/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-49/bug_info.json -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-49/dependency_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-49/dependency_setup.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-49/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-49/patch.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-49/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-49/requirements.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-49/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-49/test.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-53/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-53/bug_info.json -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-53/dependency_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-53/dependency_setup.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-53/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-53/patch.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-53/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-53/requirements.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-53/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-53/test.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-71/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-71/bug_info.json -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-71/dependency_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-71/dependency_setup.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-71/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-71/patch.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-71/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-71/requirements.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-71/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-71/test.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-79/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-79/bug_info.json -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-79/dependency_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-79/dependency_setup.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-79/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-79/patch.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-79/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-79/requirements.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-79/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-79/test.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-99/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-99/bug_info.json -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-99/dependency_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-99/dependency_setup.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-99/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-99/patch.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-99/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-99/requirements.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/pandas/pandas-99/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/pandas/pandas-99/test.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/scrapy/scrapy-1/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/scrapy/scrapy-1/bug_info.json -------------------------------------------------------------------------------- /benchmarks/bugsinpy/scrapy/scrapy-1/dependency_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/scrapy/scrapy-1/dependency_setup.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/scrapy/scrapy-1/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/scrapy/scrapy-1/patch.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/scrapy/scrapy-1/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/scrapy/scrapy-1/requirements.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/scrapy/scrapy-1/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/scrapy/scrapy-1/test.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/scrapy/scrapy-17/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/scrapy/scrapy-17/bug_info.json -------------------------------------------------------------------------------- /benchmarks/bugsinpy/scrapy/scrapy-17/dependency_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/scrapy/scrapy-17/dependency_setup.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/scrapy/scrapy-17/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/scrapy/scrapy-17/patch.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/scrapy/scrapy-17/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/scrapy/scrapy-17/requirements.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/scrapy/scrapy-17/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/scrapy/scrapy-17/test.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/scrapy/scrapy-2/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/scrapy/scrapy-2/bug_info.json -------------------------------------------------------------------------------- /benchmarks/bugsinpy/scrapy/scrapy-2/dependency_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/scrapy/scrapy-2/dependency_setup.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/scrapy/scrapy-2/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/scrapy/scrapy-2/patch.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/scrapy/scrapy-2/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/scrapy/scrapy-2/requirements.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/scrapy/scrapy-2/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/scrapy/scrapy-2/test.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/scrapy/scrapy-20/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/scrapy/scrapy-20/bug_info.json -------------------------------------------------------------------------------- /benchmarks/bugsinpy/scrapy/scrapy-20/dependency_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/scrapy/scrapy-20/dependency_setup.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/scrapy/scrapy-20/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/scrapy/scrapy-20/patch.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/scrapy/scrapy-20/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/scrapy/scrapy-20/requirements.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/scrapy/scrapy-20/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/scrapy/scrapy-20/test.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/scrapy/scrapy-23/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/scrapy/scrapy-23/bug_info.json -------------------------------------------------------------------------------- /benchmarks/bugsinpy/scrapy/scrapy-23/dependency_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/scrapy/scrapy-23/dependency_setup.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/scrapy/scrapy-23/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/scrapy/scrapy-23/patch.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/scrapy/scrapy-23/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/scrapy/scrapy-23/requirements.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/scrapy/scrapy-23/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/scrapy/scrapy-23/test.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/scrapy/scrapy-27/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/scrapy/scrapy-27/bug_info.json -------------------------------------------------------------------------------- /benchmarks/bugsinpy/scrapy/scrapy-27/dependency_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/scrapy/scrapy-27/dependency_setup.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/scrapy/scrapy-27/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/scrapy/scrapy-27/patch.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/scrapy/scrapy-27/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/scrapy/scrapy-27/requirements.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/scrapy/scrapy-27/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/scrapy/scrapy-27/test.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/scrapy/scrapy-29/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/scrapy/scrapy-29/bug_info.json -------------------------------------------------------------------------------- /benchmarks/bugsinpy/scrapy/scrapy-29/dependency_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/scrapy/scrapy-29/dependency_setup.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/scrapy/scrapy-29/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/scrapy/scrapy-29/patch.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/scrapy/scrapy-29/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/scrapy/scrapy-29/requirements.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/scrapy/scrapy-29/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/scrapy/scrapy-29/test.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/scrapy/scrapy-30/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/scrapy/scrapy-30/bug_info.json -------------------------------------------------------------------------------- /benchmarks/bugsinpy/scrapy/scrapy-30/dependency_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/scrapy/scrapy-30/dependency_setup.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/scrapy/scrapy-30/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/scrapy/scrapy-30/patch.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/scrapy/scrapy-30/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/scrapy/scrapy-30/requirements.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/scrapy/scrapy-30/scrapy/cmdline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/scrapy/scrapy-30/scrapy/cmdline.py -------------------------------------------------------------------------------- /benchmarks/bugsinpy/scrapy/scrapy-30/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/scrapy/scrapy-30/test.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/scrapy/scrapy-40/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/scrapy/scrapy-40/bug_info.json -------------------------------------------------------------------------------- /benchmarks/bugsinpy/scrapy/scrapy-40/dependency_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/scrapy/scrapy-40/dependency_setup.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/scrapy/scrapy-40/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/scrapy/scrapy-40/patch.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/scrapy/scrapy-40/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/scrapy/scrapy-40/requirements.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/scrapy/scrapy-40/scrapy/exporters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/scrapy/scrapy-40/scrapy/exporters.py -------------------------------------------------------------------------------- /benchmarks/bugsinpy/scrapy/scrapy-40/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/scrapy/scrapy-40/test.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/scrapy/scrapy-8/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/scrapy/scrapy-8/bug_info.json -------------------------------------------------------------------------------- /benchmarks/bugsinpy/scrapy/scrapy-8/dependency_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/scrapy/scrapy-8/dependency_setup.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/scrapy/scrapy-8/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/scrapy/scrapy-8/patch.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/scrapy/scrapy-8/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/scrapy/scrapy-8/requirements.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/scrapy/scrapy-8/scrapy/item-29.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/scrapy/scrapy-8/scrapy/item-29.py -------------------------------------------------------------------------------- /benchmarks/bugsinpy/scrapy/scrapy-8/scrapy/item-43.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/scrapy/scrapy-8/scrapy/item-43.py -------------------------------------------------------------------------------- /benchmarks/bugsinpy/scrapy/scrapy-8/scrapy/item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/scrapy/scrapy-8/scrapy/item.py -------------------------------------------------------------------------------- /benchmarks/bugsinpy/scrapy/scrapy-8/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/scrapy/scrapy-8/test.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/spacy/spacy-5/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/spacy/spacy-5/bug_info.json -------------------------------------------------------------------------------- /benchmarks/bugsinpy/spacy/spacy-5/dependency_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/spacy/spacy-5/dependency_setup.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/spacy/spacy-5/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/spacy/spacy-5/patch.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/spacy/spacy-5/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/spacy/spacy-5/requirements.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/spacy/spacy-5/spacy/language.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/spacy/spacy-5/spacy/language.py -------------------------------------------------------------------------------- /benchmarks/bugsinpy/spacy/spacy-5/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/spacy/spacy-5/test.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/tornado/tornado-7/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/tornado/tornado-7/bug_info.json -------------------------------------------------------------------------------- /benchmarks/bugsinpy/tornado/tornado-7/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/tornado/tornado-7/patch.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/tornado/tornado-7/requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmarks/bugsinpy/tornado/tornado-7/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/tornado/tornado-7/test.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/tornado/tornado-7/tornado/ioloop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/tornado/tornado-7/tornado/ioloop.py -------------------------------------------------------------------------------- /benchmarks/bugsinpy/tornado/tornado-9/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/tornado/tornado-9/bug_info.json -------------------------------------------------------------------------------- /benchmarks/bugsinpy/tornado/tornado-9/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/tornado/tornado-9/patch.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/tornado/tornado-9/requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmarks/bugsinpy/tornado/tornado-9/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/tornado/tornado-9/test.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/youtube-dl/youtube-dl-11/dependency_setup.sh: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /benchmarks/bugsinpy/youtube-dl/youtube-dl-11/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/youtube-dl/youtube-dl-11/patch.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/youtube-dl/youtube-dl-11/requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmarks/bugsinpy/youtube-dl/youtube-dl-11/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/youtube-dl/youtube-dl-11/test.sh -------------------------------------------------------------------------------- /benchmarks/bugsinpy/youtube-dl/youtube-dl-16/dependency_setup.sh: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /benchmarks/bugsinpy/youtube-dl/youtube-dl-16/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/youtube-dl/youtube-dl-16/patch.txt -------------------------------------------------------------------------------- /benchmarks/bugsinpy/youtube-dl/youtube-dl-16/requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmarks/bugsinpy/youtube-dl/youtube-dl-16/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/bugsinpy/youtube-dl/youtube-dl-16/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/Zappa/Zappa-1434/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/Zappa/Zappa-1434/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/Zappa/Zappa-1434/dependency_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/Zappa/Zappa-1434/dependency_setup.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/Zappa/Zappa-1434/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/Zappa/Zappa-1434/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/Zappa/Zappa-1434/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/Zappa/Zappa-1434/requirements.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/Zappa/Zappa-1434/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/Zappa/Zappa-1434/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/Zappa/Zappa-1434/tests/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/Zappa/Zappa-1434/tests/tests.py -------------------------------------------------------------------------------- /benchmarks/typebugs/Zappa/Zappa-1434/zappa/cli-1828.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/Zappa/Zappa-1434/zappa/cli-1828.py -------------------------------------------------------------------------------- /benchmarks/typebugs/Zappa/Zappa-1434/zappa/cli-1838.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/Zappa/Zappa-1434/zappa/cli-1838.py -------------------------------------------------------------------------------- /benchmarks/typebugs/Zappa/Zappa-1434/zappa/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/Zappa/Zappa-1434/zappa/cli.py -------------------------------------------------------------------------------- /benchmarks/typebugs/Zappa/Zappa-388/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/Zappa/Zappa-388/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/Zappa/Zappa-388/dependency_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/Zappa/Zappa-388/dependency_setup.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/Zappa/Zappa-388/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/Zappa/Zappa-388/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/Zappa/Zappa-388/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/Zappa/Zappa-388/requirements.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/Zappa/Zappa-388/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/Zappa/Zappa-388/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/Zappa/Zappa-388/tests/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/Zappa/Zappa-388/tests/tests.py -------------------------------------------------------------------------------- /benchmarks/typebugs/Zappa/Zappa-388/zappa/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/Zappa/Zappa-388/zappa/wsgi.py -------------------------------------------------------------------------------- /benchmarks/typebugs/airflow/airflow-14513/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/airflow/airflow-14513/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/airflow/airflow-14513/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/airflow/airflow-14513/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/airflow/airflow-14513/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/airflow/airflow-14513/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/airflow/airflow-14686/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/airflow/airflow-14686/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/airflow/airflow-14686/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/airflow/airflow-14686/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/airflow/airflow-14686/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/airflow/airflow-14686/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/airflow/airflow-3831/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/airflow/airflow-3831/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/airflow/airflow-3831/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/airflow/airflow-3831/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/airflow/airflow-3831/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/airflow/airflow-3831/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/airflow/airflow-4674/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/airflow/airflow-4674/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/airflow/airflow-4674/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/airflow/airflow-4674/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/airflow/airflow-4674/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/airflow/airflow-4674/test -------------------------------------------------------------------------------- /benchmarks/typebugs/airflow/airflow-5686/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/airflow/airflow-5686/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/airflow/airflow-5686/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/airflow/airflow-5686/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/airflow/airflow-5686/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/airflow/airflow-5686/test -------------------------------------------------------------------------------- /benchmarks/typebugs/airflow/airflow-6036/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/airflow/airflow-6036/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/airflow/airflow-6036/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/airflow/airflow-6036/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/airflow/airflow-6036/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/airflow/airflow-6036/test -------------------------------------------------------------------------------- /benchmarks/typebugs/airflow/airflow-8151/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/airflow/airflow-8151/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/airflow/airflow-8151/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/airflow/airflow-8151/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/airflow/airflow-8151/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/airflow/airflow-8151/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/beets/beets-3360/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/beets/beets-3360/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/beets/beets-3360/dependency_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/beets/beets-3360/dependency_setup.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/beets/beets-3360/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/beets/beets-3360/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/beets/beets-3360/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/beets/beets-3360/requirements.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/beets/beets-3360/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/beets/beets-3360/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/core/core-1972/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/core/core-1972/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/core/core-1972/dependency_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/core/core-1972/dependency_setup.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/core/core-1972/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/core/core-1972/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/core/core-1972/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/core/core-1972/requirements.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/core/core-1972/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/core/core-1972/setup.cfg -------------------------------------------------------------------------------- /benchmarks/typebugs/core/core-1972/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/core/core-1972/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/core/core-20233/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/core/core-20233/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/core/core-20233/dependency_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/core/core-20233/dependency_setup.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/core/core-20233/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/core/core-20233/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/core/core-20233/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/core/core-20233/requirements.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/core/core-20233/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/core/core-20233/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/core/core-21734/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/core/core-21734/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/core/core-21734/dependency_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/core/core-21734/dependency_setup.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/core/core-21734/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/core/core-21734/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/core/core-21734/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/core/core-21734/requirements.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/core/core-21734/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/core/core-21734/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/core/core-29829/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/core/core-29829/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/core/core-29829/dependency_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/core/core-29829/dependency_setup.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/core/core-29829/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/core/core-29829/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/core/core-29829/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/core/core-29829/requirements.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/core/core-29829/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/core/core-29829/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/core/core-32222/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/core/core-32222/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/core/core-32222/dependency_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/core/core-32222/dependency_setup.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/core/core-32222/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/core/core-32222/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/core/core-32222/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/core/core-32222/requirements.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/core/core-32222/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/core/core-32222/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/core/core-32318/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/core/core-32318/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/core/core-32318/dependency_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/core/core-32318/dependency_setup.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/core/core-32318/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/core/core-32318/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/core/core-32318/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/core/core-32318/requirements.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/core/core-32318/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/core/core-32318/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/core/core-40034/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/core/core-40034/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/core/core-40034/dependency_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/core/core-40034/dependency_setup.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/core/core-40034/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/core/core-40034/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/core/core-40034/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/core/core-40034/requirements.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/core/core-40034/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/core/core-40034/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/core/core-8065/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/core/core-8065/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/core/core-8065/dependency_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/core/core-8065/dependency_setup.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/core/core-8065/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/core/core-8065/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/core/core-8065/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/core/core-8065/requirements.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/core/core-8065/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/core/core-8065/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/kivy/kivy-6954/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/kivy/kivy-6954/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/kivy/kivy-6954/dependency_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/kivy/kivy-6954/dependency_setup.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/kivy/kivy-6954/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/kivy/kivy-6954/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/kivy/kivy-6954/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/kivy/kivy-6954/requirements.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/kivy/kivy-6954/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/kivy/kivy-6954/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/luigi/luigi-1836/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/luigi/luigi-1836/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/luigi/luigi-1836/dependency_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/luigi/luigi-1836/dependency_setup.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/luigi/luigi-1836/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/luigi/luigi-1836/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/luigi/luigi-1836/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/luigi/luigi-1836/requirements.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/luigi/luigi-1836/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/luigi/luigi-1836/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/numpy/numpy-10473/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/numpy/numpy-10473/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/numpy/numpy-10473/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/numpy/numpy-10473/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/numpy/numpy-10473/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/numpy/numpy-10473/requirements.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/numpy/numpy-10473/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/numpy/numpy-10473/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/numpy/numpy-19094/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/numpy/numpy-19094/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/numpy/numpy-19094/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/numpy/numpy-19094/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/numpy/numpy-19094/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/numpy/numpy-19094/requirements.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/numpy/numpy-19094/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/numpy/numpy-19094/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/numpy/numpy-9999/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/numpy/numpy-9999/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/numpy/numpy-9999/dependency_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/numpy/numpy-9999/dependency_setup.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/numpy/numpy-9999/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/numpy/numpy-9999/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/numpy/numpy-9999/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/numpy/numpy-9999/requirements.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/numpy/numpy-9999/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/numpy/numpy-9999/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-15941/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-15941/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-15941/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-15941/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-15941/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-15941/requirements.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-15941/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-15941/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-17430/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-17430/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-17430/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-17430/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-17430/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-17430/requirements.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-17430/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-17430/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-17609/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-17609/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-17609/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-17609/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-17609/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-17609/requirements.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-17609/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-17609/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-18831/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-18831/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-18831/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-18831/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-18831/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-18831/requirements.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-18831/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-18831/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-18849/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-18849/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-18849/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-18849/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-18849/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-18849/requirements.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-18849/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-18849/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-19013/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-19013/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-19013/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-19013/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-19013/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-19013/requirements.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-19013/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-19013/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-19276/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-19276/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-19276/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-19276/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-19276/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-19276/requirements.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-19276/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-19276/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-20968/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-20968/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-20968/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-20968/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-20968/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-20968/requirements.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-20968/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-20968/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-21540/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-21540/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-21540/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-21540/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-21540/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-21540/requirements.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-21540/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-21540/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-21590/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-21590/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-21590/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-21590/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-21590/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-21590/requirements.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-21590/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-21590/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-22072/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-22072/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-22072/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-22072/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-22072/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-22072/requirements.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-22072/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-22072/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-22198/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-22198/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-22198/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-22198/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-22198/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-22198/requirements.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-22198/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-22198/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-22378/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-22378/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-22378/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-22378/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-22378/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-22378/requirements.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-22378/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-22378/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-22804/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-22804/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-22804/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-22804/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-22804/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-22804/requirements.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-22804/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-22804/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-24572/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-24572/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-24572/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-24572/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-24572/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-24572/requirements.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-24572/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-24572/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-25533/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-25533/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-25533/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-25533/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-25533/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-25533/requirements.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-25533/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-25533/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-25759/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-25759/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-25759/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-25759/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-25759/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-25759/requirements.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-25759/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-25759/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-26765/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-26765/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-26765/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-26765/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-26765/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-26765/requirements.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-26765/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-26765/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-28251/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-28251/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-28251/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-28251/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-28251/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-28251/requirements.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-28251/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-28251/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-28412/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-28412/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-28412/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-28412/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-28412/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-28412/requirements.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-28412/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-28412/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-29103/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-29103/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-29103/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-29103/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-29103/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-29103/requirements.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-29103/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-29103/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-30225/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-30225/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-30225/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-30225/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-30225/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-30225/requirements.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-30225/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-30225/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-30532/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-30532/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-30532/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-30532/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-30532/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-30532/requirements.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-30532/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-30532/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-31477/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-31477/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-31477/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-31477/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-31477/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-31477/requirements.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-31477/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-31477/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-31905/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-31905/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-31905/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-31905/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-31905/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-31905/requirements.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-31905/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-31905/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-32223/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-32223/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-32223/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-32223/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-32223/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-32223/requirements.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-32223/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-32223/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-32953/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-32953/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-32953/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-32953/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-32953/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-32953/requirements.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-32953/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-32953/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-33373/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-33373/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-33373/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-33373/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-33373/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-33373/requirements.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-33373/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-33373/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-34220/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-34220/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-34220/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-34220/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-34220/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-34220/requirements.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-34220/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-34220/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-36950/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-36950/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-36950/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-36950/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-36950/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-36950/requirements.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-36950/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-36950/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-37096/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-37096/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-37096/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-37096/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-37096/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-37096/requirements.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-37096/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-37096/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-37736/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-37736/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-37736/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-37736/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-37736/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-37736/requirements.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-37736/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-37736/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-38220/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-38220/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-38220/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-38220/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-38220/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-38220/requirements.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-38220/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-38220/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-38431/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-38431/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-38431/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-38431/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-38431/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-38431/requirements.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-38431/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-38431/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-39028-1/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-39028-1/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-39028-1/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-39028-1/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-39028-1/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-39028-1/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-39028-2/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-39028-2/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-39028-2/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-39028-2/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-39028-2/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-39028-2/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-39095/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-39095/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-39095/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-39095/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-39095/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-39095/requirements.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-39095/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-39095/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-40180/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-40180/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-40180/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-40180/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-40180/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-40180/requirements.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-40180/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-40180/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-41155/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-41155/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-41155/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-41155/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-41155/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-41155/requirements.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-41155/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-41155/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-41406/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-41406/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-41406/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-41406/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-41406/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-41406/requirements.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/pandas/pandas-41406/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/pandas/pandas-41406/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/rasa/rasa-8704/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/rasa/rasa-8704/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/rasa/rasa-8704/dependency_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/rasa/rasa-8704/dependency_setup.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/rasa/rasa-8704/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/rasa/rasa-8704/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/rasa/rasa-8704/rasa/nlu/model-45.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/rasa/rasa-8704/rasa/nlu/model-45.py -------------------------------------------------------------------------------- /benchmarks/typebugs/rasa/rasa-8704/rasa/nlu/model-60.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/rasa/rasa-8704/rasa/nlu/model-60.py -------------------------------------------------------------------------------- /benchmarks/typebugs/rasa/rasa-8704/rasa/nlu/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/rasa/rasa-8704/rasa/nlu/model.py -------------------------------------------------------------------------------- /benchmarks/typebugs/rasa/rasa-8704/requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmarks/typebugs/rasa/rasa-8704/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/rasa/rasa-8704/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/requests/requests-3179/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/requests/requests-3179/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/requests/requests-3179/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/requests/requests-3179/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/requests/requests-3179/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/requests/requests-3179/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/requests/requests-3368/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/requests/requests-3368/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/requests/requests-3368/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/requests/requests-3368/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/requests/requests-3368/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/requests/requests-3368/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/requests/requests-3390/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/requests/requests-3390/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/requests/requests-3390/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/requests/requests-3390/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/requests/requests-3390/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/requests/requests-3390/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/requests/requests-4723/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/requests/requests-4723/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/requests/requests-4723/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/requests/requests-4723/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/requests/requests-4723/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/requests/requests-4723/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/rich/rich-919/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/rich/rich-919/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/rich/rich-919/dependency_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/rich/rich-919/dependency_setup.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/rich/rich-919/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/rich/rich-919/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/rich/rich-919/requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmarks/typebugs/rich/rich-919/rich/_inspect-145.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/rich/rich-919/rich/_inspect-145.py -------------------------------------------------------------------------------- /benchmarks/typebugs/rich/rich-919/rich/_inspect-183.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/rich/rich-919/rich/_inspect-183.py -------------------------------------------------------------------------------- /benchmarks/typebugs/rich/rich-919/rich/_inspect-88.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/rich/rich-919/rich/_inspect-88.py -------------------------------------------------------------------------------- /benchmarks/typebugs/rich/rich-919/rich/_inspect-92.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/rich/rich-919/rich/_inspect-92.py -------------------------------------------------------------------------------- /benchmarks/typebugs/rich/rich-919/rich/_inspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/rich/rich-919/rich/_inspect.py -------------------------------------------------------------------------------- /benchmarks/typebugs/rich/rich-919/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/rich/rich-919/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/rich/rich-919/tests/test_inspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/rich/rich-919/tests/test_inspect.py -------------------------------------------------------------------------------- /benchmarks/typebugs/salt/salt-33908/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/salt/salt-33908/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/salt/salt-33908/dependency_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/salt/salt-33908/dependency_setup.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/salt/salt-33908/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/salt/salt-33908/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/salt/salt-33908/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/salt/salt-33908/requirements.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/salt/salt-33908/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/salt/salt-33908/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/salt/salt-38947/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/salt/salt-38947/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/salt/salt-38947/dependency_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/salt/salt-38947/dependency_setup.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/salt/salt-38947/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/salt/salt-38947/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/salt/salt-38947/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/salt/salt-38947/requirements.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/salt/salt-38947/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/salt/salt-38947/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/salt/salt-50958/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/salt/salt-50958/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/salt/salt-50958/dependency_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/salt/salt-50958/dependency_setup.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/salt/salt-50958/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/salt/salt-50958/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/salt/salt-50958/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/salt/salt-50958/requirements.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/salt/salt-50958/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/salt/salt-50958/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/salt/salt-53394/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/salt/salt-53394/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/salt/salt-53394/dependency_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/salt/salt-53394/dependency_setup.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/salt/salt-53394/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/salt/salt-53394/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/salt/salt-53394/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/salt/salt-53394/requirements.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/salt/salt-53394/salt/modules/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/salt/salt-53394/salt/modules/http.py -------------------------------------------------------------------------------- /benchmarks/typebugs/salt/salt-53394/salt/utils/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/salt/salt-53394/salt/utils/http.py -------------------------------------------------------------------------------- /benchmarks/typebugs/salt/salt-53394/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/salt/salt-53394/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/salt/salt-54240/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/salt/salt-54240/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/salt/salt-54240/dependency_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/salt/salt-54240/dependency_setup.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/salt/salt-54240/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/salt/salt-54240/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/salt/salt-54240/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/salt/salt-54240/requirements.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/salt/salt-54240/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/salt/salt-54240/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/salt/salt-54785/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/salt/salt-54785/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/salt/salt-54785/dependency_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/salt/salt-54785/dependency_setup.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/salt/salt-54785/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/salt/salt-54785/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/salt/salt-54785/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/salt/salt-54785/requirements.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/salt/salt-54785/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/salt/salt-54785/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/salt/salt-56094/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/salt/salt-56094/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/salt/salt-56094/dependency_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/salt/salt-56094/dependency_setup.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/salt/salt-56094/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/salt/salt-56094/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/salt/salt-56094/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/salt/salt-56094/requirements.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/salt/salt-56094/salt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/salt/salt-56094/salt/__init__.py -------------------------------------------------------------------------------- /benchmarks/typebugs/salt/salt-56094/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/salt/salt-56094/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/salt/salt-56381/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/salt/salt-56381/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/salt/salt-56381/dependency_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/salt/salt-56381/dependency_setup.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/salt/salt-56381/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/salt/salt-56381/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/salt/salt-56381/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/salt/salt-56381/requirements.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/salt/salt-56381/salt/state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/salt/salt-56381/salt/state.py -------------------------------------------------------------------------------- /benchmarks/typebugs/salt/salt-56381/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/salt/salt-56381/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/sanic/sanic-1334/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/sanic/sanic-1334/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/sanic/sanic-1334/dependency_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/sanic/sanic-1334/dependency_setup.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/sanic/sanic-1334/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/sanic/sanic-1334/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/sanic/sanic-1334/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/sanic/sanic-1334/requirements.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/sanic/sanic-1334/sanic/blueprints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/sanic/sanic-1334/sanic/blueprints.py -------------------------------------------------------------------------------- /benchmarks/typebugs/sanic/sanic-1334/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/sanic/sanic-1334/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/sanic/sanic-2008-1/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/sanic/sanic-2008-1/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/sanic/sanic-2008-1/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/sanic/sanic-2008-1/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/sanic/sanic-2008-1/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/sanic/sanic-2008-1/requirements.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/sanic/sanic-2008-1/sanic/static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/sanic/sanic-2008-1/sanic/static.py -------------------------------------------------------------------------------- /benchmarks/typebugs/sanic/sanic-2008-1/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/sanic/sanic-2008-1/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/tornado/tornado-1689/bug_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/tornado/tornado-1689/bug_info.json -------------------------------------------------------------------------------- /benchmarks/typebugs/tornado/tornado-1689/patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/tornado/tornado-1689/patch.txt -------------------------------------------------------------------------------- /benchmarks/typebugs/tornado/tornado-1689/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/tornado/tornado-1689/test.sh -------------------------------------------------------------------------------- /benchmarks/typebugs/tornado/tornado-1689/tornado/web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/benchmarks/typebugs/tornado/tornado-1689/tornado/web.py -------------------------------------------------------------------------------- /results/eval.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/eval.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_11696.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_11696.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_11698.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_11698.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_12786.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_12786.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_14045.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_14045.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_16471.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_16471.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_16480.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_16480.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_16726.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_16726.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_16845.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_16845.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_16932.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_16932.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_16937.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_16937.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_17130.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_17130.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_17201.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_17201.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_17237.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_17237.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_17345.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_17345.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_17422.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_17422.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_17438.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_17438.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_17618.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_17618.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_17621.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_17621.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_17633.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_17633.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_17726.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_17726.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_17747.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_17747.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_17848.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_17848.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_17868.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_17868.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_17877.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_17877.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_17898.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_17898.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_17901.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_17901.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_17904.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_17904.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_19374.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_19374.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_19443.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_19443.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_19518.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_19518.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_19524.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_19524.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_19533.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_19533.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_19572.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_19572.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_21591.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_21591.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_21847.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_21847.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_22013.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_22013.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_22189.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_22189.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_22400.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_22400.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_22440.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_22440.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_23482.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_23482.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_23728.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_23728.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_23738.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_23738.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_23816.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_23816.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_23932.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_23932.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_24042.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_24042.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_24057.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_24057.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_24112.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_24112.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_24127.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_24127.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_24152.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_24152.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_24179.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_24179.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_24537.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_24537.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_24566.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_24566.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_24630.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_24630.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_24631.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_24631.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_24632.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_24632.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_24647.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_24647.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_24667.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_24667.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_24671.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_24671.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_24751.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_24751.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_24793.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_24793.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_24842.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_24842.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_24880.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_24880.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_24895.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_24895.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_24918.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_24918.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_24928.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_24928.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_24934.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_24934.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_24939.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_24939.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_24942.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_24942.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_24947.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_24947.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_24955.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_24955.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_24960.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_24960.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_24965.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_24965.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_24975.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_24975.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_25013.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_25013.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_25018.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_25018.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_25023.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_25023.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_25028.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_25028.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_25033.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_25033.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_25053.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_25053.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_38518.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_38518.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_38838.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_38838.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_39303.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_39303.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_39482.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_39482.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_39699.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_39699.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_39772.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_39772.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_40110.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_40110.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_40167.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_40167.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_40233.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_40233.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_40254.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_40254.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_40312.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_40312.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_40582.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_40582.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_40706.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_40706.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_42097.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_42097.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_42262.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_42262.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_42548.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_42548.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_42671.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_42671.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_42704.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_42704.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_42809.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_42809.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_42815.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_42815.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_42857.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_42857.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_42869.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_42869.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_42872.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_42872.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_42888.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_42888.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_42908.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_42908.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_42923.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_42923.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_42950.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_42950.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_42980.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_42980.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_42998.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_42998.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_43001.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_43001.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_43013.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_43013.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_43031.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_43031.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_43037.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_43037.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_43052.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_43052.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_43079.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_43079.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_43088.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_43088.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_43146.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_43146.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_43173.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_43173.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_43188.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_43188.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_43194.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_43194.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_43197.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_43197.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_43203.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_43203.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_43215.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_43215.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_43218.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_43218.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_43224.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_43224.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_43227.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_43227.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_43251.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_43251.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_43254.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_43254.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_43263.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_43263.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_43281.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_43281.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_43284.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_43284.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_43287.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_43287.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_43290.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_43290.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_43293.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_43293.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_43302.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_43302.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_43305.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_43305.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_43311.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_43311.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_43314.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_43314.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_43323.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_43323.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_43332.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_43332.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_43335.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_43335.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_43338.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_43338.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_43350.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_43350.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_43359.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_43359.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_43362.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_43362.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_43368.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_43368.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_43377.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_43377.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_43380.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_43380.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_43386.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_43386.pdf -------------------------------------------------------------------------------- /results/samples/FINAL_FIX_TEMPLATE_43389.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/results/samples/FINAL_FIX_TEMPLATE_43389.pdf -------------------------------------------------------------------------------- /typefix/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/typefix/__init__.py -------------------------------------------------------------------------------- /typefix/ast_operation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/typefix/ast_operation.py -------------------------------------------------------------------------------- /typefix/bug_locator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/typefix/bug_locator.py -------------------------------------------------------------------------------- /typefix/build_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/typefix/build_benchmark.py -------------------------------------------------------------------------------- /typefix/change_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/typefix/change_tree.py -------------------------------------------------------------------------------- /typefix/commit_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/typefix/commit_processor.py -------------------------------------------------------------------------------- /typefix/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/typefix/evaluate.py -------------------------------------------------------------------------------- /typefix/fix_miner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/typefix/fix_miner.py -------------------------------------------------------------------------------- /typefix/fix_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/typefix/fix_template.py -------------------------------------------------------------------------------- /typefix/patch_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/typefix/patch_generator.py -------------------------------------------------------------------------------- /typefix/repair.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/typefix/repair.py -------------------------------------------------------------------------------- /typefix/test_codex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/TypeFix/HEAD/typefix/test_codex.py --------------------------------------------------------------------------------